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 | 7de711bff2047243272592ddd66f7e7dbd4c9d3d (patch) | |
tree | 1dd52342f5cb12226a803f5b134a674b74829cd7 /app-sci/pari | |
parent | fix quoting and use character classes for tr invocations, otherwise you get b... (diff) | |
download | gentoo-2-7de711bff2047243272592ddd66f7e7dbd4c9d3d.tar.gz gentoo-2-7de711bff2047243272592ddd66f7e7dbd4c9d3d.tar.bz2 gentoo-2-7de711bff2047243272592ddd66f7e7dbd4c9d3d.zip |
Fix fPIC issue on alpha.
Diffstat (limited to 'app-sci/pari')
-rw-r--r-- | app-sci/pari/ChangeLog | 5 | ||||
-rw-r--r-- | app-sci/pari/pari-2.1.5-r3.ebuild | 8 |
2 files changed, 11 insertions, 2 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/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 |