blob: 3a8eb8b8a8ac917358cf43861044c28c92c7b2a8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
# 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.1.5-r4.ebuild,v 1.5 2006/02/12 20:41:40 deltacow Exp $
inherit eutils flag-o-matic multilib
DESCRIPTION="pari (or pari-gp) : a software package for computer-aided number theory"
HOMEPAGE="http://www.parigp-home.de/"
SRC_URI="http://www.gn-50uma.de/ftp/pari-2.1/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 hppa ~mips ~ppc ~sparc x86"
IUSE="doc emacs"
DEPEND="doc? ( virtual/tetex )"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/docs.patch
epatch ${FILESDIR}/wrong_functype.patch
}
src_compile() {
#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
if ! is-flag -fPIC; then append-flags -fPIC; fi
./Configure \
--host="$(echo ${CHOST} | cut -f "1 3" -d '-')" \
--prefix=/usr \
--miscdir=/usr/share/doc/${P} \
--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 amd64; then
# Fixes BUG #49583
einfo "Building shared library..."
cd Olinux-x86_64
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!"
elif use hppa; then
einfo "Building shared library..."
cd Olinux-hppa*
mymake=DLLD\=/usr/bin/gcc\ DLLDFLAGS\=-shared\ -Wl,-soname=\$\(LIBPARI_SONAME\)\ -lm
emake CFLAGS="${CFLAGS} -DGCC_INLINE -fPIC" ${mymake} 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
use doc || rm -rf doc/*.tex
use doc && emake doc
}
src_install () {
make DESTDIR=${D} 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
}
|