diff options
author | Guy Martin <gmsoft@gentoo.org> | 2004-09-09 17:24:05 +0000 |
---|---|---|
committer | Guy Martin <gmsoft@gentoo.org> | 2004-09-09 17:24:05 +0000 |
commit | 0fd5c80d0d2d0d043d7056c483bc7e3f0e323452 (patch) | |
tree | 121735564ebe8f90e7a44ed40910108ce7f3fe55 /dev-perl/PDL | |
parent | Stable on sparc wrt #63439 (Manifest recommit) (diff) | |
download | gentoo-2-0fd5c80d0d2d0d043d7056c483bc7e3f0e323452.tar.gz gentoo-2-0fd5c80d0d2d0d043d7056c483bc7e3f0e323452.tar.bz2 gentoo-2-0fd5c80d0d2d0d043d7056c483bc7e3f0e323452.zip |
Reapplying unconditional -fPIC stuff (#55238). Stable on hppa.
Diffstat (limited to 'dev-perl/PDL')
-rw-r--r-- | dev-perl/PDL/ChangeLog | 5 | ||||
-rw-r--r-- | dev-perl/PDL/PDL-2.4.0-r2.ebuild | 12 |
2 files changed, 10 insertions, 7 deletions
diff --git a/dev-perl/PDL/ChangeLog b/dev-perl/PDL/ChangeLog index e894efd2ea44..e0a6fa43cb40 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.26 2004/09/06 19:21:28 gustavoz Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-perl/PDL/ChangeLog,v 1.27 2004/09/09 17:24:05 gmsoft Exp $ + + 09 Sep 2004; Guy Martin <gmsoft@gentoo.org> PDL-2.4.0-r2.ebuild: + Reapplying unconditional -fPIC stuff (#55238). Stable on hppa. 06 Sep 2004; Gustavo Zacarias <gustavoz@gentoo.org> PDL-2.4.0-r2.ebuild: Stable on sparc diff --git a/dev-perl/PDL/PDL-2.4.0-r2.ebuild b/dev-perl/PDL/PDL-2.4.0-r2.ebuild index adb910d637c4..e0d324925463 100644 --- a/dev-perl/PDL/PDL-2.4.0-r2.ebuild +++ b/dev-perl/PDL/PDL-2.4.0-r2.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-r2.ebuild,v 1.4 2004/09/06 19:21:28 gustavoz Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-perl/PDL/PDL-2.4.0-r2.ebuild,v 1.5 2004/09/09 17:24:05 gmsoft Exp $ IUSE="opengl" @@ -11,7 +11,7 @@ SRC_URI="http://cpan.valueclick.com/modules/by-module/PDL/${P}.tar.gz" HOMEPAGE="http://cpan.valueclick.com/modules/by-module/PDL/${P}.readme" SLOT="0" LICENSE="Artistic as-is" -KEYWORDS="x86 ~ppc sparc ~alpha ~hppa ~mips amd64" +KEYWORDS="x86 ~ppc sparc ~alpha hppa ~mips amd64" DEPEND=">=sys-libs/ncurses-5.2 dev-perl/Filter @@ -46,10 +46,10 @@ 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 + + # Unconditional -fPIC for the lib (#55238) + sed -i -e "s/mycompiler -c -o/mycompiler -fPIC -c -o/" ${S}/Lib/Slatec/Makefile.PL + # The below patch was supplied by Karl Steddom <k-steddom@tamu.edu> # in bug 33936 to correct PDL's inability to detect GSL libraries # correctly. |