diff options
author | Bryan Østergaard <kloeri@gentoo.org> | 2004-09-12 00:11:44 +0000 |
---|---|---|
committer | Bryan Østergaard <kloeri@gentoo.org> | 2004-09-12 00:11:44 +0000 |
commit | baae8eee139c6b648ea21621c953857cb4fa0b50 (patch) | |
tree | c72315f8e5d9588fa87e6cc0db097bbfa0336c39 /app-sci | |
parent | fix quoting and use character classes for tr invocations, otherwise you get b... (diff) | |
download | historical-baae8eee139c6b648ea21621c953857cb4fa0b50.tar.gz historical-baae8eee139c6b648ea21621c953857cb4fa0b50.tar.bz2 historical-baae8eee139c6b648ea21621c953857cb4fa0b50.zip |
Fix fPIC issue on alpha.
Diffstat (limited to 'app-sci')
-rw-r--r-- | app-sci/pari/ChangeLog | 5 | ||||
-rw-r--r-- | app-sci/pari/Manifest | 4 | ||||
-rw-r--r-- | app-sci/pari/pari-2.1.5-r3.ebuild | 8 |
3 files changed, 13 insertions, 4 deletions
diff --git a/app-sci/pari/ChangeLog b/app-sci/pari/ChangeLog index 9c1c032c3ed2..a8de3f423e5f 100644 --- a/app-sci/pari/ChangeLog +++ b/app-sci/pari/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-sci/pari # Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-sci/pari/ChangeLog,v 1.21 2004/06/24 22:14:15 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-sci/pari/ChangeLog,v 1.22 2004/09/12 00:11:44 kloeri Exp $ + + 12 Sep 2004; Bryan Østergaard <kloeri@gentoo.org> pari-2.1.5-r3.ebuild: + Fix fPIC issue on alpha. 06 Jun 2004; Danny van Dyk <kugelfang@gentoo.org> pari-2.1.5-r3.ebuild: Marked stable on amd64. diff --git a/app-sci/pari/Manifest b/app-sci/pari/Manifest index e689ff297fef..6003b1267463 100644 --- a/app-sci/pari/Manifest +++ b/app-sci/pari/Manifest @@ -1,7 +1,7 @@ MD5 812f92e455b08016cdf6a3f69d6bb7b2 pari-2.1.5-r1.ebuild 945 -MD5 a0232cb47747c07385df7b5c9d6a9fd3 pari-2.1.5-r3.ebuild 1537 +MD5 265994ad005596593e08a282debb4c6c pari-2.1.5-r3.ebuild 1832 MD5 eb02d6782a6529df3d7b710a39f5fd0c pari-2.1.5-r2.ebuild 1362 -MD5 14db6d80431ce2bb425ef60ded2f30d7 ChangeLog 2415 +MD5 87decba0d2fbdf3f3ccaad95ef7b0cb1 ChangeLog 2515 MD5 8c623e53daafa025137077c6b65815bd metadata.xml 156 MD5 c3f89da5ddbdb73646e3d64ee31ea887 files/docs.patch 915 MD5 ee951aeeb2122fab2aaf9803097fad76 files/digest-pari-2.1.5-r1 63 diff --git a/app-sci/pari/pari-2.1.5-r3.ebuild b/app-sci/pari/pari-2.1.5-r3.ebuild index 8a9617dec0e8..b4d60a33d55d 100644 --- a/app-sci/pari/pari-2.1.5-r3.ebuild +++ b/app-sci/pari/pari-2.1.5-r3.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/app-sci/pari/pari-2.1.5-r3.ebuild,v 1.4 2004/06/24 22:14:15 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-sci/pari/pari-2.1.5-r3.ebuild,v 1.5 2004/09/12 00:11:44 kloeri Exp $ inherit eutils @@ -39,6 +39,12 @@ src_compile() { emake CFLAGS="${CFLAGS} -DGCC_INLINE -fPIC" lib-dyn || die "Building shared library failed!" einfo "Building executables..." emake CFLAGS="${CFLAGS} -DGCC_INLINE" gp ../gp || die "Building exectuables failed!" + elif use alpha; then + einfo "Building shared library..." + cd Olinux-alpha + emake CFLAGS="${CFLAGS} -DGCC_INLINE -fPIC" lib-dyn || die "Building shared library failed!" + einfo "Building executables..." + emake CFLAGS="${CFLAGS} -DGCC_INLINE" gp ../gp || die "Building exec tu ables failed!" else emake CFLAGS="${CFLAGS} -DGCC_INLINE" gp || die fi |