diff options
author | Samuli Suominen <drac@gentoo.org> | 2008-05-05 19:35:47 +0000 |
---|---|---|
committer | Samuli Suominen <drac@gentoo.org> | 2008-05-05 19:35:47 +0000 |
commit | b3663051ccf9e163bbe749a98aa78d58673f8242 (patch) | |
tree | 4d0f35683729606cbcce3855ac0e9932318cc164 /app-text/new | |
parent | Version bump (diff) | |
download | gentoo-2-b3663051ccf9e163bbe749a98aa78d58673f8242.tar.gz gentoo-2-b3663051ccf9e163bbe749a98aa78d58673f8242.tar.bz2 gentoo-2-b3663051ccf9e163bbe749a98aa78d58673f8242.zip |
Move pkgconfig to DEPEND wrt #217278.
(Portage version: 2.1.5_rc6)
Diffstat (limited to 'app-text/new')
-rw-r--r-- | app-text/new/ChangeLog | 5 | ||||
-rw-r--r-- | app-text/new/new-1.3.5.ebuild | 9 |
2 files changed, 8 insertions, 6 deletions
diff --git a/app-text/new/ChangeLog b/app-text/new/ChangeLog index 061f5e41ad5d..634f0858db87 100644 --- a/app-text/new/ChangeLog +++ b/app-text/new/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-text/new # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/new/ChangeLog,v 1.18 2008/04/09 18:05:49 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/new/ChangeLog,v 1.19 2008/05/05 19:35:47 drac Exp $ + + 05 May 2008; Samuli Suominen <drac@gentoo.org> new-1.3.5.ebuild: + Move pkgconfig to DEPEND wrt #217278. 09 Apr 2008; Raúl Porcel <armin76@gentoo.org> new-1.3.5.ebuild: Add missing deps wrt #216426 diff --git a/app-text/new/new-1.3.5.ebuild b/app-text/new/new-1.3.5.ebuild index ced74c05de80..84ad25ad816b 100644 --- a/app-text/new/new-1.3.5.ebuild +++ b/app-text/new/new-1.3.5.ebuild @@ -1,8 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/new/new-1.3.5.ebuild,v 1.5 2008/04/09 18:05:49 armin76 Exp $ - -inherit eutils +# $Header: /var/cvsroot/gentoo-x86/app-text/new/new-1.3.5.ebuild,v 1.6 2008/05/05 19:35:47 drac Exp $ DESCRIPTION="template system useful when used with a simple text editor (like vi)" HOMEPAGE="http://www.flyn.org/" @@ -13,10 +11,11 @@ SLOT="0" KEYWORDS="amd64 ppc x86" IUSE="" -DEPEND=">=dev-libs/glib-2 +RDEPEND=">=dev-libs/glib-2" +DEPEND="${RDEPEND} dev-util/pkgconfig" src_install() { emake DESTDIR="${D}" install || die "emake install failed" - dodoc AUTHORS ChangeLog NEWS README TODO + dodoc AUTHORS ChangeLog README TODO } |