diff options
author | David Shakaryan <omp@gentoo.org> | 2006-10-23 07:02:55 +0000 |
---|---|---|
committer | David Shakaryan <omp@gentoo.org> | 2006-10-23 07:02:55 +0000 |
commit | ba28d6008d319567167503b5602d8a34d190b00b (patch) | |
tree | ac346a8e890ff761c67131c50178a543a36de872 | |
parent | RDEPEND should not include dev-util/pkgconfig. (diff) | |
download | gentoo-2-ba28d6008d319567167503b5602d8a34d190b00b.tar.gz gentoo-2-ba28d6008d319567167503b5602d8a34d190b00b.tar.bz2 gentoo-2-ba28d6008d319567167503b5602d8a34d190b00b.zip |
Better DEPEND, RDEPEND should not include dev-util/pkgconfig.
(Portage version: 2.1.2_pre3-r6)
-rw-r--r-- | x11-misc/lintar/ChangeLog | 7 | ||||
-rw-r--r-- | x11-misc/lintar/lintar-0.6.2.ebuild | 18 |
2 files changed, 15 insertions, 10 deletions
diff --git a/x11-misc/lintar/ChangeLog b/x11-misc/lintar/ChangeLog index c52a167648e6..46d98d592b98 100644 --- a/x11-misc/lintar/ChangeLog +++ b/x11-misc/lintar/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for x11-misc/lintar -# Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/lintar/ChangeLog,v 1.2 2005/10/31 16:28:26 nelchael Exp $ +# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/lintar/ChangeLog,v 1.3 2006/10/23 07:02:55 omp Exp $ + + 23 Oct 2006; David Shakaryan <omp@gentoo.org> lintar-0.6.2.ebuild: + Better DEPEND, RDEPEND should not include dev-util/pkgconfig. 31 Oct 2005; Krzysiek Pawlik <nelchael@gentoo.org> lintar-0.6.2.ebuild: Stable on x86. diff --git a/x11-misc/lintar/lintar-0.6.2.ebuild b/x11-misc/lintar/lintar-0.6.2.ebuild index 51cf74d316ac..97794c5f53de 100644 --- a/x11-misc/lintar/lintar-0.6.2.ebuild +++ b/x11-misc/lintar/lintar-0.6.2.ebuild @@ -1,20 +1,22 @@ -# Copyright 1999-2005 Gentoo Foundation +# Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/lintar/lintar-0.6.2.ebuild,v 1.2 2005/10/31 16:28:26 nelchael Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/lintar/lintar-0.6.2.ebuild,v 1.3 2006/10/23 07:02:55 omp Exp $ -IUSE="" DESCRIPTION="A decompressing tool written in GTK+." HOMEPAGE="http://lintar.sourceforge.net/" -SRC_URI="mirror://sourceforge/lintar/lintar-${PV}.tar.gz" -SLOT="0" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" + LICENSE="GPL-2" +SLOT="0" KEYWORDS="x86" +IUSE="" -DEPEND="=x11-libs/gtk+-2* - =gnome-base/gnome-vfs-2* +RDEPEND=">=x11-libs/gtk+-2 + >=gnome-base/gnome-vfs-2" +DEPEND="${RDEPEND} dev-util/pkgconfig" src_install() { - make DESTDIR=${D} install + make DESTDIR="${D}" install || die "make install failed" dodoc ABOUT-NLS AUTHORS BUGS ChangeLog README NEWS TODO } |