diff options
author | Michael Cummings <mcummings@gentoo.org> | 2002-09-09 21:53:26 +0000 |
---|---|---|
committer | Michael Cummings <mcummings@gentoo.org> | 2002-09-09 21:53:26 +0000 |
commit | 432011578cc7c6847a1be456bdfc92f078a29016 (patch) | |
tree | 123a1456d83ae74ea76d623dc40e16fa2fde7a03 /dev-perl/GD | |
parent | This test eclass has been tested on all platforms and is no longer (diff) | |
download | historical-432011578cc7c6847a1be456bdfc92f078a29016.tar.gz historical-432011578cc7c6847a1be456bdfc92f078a29016.tar.bz2 historical-432011578cc7c6847a1be456bdfc92f078a29016.zip |
These are syntax fixes for the new perl eclass. The new perl eclass uses a corrected makemaker for perl.
Diffstat (limited to 'dev-perl/GD')
-rw-r--r-- | dev-perl/GD/ChangeLog | 8 | ||||
-rw-r--r-- | dev-perl/GD/GD-2.01.ebuild | 39 | ||||
-rw-r--r-- | dev-perl/GD/files/digest-GD-2.01 | 1 |
3 files changed, 47 insertions, 1 deletions
diff --git a/dev-perl/GD/ChangeLog b/dev-perl/GD/ChangeLog index 2bc6d83f7e9b..6cc665c0d7f0 100644 --- a/dev-perl/GD/ChangeLog +++ b/dev-perl/GD/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-perl/GD # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/dev-perl/GD/ChangeLog,v 1.3 2002/07/31 13:05:40 cselkirk Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-perl/GD/ChangeLog,v 1.4 2002/09/09 21:53:26 mcummings Exp $ + +*GD-2.01 (8 Sep 2002) + + 8 Sep 2002; <mcummings@gentoo.org> GD-2.01.ebuild : + Updated version corrects some GD related problems, depends on new GD; thanks + to Nicholas Wourms for doing the legwork on this one *GD-1.32-r1 (5 May 2002) diff --git a/dev-perl/GD/GD-2.01.ebuild b/dev-perl/GD/GD-2.01.ebuild new file mode 100644 index 000000000000..61319d59c10f --- /dev/null +++ b/dev-perl/GD/GD-2.01.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# $Header: /var/cvsroot/gentoo-x86/dev-perl/GD/GD-2.01.ebuild,v 1.1 2002/09/09 21:53:26 mcummings Exp $ + +inherit perl-module + +S=${WORKDIR}/${P} +CATEGORY="dev-perl" +DESCRIPTION="The Perl DBI Module" +SRC_URI="http://www.cpan.org/modules/by-module/GD/${P}.tar.gz" +HOMEPAGE="http://www.cpan.org/modules/by-module/GD/${P}.readme" + +SLOT="0" +LICENSE="Artistic | GPL-2" +KEYWORDS="x86 ppc" + +DEPEND="${DEPEND} + >=media-libs/libgd-2.0.1 + X? ( virtual/x11 )" + +src_unpack() { + unpack ${A} + cd ${S} + cp Makefile.PL Makefile.PL.orig + sed -e "s:my \$JPEG.*:my \$JPEG='y';:" \ + -e "s:my \$TTF.*:my \$TTF='y';:" \ + Makefile.PL.orig > Makefile.PL + + use X && ( \ + cp Makefile.PL Makefile.PL.orig + sed -e "s:my \$XPM.*:my \$XPM='y';:" \ + Makefile.PL.orig > Makefile.PL + ) +} + +src_install () { + perl-module_src_install + dohtml GD.html +} diff --git a/dev-perl/GD/files/digest-GD-2.01 b/dev-perl/GD/files/digest-GD-2.01 new file mode 100644 index 000000000000..cd93146593b3 --- /dev/null +++ b/dev-perl/GD/files/digest-GD-2.01 @@ -0,0 +1 @@ +MD5 ddc4743ecc2c50714dcc6a25406fc942 GD-2.01.tar.gz 333177 |