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 37F4B1381F3 for ; Mon, 17 Dec 2012 11:48:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BDEAE21C13C; Mon, 17 Dec 2012 11:47:58 +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 4ACC521C13C for ; Mon, 17 Dec 2012 11:47:58 +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 37D7C33DBD7 for ; Mon, 17 Dec 2012 11:47:57 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id CB20DE543C for ; Mon, 17 Dec 2012 11:47:55 +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: <1355729818.0483d03fafdfe6a97d06e3735e43c021f3c71d47.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: 0483d03fafdfe6a97d06e3735e43c021f3c71d47 X-VCS-Branch: master Date: Mon, 17 Dec 2012 11:47:55 +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: 83a12294-1490-4a42-8555-c23ea15e925d X-Archives-Hash: 0bf09978a53468bccc47e9785d9459ad commit: 0483d03fafdfe6a97d06e3735e43c021f3c71d47 Author: Justin Lecher gentoo org> AuthorDate: Mon Dec 17 07:36:58 2012 +0000 Commit: Justin Lecher gentoo org> CommitDate: Mon Dec 17 07:36:58 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/betagarden.git;a=commit;h=0483d03f dev-util/vng: Use qt4-r2.eclass Package-Manager: portage-2.2.0_alpha148 --- dev-util/vng/ChangeLog | 8 ++++++++ dev-util/vng/metadata.xml | 7 +++++++ dev-util/vng/vng-20081021.ebuild | 24 ++++++++---------------- 3 files changed, 23 insertions(+), 16 deletions(-) diff --git a/dev-util/vng/ChangeLog b/dev-util/vng/ChangeLog new file mode 100644 index 0000000..1be0419 --- /dev/null +++ b/dev-util/vng/ChangeLog @@ -0,0 +1,8 @@ +# ChangeLog for dev-util/vng +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 +# $Header: $ + + 17 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..f628aeb 100644 --- a/dev-util/vng/vng-20081021.ebuild +++ b/dev-util/vng/vng-20081021.ebuild @@ -1,14 +1,15 @@ -# 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=4 + +inherit qt4-r2 MY_PV="f1e52457212860960122064cc008ee2f307a5797" MY_P="${PN}-${MY_PV}" DESCRIPTION="Darcs-like Git porcelain" - HOMEPAGE="http://repo.or.cz/w/vng.git" SRC_URI="http://www.hartwork.org/public/${MY_P}.tar.gz" @@ -17,23 +18,14 @@ SLOT="0" KEYWORDS="~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 }