diff options
author | Markus Dittrich <markusle@gentoo.org> | 2006-07-23 11:31:22 +0000 |
---|---|---|
committer | Markus Dittrich <markusle@gentoo.org> | 2006-07-23 11:31:22 +0000 |
commit | a125b15da958a19626d59ca3725d64a33f36ec4f (patch) | |
tree | 70241f03509864c9d6dff061a79e441fd0ac97f0 /sci-mathematics/pari | |
parent | Masked sci-mathematics/pari-2.3.0 for further testing (diff) | |
download | gentoo-2-a125b15da958a19626d59ca3725d64a33f36ec4f.tar.gz gentoo-2-a125b15da958a19626d59ca3725d64a33f36ec4f.tar.bz2 gentoo-2-a125b15da958a19626d59ca3725d64a33f36ec4f.zip |
Version bump. This fixes bug #141206.
(Portage version: 2.1.1_pre3-r3)
Diffstat (limited to 'sci-mathematics/pari')
-rw-r--r-- | sci-mathematics/pari/ChangeLog | 8 | ||||
-rw-r--r-- | sci-mathematics/pari/files/digest-pari-2.3.0 | 3 | ||||
-rw-r--r-- | sci-mathematics/pari/pari-2.3.0.ebuild | 87 |
3 files changed, 97 insertions, 1 deletions
diff --git a/sci-mathematics/pari/ChangeLog b/sci-mathematics/pari/ChangeLog index 97e8a79e8f3e..dfe1f3df362d 100644 --- a/sci-mathematics/pari/ChangeLog +++ b/sci-mathematics/pari/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for sci-mathematics/pari # Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/pari/ChangeLog,v 1.37 2006/05/23 20:17:15 corsair Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/pari/ChangeLog,v 1.38 2006/07/23 11:31:22 markusle Exp $ + +*pari-2.3.0 (23 Jul 2006) + + 23 Jul 2006; Markus Dittrich <markusle@gentoo.org> +pari-2.3.0.ebuild: + Version bump. Thanks to Soroosh Yazdani <syazdani@gmail.com> + for his ebuild. This fixes bug #141206. 23 May 2006; Markus Rothe <corsair@gentoo.org> pari-2.1.7-r1.ebuild: Stable on ppc64 diff --git a/sci-mathematics/pari/files/digest-pari-2.3.0 b/sci-mathematics/pari/files/digest-pari-2.3.0 new file mode 100644 index 000000000000..a27cc03ea633 --- /dev/null +++ b/sci-mathematics/pari/files/digest-pari-2.3.0 @@ -0,0 +1,3 @@ +MD5 ea685da18e015a4365965e82e6e2a2dd pari-2.3.0.tar.gz 2009553 +RMD160 5d34ae6af7f5a50df25d6ca07d81dff12cbcc9e4 pari-2.3.0.tar.gz 2009553 +SHA256 e8d1ddbeb15e0df04e97ed274804ca2c790950327bdffa852388a31b57b1e10f pari-2.3.0.tar.gz 2009553 diff --git a/sci-mathematics/pari/pari-2.3.0.ebuild b/sci-mathematics/pari/pari-2.3.0.ebuild new file mode 100644 index 000000000000..ea01ae929250 --- /dev/null +++ b/sci-mathematics/pari/pari-2.3.0.ebuild @@ -0,0 +1,87 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/pari/pari-2.3.0.ebuild,v 1.1 2006/07/23 11:31:22 markusle 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/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~hppa ~mips ~ppc ~sparc ~x86" +IUSE="doc emacs" + +DEPEND="doc? ( virtual/tetex ) + sys-libs/readline + || ( x11-libs/libX11 virtual/x11 )" + +src_compile() { + # 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 + + #we also need to force -fPIC throughout on amd64 + if [ "${ARCH}" = "amd64" ] && ! is-flag -fPIC; then append-flags -fPIC; fi + + ./Configure \ + --host=${myhost} \ + --prefix=/usr \ + --datadir=/usr/share/${P} \ + --libdir=/usr/$(get_libdir) \ + --mandir=/usr/share/man/man1 || die "./configure failed" + + 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!" + + if use doc; then + cd "${S}" + emake docpdf || die "Failed to generate docs" + fi +} + +src_test() { + cd "${S}" + ebegin "Testing pari kernel" + make 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 + if use doc; then + dodoc doc/*.pdf || die "Failed to install docs" + fi + + #remove superfluous doc directory + rm -fr ${D}/usr/share/${P}/doc || \ + die "Failed to clean up doc directory" +} |