diff options
author | 2011-12-01 20:18:20 +0000 | |
---|---|---|
committer | 2011-12-01 20:18:20 +0000 | |
commit | aa97e1186cdbc81c23f1db36ba6c39fd3bf9ef4e (patch) | |
tree | 48edd3c51b2db98bc8456adffed3cc4646b00b7c /dev-perl/GD/GD-2.460.0.ebuild | |
parent | Minor retouches and forwarding the changes to the live ebuild, thanks a lot t... (diff) | |
download | historical-aa97e1186cdbc81c23f1db36ba6c39fd3bf9ef4e.tar.gz historical-aa97e1186cdbc81c23f1db36ba6c39fd3bf9ef4e.tar.bz2 historical-aa97e1186cdbc81c23f1db36ba6c39fd3bf9ef4e.zip |
Add missing RDEPEND. Thanks to Tiziano Müller
Package-Manager: portage-2.2.0_alpha79/cvs/Linux x86_64
Diffstat (limited to 'dev-perl/GD/GD-2.460.0.ebuild')
-rw-r--r-- | dev-perl/GD/GD-2.460.0.ebuild | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/dev-perl/GD/GD-2.460.0.ebuild b/dev-perl/GD/GD-2.460.0.ebuild index 8c5afc2d5c03..5313ca6cd172 100644 --- a/dev-perl/GD/GD-2.460.0.ebuild +++ b/dev-perl/GD/GD-2.460.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-perl/GD/GD-2.460.0.ebuild,v 1.1 2011/05/02 18:49:15 tove Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-perl/GD/GD-2.460.0.ebuild,v 1.2 2011/12/01 20:18:20 tove Exp $ EAPI=4 @@ -15,7 +15,7 @@ SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-solaris" IUSE="animgif gif jpeg png truetype xpm" -DEPEND=">=media-libs/gd-2.0.33 +RDEPEND=">=media-libs/gd-2.0.33 png? ( media-libs/gd[png] media-libs/libpng @@ -34,6 +34,7 @@ DEPEND=">=media-libs/gd-2.0.33 x11-libs/libXpm ) gif? ( media-libs/giflib )" +DEPEND="${RDEPEND}" SRC_TEST=do @@ -45,12 +46,12 @@ src_prepare(){ src_configure() { myconf="" - use gif && use animgif && myconf="${myconf},ANIMGIF" - use jpeg && myconf="${myconf},JPEG" - use truetype && myconf="${myconf},FREETYPE" - use png && myconf="${myconf},PNG" - use xpm && myconf="${myconf},XPM" - use gif && myconf="${myconf},GIF" + use gif && use animgif && myconf+=",ANIMGIF" + use jpeg && myconf+=",JPEG" + use truetype && myconf+=",FREETYPE" + use png && myconf+=",PNG" + use xpm && myconf+=",XPM" + use gif && myconf+=",GIF" myconf="-options \"${myconf:1}\"" perl-module_src_configure } |