diff options
author | Michael Cummings <mcummings@gentoo.org> | 2006-01-16 20:56:43 +0000 |
---|---|---|
committer | Michael Cummings <mcummings@gentoo.org> | 2006-01-16 20:56:43 +0000 |
commit | df3f4acf3bcbee1016cf48268ce56964b9d8ecdd (patch) | |
tree | 56381eb92bf115cdd61d3870f402855282173f0d /dev-perl/PDL | |
parent | Stable on sparc (diff) | |
download | gentoo-2-df3f4acf3bcbee1016cf48268ce56964b9d8ecdd.tar.gz gentoo-2-df3f4acf3bcbee1016cf48268ce56964b9d8ecdd.tar.bz2 gentoo-2-df3f4acf3bcbee1016cf48268ce56964b9d8ecdd.zip |
Bug 107375, added badval support
(Portage version: 2.1_pre3-r1)
Diffstat (limited to 'dev-perl/PDL')
-rw-r--r-- | dev-perl/PDL/ChangeLog | 7 | ||||
-rw-r--r-- | dev-perl/PDL/Manifest | 12 | ||||
-rw-r--r-- | dev-perl/PDL/PDL-2.4.2.ebuild | 12 |
3 files changed, 15 insertions, 16 deletions
diff --git a/dev-perl/PDL/ChangeLog b/dev-perl/PDL/ChangeLog index 7b168bb01ac4..8b047fde3b19 100644 --- a/dev-perl/PDL/ChangeLog +++ b/dev-perl/PDL/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-perl/PDL -# Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-perl/PDL/ChangeLog,v 1.44 2005/12/29 18:17:36 mcummings Exp $ +# Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-perl/PDL/ChangeLog,v 1.45 2006/01/16 20:56:43 mcummings Exp $ + + 16 Jan 2006; Michael Cummings <mcummings@gentoo.org> PDL-2.4.2.ebuild: + Bug 107375, added badval support 29 Dec 2005; <mcumming@gentoo.org> PDL-2.4.0-r2.ebuild, PDL-2.4.2.ebuild: Updating dep to perl-core/Filter diff --git a/dev-perl/PDL/Manifest b/dev-perl/PDL/Manifest index 422c1ed1b7d4..4131adb825c7 100644 --- a/dev-perl/PDL/Manifest +++ b/dev-perl/PDL/Manifest @@ -1,18 +1,8 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA1 - MD5 100f4a292472753460b80a456ec1d738 ChangeLog 5631 MD5 1649e9d7c3239cdd2b6625f880f2be7f PDL-2.4.0-r2.ebuild 2100 -MD5 e4e7ddd9db8c6a44ba30814f5ef74ecf PDL-2.4.2.ebuild 2409 +MD5 bc9a480c7cdd4a7f07b53708fad5a1ad PDL-2.4.2.ebuild 2517 MD5 c02b2911c7ccf0e1034e719bf515c9fd files/digest-PDL-2.4.0-r2 62 MD5 ec437e93538a4c2ac25d8618f51ddc86 files/digest-PDL-2.4.2 62 MD5 5c22c0f59ad10f36608505d621618f2b files/gsl.patch 483 MD5 62cbe79e2c7c354d5c165b63c571cc13 files/perldl.conf 2716 MD5 e2d8f1bf77722def1dd432e26455c818 metadata.xml 305 ------BEGIN PGP SIGNATURE----- -Version: GnuPG v1.4.2 (GNU/Linux) - -iD8DBQFDtChJtG5z4I8BtQoRAhwuAJ9/0v7timmEhw7yt8VaevHNy3l8NwCcCaKK -hwhYSVGjPj/ZbM00K+NPFG8= -=BDMh ------END PGP SIGNATURE----- diff --git a/dev-perl/PDL/PDL-2.4.2.ebuild b/dev-perl/PDL/PDL-2.4.2.ebuild index 9902e445e1bf..f64d0759d0ae 100644 --- a/dev-perl/PDL/PDL-2.4.2.ebuild +++ b/dev-perl/PDL/PDL-2.4.2.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2005 Gentoo Foundation +# Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-perl/PDL/PDL-2.4.2.ebuild,v 1.9 2005/12/29 18:17:36 mcummings Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-perl/PDL/PDL-2.4.2.ebuild,v 1.10 2006/01/16 20:56:43 mcummings Exp $ inherit perl-module eutils @@ -11,7 +11,7 @@ SRC_URI="mirror://cpan/authors/id/C/CS/CSOE/${P}.tar.gz" LICENSE="Artistic as-is" SLOT="0" KEYWORDS="alpha amd64 arm hppa ia64 ppc sparc x86" -IUSE="opengl" +IUSE="opengl badval" DEPEND=">=sys-libs/ncurses-5.2 perl-core/Filter @@ -43,6 +43,12 @@ src_unpack() { ${FILESDIR}/perldl.conf > ${S}/perldl.conf fi + if use badval ; then + sed -i -e "s:WITH_BADVAL => 0:WITH_BADVAL => 1:" \ + ${S}/perldl.conf + fi + + # Unconditional -fPIC for the lib (#55238) sed -i -e "s/mycompiler -c -o/mycompiler -fPIC -c -o/" ${S}/Lib/Slatec/Makefile.PL } |