diff options
author | David Shakaryan <omp@gentoo.org> | 2006-10-23 06:56:33 +0000 |
---|---|---|
committer | David Shakaryan <omp@gentoo.org> | 2006-10-23 06:56:33 +0000 |
commit | 9f4353157cf40185364867dcf8d050191cf28be0 (patch) | |
tree | 06e47ee54ad192834c9f91aaaf07be529e7f36e3 | |
parent | RDEPEND should not include dev-util/pkgconfig. (diff) | |
download | gentoo-2-9f4353157cf40185364867dcf8d050191cf28be0.tar.gz gentoo-2-9f4353157cf40185364867dcf8d050191cf28be0.tar.bz2 gentoo-2-9f4353157cf40185364867dcf8d050191cf28be0.zip |
Better DEPEND, RDEPEND should not include dev-util/pkgconfig.
(Portage version: 2.1.2_pre3-r6)
-rw-r--r-- | x11-misc/gtkdialog/ChangeLog | 5 | ||||
-rw-r--r-- | x11-misc/gtkdialog/gtkdialog-0.59.8.ebuild | 10 |
2 files changed, 10 insertions, 5 deletions
diff --git a/x11-misc/gtkdialog/ChangeLog b/x11-misc/gtkdialog/ChangeLog index d40f0c3ee3e5..df9465517a5e 100644 --- a/x11-misc/gtkdialog/ChangeLog +++ b/x11-misc/gtkdialog/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for x11-misc/gtkdialog # Copyright 2000-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/gtkdialog/ChangeLog,v 1.13 2006/10/11 11:25:46 nelchael Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/gtkdialog/ChangeLog,v 1.14 2006/10/23 06:56:33 omp Exp $ + + 23 Oct 2006; David Shakaryan <omp@gentoo.org> gtkdialog-0.59.8.ebuild: + Better DEPEND, RDEPEND should not include dev-util/pkgconfig. 11 Oct 2006; Krzysiek Pawlik <nelchael@gentoo.org> gtkdialog-0.59.8.ebuild: diff --git a/x11-misc/gtkdialog/gtkdialog-0.59.8.ebuild b/x11-misc/gtkdialog/gtkdialog-0.59.8.ebuild index bcab249fdba6..ed1115e6b19b 100644 --- a/x11-misc/gtkdialog/gtkdialog-0.59.8.ebuild +++ b/x11-misc/gtkdialog/gtkdialog-0.59.8.ebuild @@ -1,24 +1,26 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/gtkdialog/gtkdialog-0.59.8.ebuild,v 1.5 2006/10/11 11:25:46 nelchael Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/gtkdialog/gtkdialog-0.59.8.ebuild,v 1.6 2006/10/23 06:56:33 omp Exp $ DESCRIPTION="GUI-creation utility that can be used with an arbitrary interpreter" HOMEPAGE="http://linux.pte.hu/~pipas/gtkdialog/" -SRC_URI="ftp://linux.pte.hu/pub/gtkdialog/${P}.tar.gz" +SRC_URI="ftp://linux.pte.hu/pub/${PN}/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="ppc x86" IUSE="doc" -DEPEND="=x11-libs/gtk+-2* +RDEPEND=">=x11-libs/gtk+-2" +DEPEND="${RDEPEND} dev-util/pkgconfig" src_install(){ einstall || die "einstall failed" dodoc AUTHORS ChangeLog NEWS README TODO if use doc; then - mkdir -p ${D}/usr/share/${P} && cp -r examples/* ${D}/usr/share/${P} + mkdir -p "${D}/usr/share/${P}" + cp -r examples/* "${D}/usr/share/${P}" fi } |