diff options
author | Sebastien Fabbro <bicatali@gentoo.org> | 2010-05-05 16:07:24 +0000 |
---|---|---|
committer | Sebastien Fabbro <bicatali@gentoo.org> | 2010-05-05 16:07:24 +0000 |
commit | 94e614ac343adda36cc8c5812cd55f017cdebcb5 (patch) | |
tree | 29e643803f5c68ffdc0e6f580e794b34a865166b | |
parent | Masked octave-forge for removal (diff) | |
download | gentoo-2-94e614ac343adda36cc8c5812cd55f017cdebcb5.tar.gz gentoo-2-94e614ac343adda36cc8c5812cd55f017cdebcb5.tar.bz2 gentoo-2-94e614ac343adda36cc8c5812cd55f017cdebcb5.zip |
Restored ugly old version to satisfy math-pari old stable
(Portage version: 2.2_rc67/cvs/Linux x86_64, RepoMan options: --force)
-rw-r--r-- | sci-mathematics/pari/ChangeLog | 6 | ||||
-rw-r--r-- | sci-mathematics/pari/pari-2.1.7-r1.ebuild | 95 |
2 files changed, 100 insertions, 1 deletions
diff --git a/sci-mathematics/pari/ChangeLog b/sci-mathematics/pari/ChangeLog index bee19ee56fc3..823e7009ed87 100644 --- a/sci-mathematics/pari/ChangeLog +++ b/sci-mathematics/pari/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for sci-mathematics/pari # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/pari/ChangeLog,v 1.75 2010/05/04 21:56:09 bicatali Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/pari/ChangeLog,v 1.76 2010/05/05 16:07:24 bicatali Exp $ + + 05 May 2010; Sébastien Fabbro <bicatali@gentoo.org> + +pari-2.1.7-r1.ebuild: + Restored ugly old version to satisfy math-pari old stable *pari-2.3.5 (04 May 2010) diff --git a/sci-mathematics/pari/pari-2.1.7-r1.ebuild b/sci-mathematics/pari/pari-2.1.7-r1.ebuild new file mode 100644 index 000000000000..e7e9efec6975 --- /dev/null +++ b/sci-mathematics/pari/pari-2.1.7-r1.ebuild @@ -0,0 +1,95 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/pari/pari-2.1.7-r1.ebuild,v 1.13 2010/05/05 16:07:24 bicatali Exp $ + +inherit eutils toolchain-funcs flag-o-matic + +DESCRIPTION="pari (or pari-gp) : a software package for computer-aided number theory" +HOMEPAGE="http://pari.math.u-bordeaux.fr/" +SRC_URI="http://pari.math.u-bordeaux.fr/pub/pari/unix/OLD/${P}.tgz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="alpha amd64 hppa ~mips ppc ppc64 sparc x86" +IUSE="doc emacs" + +DEPEND="doc? ( virtual/latex-base )" + +src_unpack() { + unpack ${A} + cd "${S}" + epatch "${FILESDIR}"/docs.patch + + # remove exec stacks for x86; see bug #117434 + epatch "${FILESDIR}"/pari-non-exec-stack-x86-gentoo.patch +} + +src_compile() { + # Fix usage of toolchain + tc-getAS; tc-getLD; tc-getCC; tc-getCXX + + # Special handling for sparc + local myhost + [ "${PROFILE_ARCH}" == "sparc64" ] && myhost="sparc64-linux" \ + || myhost="$(echo ${CHOST} | cut -f "1 3" -d '-')" + einfo "Building for ${myhost}" + + # need to force optimization here, as it breaks without + if is-flag -O0; then + replace-flags -O0 -O2 + elif ! is-flag -O?; then + append-flags -O2 + fi + + # fix up build scripts to get rid of insecure RUNPATHS + # see bug #117434 + sed -e "s|\$runpathprefix \$TOP/\$objdir:\$tmp||" \ + -e "s|\$runpathprefix \$tmp||" -i config/Makefile.SH || \ + die "Failed to fix Makefile.SH" + sed -e "s|-L\$libdir|-L./|" -i Configure || \ + die "Failed to fix Configure" + + ./Configure \ + --host=${myhost} \ + --prefix=/usr \ + --miscdir=/usr/share/doc/${PF} \ + --datadir=/usr/share/${P} \ + --libdir=/usr/$(get_libdir) \ + --mandir=/usr/share/man/man1 || die "./configure failed" + addwrite "/var/lib/texmf" + addwrite "/usr/share/texmf" + addwrite "/var/cache/fonts" + + if use hppa + then + mymake=DLLD\=/usr/bin/gcc\ DLLDFLAGS\=-shared\ -Wl,-soname=\$\(LIBPARI_SONAME\)\ -lm + fi + + # Shared libraries should be PIC on ALL architectures. + # Danny van Dyk <kugelfang@gentoo.org> 2005/03/31 + # Fixes BUG #49583 + einfo "Building shared library..." + cd Olinux-* || die "Bad directory. File a BUG!" + emake ${mymake} CFLAGS="${CFLAGS} -DGCC_INLINE -fPIC" lib-dyn || die "Building shared library failed!" + + einfo "Building executables..." + emake ${mymake} CFLAGS="${CFLAGS} -DGCC_INLINE" gp ../gp || die "Building executables failed!" + + use doc || rm -rf doc/*.tex + use doc && emake doc +} + +src_test() { + ebegin "Testing pari kernel" + make CFLAGS="-Wl,-lpari" test-kernel > /dev/null + eend $? +} + +src_install() { + make DESTDIR="${D}" LIBDIR="${D}"/usr/$(get_libdir) install || die + if use emacs; then + insinto /usr/share/emacs/site-lisp + doins emacs/pari.el + fi + dodoc AUTHORS Announce.2.1 CHANGES README TODO +} |