# 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 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" }