From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 892921381F3 for ; Fri, 21 Dec 2012 17:50:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4ABFE21C0A1; Fri, 21 Dec 2012 17:49:44 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 8D62221C086 for ; Fri, 21 Dec 2012 17:49:43 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9836233D966 for ; Fri, 21 Dec 2012 17:49:42 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 3C24AE5442 for ; Fri, 21 Dec 2012 17:49:41 +0000 (UTC) From: "Justin Lecher" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Justin Lecher" Message-ID: <1355932001.56866d6ca3add5c3a3801b20022f30a1e446240f.jlec@gentoo> Subject: [gentoo-commits] proj/betagarden:master commit in: dev-util/vng/ X-VCS-Repository: proj/betagarden X-VCS-Files: dev-util/vng/ChangeLog dev-util/vng/metadata.xml dev-util/vng/vng-20081021.ebuild X-VCS-Directories: dev-util/vng/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: 56866d6ca3add5c3a3801b20022f30a1e446240f X-VCS-Branch: master Date: Fri, 21 Dec 2012 17:49:41 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: a89d8d0d-fd03-4324-bf66-2943f9839834 X-Archives-Hash: 21f3e8b55ec0703e96c7e94cfdb0565d commit: 56866d6ca3add5c3a3801b20022f30a1e446240f Author: Justin Lecher gentoo org> AuthorDate: Wed Dec 19 15:46:41 2012 +0000 Commit: Justin Lecher gentoo org> CommitDate: Wed Dec 19 15:46:41 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/betagarden.git;a=commit;h=56866d6c dev-util/vng: Use qt4-r2.eclass Package-Manager: portage-2.2.0_alpha149 --- dev-util/vng/ChangeLog | 12 ++++++++++++ dev-util/vng/metadata.xml | 7 +++++++ dev-util/vng/vng-20081021.ebuild | 25 +++++++++---------------- 3 files changed, 28 insertions(+), 16 deletions(-) diff --git a/dev-util/vng/ChangeLog b/dev-util/vng/ChangeLog new file mode 100644 index 0000000..6eecfaf --- /dev/null +++ b/dev-util/vng/ChangeLog @@ -0,0 +1,12 @@ +# ChangeLog for dev-util/vng +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 +# $Header: $ + + 19 Dec 2012; Justin Lecher vng-20081021.ebuild, + +metadata.xml: + Use qt4-r2.eclass + + 19 Dec 2012; Justin Lecher vng-20081021.ebuild, + +metadata.xml: + Use qt4-r2.eclass + diff --git a/dev-util/vng/metadata.xml b/dev-util/vng/metadata.xml new file mode 100644 index 0000000..a759be0 --- /dev/null +++ b/dev-util/vng/metadata.xml @@ -0,0 +1,7 @@ + + + + + maintainer-wanted@gentoo.org + + diff --git a/dev-util/vng/vng-20081021.ebuild b/dev-util/vng/vng-20081021.ebuild index 49f1a50..47ec822 100644 --- a/dev-util/vng/vng-20081021.ebuild +++ b/dev-util/vng/vng-20081021.ebuild @@ -1,8 +1,10 @@ -# Copyright 1999-2009 Gentoo Foundation +# Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ -inherit qt4 +EAPI=5 + +inherit qt4-r2 MY_PV="f1e52457212860960122064cc008ee2f307a5797" MY_P="${PN}-${MY_PV}" @@ -14,26 +16,17 @@ SRC_URI="http://www.hartwork.org/public/${MY_P}.tar.gz" LICENSE="GPL-3" SLOT="0" -KEYWORDS="~x86" +KEYWORDS="~amd64 ~x86" IUSE="" -RDEPEND="dev-util/git - >=x11-libs/qt-core-4.4" +RDEPEND=" + dev-vcs/git + x11-libs/qt-core:4" DEPEND="${RDEPEND}" S="${WORKDIR}/${PN}" -src_unpack() { - unpack ${A} - cd "${S}" -} - -src_compile() { - eqmake4 || die "eqmake4 failed" - emake || die "eqmake4 failed" -} - src_install() { dodoc README - dobin vng || die "dobin failed" + dobin vng }