diff options
author | Christoph Mende <angelos@gentoo.org> | 2011-03-28 17:08:52 +0000 |
---|---|---|
committer | Christoph Mende <angelos@gentoo.org> | 2011-03-28 17:08:52 +0000 |
commit | 735801ed743458246d448569c8e9f85c18b766aa (patch) | |
tree | b4266c309686d74e4c8e7cde81bf8efd82d8d7ef | |
parent | Version bump. (diff) | |
download | gentoo-2-735801ed743458246d448569c8e9f85c18b766aa.tar.gz gentoo-2-735801ed743458246d448569c8e9f85c18b766aa.tar.bz2 gentoo-2-735801ed743458246d448569c8e9f85c18b766aa.zip |
Fixed gtk+ dep and some cleanup
(Portage version: 2.2.0_alpha29/cvs/Linux x86_64)
-rw-r--r-- | www-client/downman/ChangeLog | 7 | ||||
-rw-r--r-- | www-client/downman/downman-0.0.5-r1.ebuild | 21 |
2 files changed, 15 insertions, 13 deletions
diff --git a/www-client/downman/ChangeLog b/www-client/downman/ChangeLog index 69c839338b30..62c2afabfb7a 100644 --- a/www-client/downman/ChangeLog +++ b/www-client/downman/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for www-client/downman -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/www-client/downman/ChangeLog,v 1.8 2010/12/02 18:56:13 flameeyes Exp $ +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/www-client/downman/ChangeLog,v 1.9 2011/03/28 17:08:52 angelos Exp $ + + 28 Mar 2011; Christoph Mende <angelos@gentoo.org> downman-0.0.5-r1.ebuild: + Fixed gtk+ dep and some cleanup 02 Dec 2010; Diego E. Pettenò <flameeyes@gentoo.org> downman-0.0.5-r1.ebuild: diff --git a/www-client/downman/downman-0.0.5-r1.ebuild b/www-client/downman/downman-0.0.5-r1.ebuild index e87e66cb7449..8dfd273e9b6c 100644 --- a/www-client/downman/downman-0.0.5-r1.ebuild +++ b/www-client/downman/downman-0.0.5-r1.ebuild @@ -1,7 +1,8 @@ -# Copyright 1999-2010 Gentoo Foundation +# Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/www-client/downman/downman-0.0.5-r1.ebuild,v 1.4 2010/12/02 18:56:13 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-client/downman/downman-0.0.5-r1.ebuild,v 1.5 2011/03/28 17:08:52 angelos Exp $ +EAPI=3 inherit autotools eutils gnome2 DESCRIPTION="Suite of programs to download files." @@ -13,21 +14,19 @@ SLOT="0" KEYWORDS="~x86 ppc ~sparc alpha amd64" IUSE="" -RDEPEND=">=x11-libs/gtk+-2 +RDEPEND="x11-libs/gtk+:2 >=gnome-base/libgnome-2 >=gnome-base/libgnomeui-2 - >=gnome-base/libglade-2 - >=dev-libs/libxml2-2" + gnome-base/libglade:2.0 + dev-libs/libxml2:2" DEPEND="${RDEPEND} dev-util/pkgconfig" DOCS="AUTHORS ChangeLog NEWS README" -src_unpack() { - unpack ${A} - cd "${S}" - epatch "${FILESDIR}"/${P}-gcc-4.patch - epatch "${FILESDIR}"/${P}-strlen.patch - epatch "${FILESDIR}"/${P}-asneeded.patch +src_prepare() { + epatch "${FILESDIR}"/${P}-gcc-4.patch \ + "${FILESDIR}"/${P}-strlen.patch \ + "${FILESDIR}"/${P}-asneeded.patch eautoreconf } |