diff options
author | Danny van Dyk <kugelfang@gentoo.org> | 2004-08-30 19:20:14 +0000 |
---|---|---|
committer | Danny van Dyk <kugelfang@gentoo.org> | 2004-08-30 19:20:14 +0000 |
commit | f3d5a849ecc143204cb913749ce937f2a00b9e1b (patch) | |
tree | 2eed29b6d64a8f0e9bf255c5ef82a7a8a1f7e55b /dev-perl | |
parent | Keyword modification, see changelog for details (diff) | |
download | historical-f3d5a849ecc143204cb913749ce937f2a00b9e1b.tar.gz historical-f3d5a849ecc143204cb913749ce937f2a00b9e1b.tar.bz2 historical-f3d5a849ecc143204cb913749ce937f2a00b9e1b.zip |
fPIC Policy: needs to be unconditional. BUG #55238
Diffstat (limited to 'dev-perl')
-rw-r--r-- | dev-perl/PDL/ChangeLog | 5 | ||||
-rw-r--r-- | dev-perl/PDL/Manifest | 8 | ||||
-rw-r--r-- | dev-perl/PDL/PDL-2.4.0.ebuild | 13 |
3 files changed, 16 insertions, 10 deletions
diff --git a/dev-perl/PDL/ChangeLog b/dev-perl/PDL/ChangeLog index 1fe87e5ebe07..6ec0919b0372 100644 --- a/dev-perl/PDL/ChangeLog +++ b/dev-perl/PDL/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-perl/PDL # Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-perl/PDL/ChangeLog,v 1.22 2004/06/25 00:53:37 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-perl/PDL/ChangeLog,v 1.23 2004/08/30 19:20:14 kugelfang Exp $ + + 30 Aug 2004; Danny van Dyk <kugelfang@gentoo.org> PDL-2.4.0.ebuild: + Applying -fPIC to compile flags now unconditionally. See BUG #55238. 06 Jun 2004; Aron Griffis <agriffis@gentoo.org> PDL-2.3.2-r1.ebuild, PDL-2.3.2-r2.ebuild, PDL-2.3.4.ebuild, PDL-2.4.0-r1.ebuild, diff --git a/dev-perl/PDL/Manifest b/dev-perl/PDL/Manifest index bd22a8a70ba1..dc2f1d4a8b45 100644 --- a/dev-perl/PDL/Manifest +++ b/dev-perl/PDL/Manifest @@ -1,13 +1,13 @@ +MD5 57da9fcb7055ea5315307a0023974ea8 ChangeLog 2821 +MD5 8240c6adf86f34dbc6807beccc8587a8 PDL-2.3.2-r1.ebuild 1399 MD5 1187d3fe3d04914c1c95201e411598e5 PDL-2.3.2-r2.ebuild 1398 MD5 1824ca99a76fddb073332c2defda86f5 PDL-2.3.4.ebuild 1476 MD5 415789ad56fe42fcceae2cf64b8eb74a PDL-2.4.0-r1.ebuild 1772 -MD5 8240c6adf86f34dbc6807beccc8587a8 PDL-2.3.2-r1.ebuild 1399 -MD5 7bad23b520c77401b54ea9b996ce1096 ChangeLog 2678 +MD5 3c3a64c1ae1f2d78fc3f9536034378cf PDL-2.4.0.ebuild 1841 MD5 e2d8f1bf77722def1dd432e26455c818 metadata.xml 305 -MD5 dad072534775da21c575caeb683483cc PDL-2.4.0.ebuild 1730 MD5 6227c564933ab56193b3e40c1b9849a9 files/digest-PDL-2.3.2-r1 62 MD5 6227c564933ab56193b3e40c1b9849a9 files/digest-PDL-2.3.2-r2 62 -MD5 c02b2911c7ccf0e1034e719bf515c9fd files/digest-PDL-2.4.0-r1 62 MD5 35ac408924354a06245cd6ff352d3f26 files/digest-PDL-2.3.4 62 MD5 c02b2911c7ccf0e1034e719bf515c9fd files/digest-PDL-2.4.0 62 +MD5 c02b2911c7ccf0e1034e719bf515c9fd files/digest-PDL-2.4.0-r1 62 MD5 62cbe79e2c7c354d5c165b63c571cc13 files/perldl.conf 2716 diff --git a/dev-perl/PDL/PDL-2.4.0.ebuild b/dev-perl/PDL/PDL-2.4.0.ebuild index 87835d45ef6e..7e80a6cba29b 100644 --- a/dev-perl/PDL/PDL-2.4.0.ebuild +++ b/dev-perl/PDL/PDL-2.4.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-perl/PDL/PDL-2.4.0.ebuild,v 1.10 2004/07/14 20:06:26 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-perl/PDL/PDL-2.4.0.ebuild,v 1.11 2004/08/30 19:20:14 kugelfang Exp $ IUSE="opengl" @@ -41,10 +41,13 @@ src_unpack() { sed -e "s:WITH_3D => undef:WITH_3D => 0:" \ ${FILESDIR}/perldl.conf > ${S}/perldl.conf fi - if use hppa || use amd64; then - cd ${S}/Lib/Slatec - sed -i -e "s/mycompiler -c -o/mycompiler -fPIC -c -o/" Makefile.PL - fi + # fPIC has to be applied unconditonally ! + # BUG #55238 + # Danny van Dyk <kugelfang@gentoo.org> 2004/08/30 + # if use hppa || use amd64; then + cd ${S}/Lib/Slatec + sed -i -e "s/mycompiler -c -o/mycompiler -fPIC -c -o/" Makefile.PL + # fi } src_install () { |