From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1Rtm1X-0004gx-BM for garchives@archives.gentoo.org; Sat, 04 Feb 2012 20:15:52 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 94D84E0692; Sat, 4 Feb 2012 20:15:44 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 639CCE0692 for ; Sat, 4 Feb 2012 20:15:44 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id DFCE81B4007 for ; Sat, 4 Feb 2012 20:15:43 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 6226080042 for ; Sat, 4 Feb 2012 20:15:43 +0000 (UTC) From: "Johannes Huber" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Johannes Huber" Message-ID: <2860c18c59235b65a143e05960b531b667dfbc87.johu@gentoo> Subject: [gentoo-commits] proj/qt:master commit in: dev-libs/qoauth/ X-VCS-Repository: proj/qt X-VCS-Files: dev-libs/qoauth/qoauth-9999.ebuild X-VCS-Directories: dev-libs/qoauth/ X-VCS-Committer: johu X-VCS-Committer-Name: Johannes Huber X-VCS-Revision: 2860c18c59235b65a143e05960b531b667dfbc87 Date: Sat, 4 Feb 2012 20:15:43 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: 2db6772d-6622-4e39-92b1-9d89b1d1ed81 X-Archives-Hash: a67103847c00f047cfe31cfc7e9f25d5 commit: 2860c18c59235b65a143e05960b531b667dfbc87 Author: Johannes Huber gentoo org> AuthorDate: Sat Feb 4 20:19:30 2012 +0000 Commit: Johannes Huber gentoo org> CommitDate: Sat Feb 4 20:19:30 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/qt.git;a=3Dco= mmit;h=3D2860c18c [dev-libs/qoauth] EAPI 4, git-2 eclass. (Portage version: 2.2.0_alpha84/git/Linux i686, unsigned Manifest commit) --- dev-libs/qoauth/qoauth-9999.ebuild | 18 +++++++++--------- 1 files changed, 9 insertions(+), 9 deletions(-) diff --git a/dev-libs/qoauth/qoauth-9999.ebuild b/dev-libs/qoauth/qoauth-= 9999.ebuild index 2c5acac..369946f 100644 --- a/dev-libs/qoauth/qoauth-9999.ebuild +++ b/dev-libs/qoauth/qoauth-9999.ebuild @@ -1,14 +1,14 @@ -# Copyright 1999-2010 Gentoo Foundation +# Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ =20 -EAPI=3D"2" +EAPI=3D4 =20 -inherit qt4-edge git +inherit qt4-edge git-2 =20 DESCRIPTION=3D"A Qt-based library for OAuth support" HOMEPAGE=3D"http://wiki.github.com/ayoy/qoauth" -EGIT_REPO_URI=3D"git://github.com/ayoy/qoauth.git" +EGIT_REPO_URI=3D"git://github.com/ayoy/${PN}" =20 LICENSE=3D"LGPL-2.1" SLOT=3D"0" @@ -37,16 +37,16 @@ src_prepare() { =20 src_compile() { default - emake -C src static || die "emake failed" + emake -C src static } =20 src_install() { - emake INSTALL_ROOT=3D"${D}" install || die "emake install failed" - dolib.a "${S}/lib/lib${PN}.a" || die "dolib failed" - dodoc README CHANGELOG || die "dodoc failed" + emake INSTALL_ROOT=3D"${D}" install + dolib.a "${S}/lib/lib${PN}.a" + dodoc README CHANGELOG =20 if use doc; then doxygen "${S}/Doxyfile" || die "Failed to generate documentation" - dohtml "${S}"/doc/html/* || die "Failed to install documentation" + dohtml "${S}"/doc/html/* fi }