diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-12-21 23:52:17 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-12-21 23:52:17 +0000 |
commit | cfe85b2322d84370b4fa6067609c4fcf9b7d4725 (patch) | |
tree | 9ceb0f6390b5a527246f5ec3d7acefd673fc3379 /dev-perl/GD/GD-2.30.ebuild | |
parent | update modular X depends #116254, change USE=X to USE=xpm, and stabilize for ... (diff) | |
download | gentoo-2-cfe85b2322d84370b4fa6067609c4fcf9b7d4725.tar.gz gentoo-2-cfe85b2322d84370b4fa6067609c4fcf9b7d4725.tar.bz2 gentoo-2-cfe85b2322d84370b4fa6067609c4fcf9b7d4725.zip |
add support for modular X #115965 and change USE=X to USE=xpm
(Portage version: 2.0.53)
Diffstat (limited to 'dev-perl/GD/GD-2.30.ebuild')
-rw-r--r-- | dev-perl/GD/GD-2.30.ebuild | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/dev-perl/GD/GD-2.30.ebuild b/dev-perl/GD/GD-2.30.ebuild index 09a1ae4d31ac..8fb40d52bfba 100644 --- a/dev-perl/GD/GD-2.30.ebuild +++ b/dev-perl/GD/GD-2.30.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-perl/GD/GD-2.30.ebuild,v 1.1 2005/11/22 14:17:56 mcummings Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-perl/GD/GD-2.30.ebuild,v 1.2 2005/12/21 23:52:17 vapier Exp $ inherit eutils perl-module @@ -11,13 +11,13 @@ SRC_URI="mirror://cpan/authors/id/L/LD/LDS/${P}.tar.gz" LICENSE="|| ( Artistic GPL-2 )" SLOT="0" KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86" -IUSE="jpeg truetype X gif png" +IUSE="gif jpeg png truetype xpm" DEPEND=">=media-libs/gd-2.0.28 png? ( media-libs/libpng sys-libs/zlib ) jpeg? ( media-libs/jpeg ) truetype? ( =media-libs/freetype-2* ) - X? ( virtual/x11 ) + xpm? ( || ( x11-libs/libXpm virtual/x11 ) ) gif? ( media-libs/giflib )" src_compile() { @@ -25,7 +25,7 @@ src_compile() { use jpeg && myconf="${myconf},JPEG" use truetype && myconf="${myconf},FREETYPE" use png && myconf="${myconf},PNG" - use X && myconf="${myconf},XPM" + use xpm && myconf="${myconf},XPM" use gif && myconf="${myconf},GIF" myconf="-options \"${myconf:1}\"" perl-module_src_compile |