summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Turk <satai@gentoo.org>2002-11-08 17:34:52 +0000
committerMatthew Turk <satai@gentoo.org>2002-11-08 17:34:52 +0000
commita6ca15bc39f169a5988a6335964b44fa27c8d853 (patch)
tree4408e31c1b892e27b48418de32955f4ec9a6e1d5 /app-sci/pari
parentAdded tabs patch (diff)
downloadhistorical-a6ca15bc39f169a5988a6335964b44fa27c8d853.tar.gz
historical-a6ca15bc39f169a5988a6335964b44fa27c8d853.tar.bz2
historical-a6ca15bc39f169a5988a6335964b44fa27c8d853.zip
New ebuild added (4792) thanks to Pierre-Henri Jondot
<Pierre-Henri.Jondot@wanadoo.fr>
Diffstat (limited to 'app-sci/pari')
-rw-r--r--app-sci/pari/ChangeLog9
-rw-r--r--app-sci/pari/files/digest-pari-2.1.41
-rw-r--r--app-sci/pari/pari-2.1.4.ebuild30
3 files changed, 40 insertions, 0 deletions
diff --git a/app-sci/pari/ChangeLog b/app-sci/pari/ChangeLog
new file mode 100644
index 000000000000..eb16db25ffd7
--- /dev/null
+++ b/app-sci/pari/ChangeLog
@@ -0,0 +1,9 @@
+# ChangeLog for <CATEGORY>/<PACKAGE_NAME>
+# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-sci/pari/ChangeLog,v 1.1 2002/11/08 17:34:52 satai Exp $
+
+*pari-2.1.4 (08 Nov 2002)
+
+ 08 Nov 2002; Matthew Turk <satai@gentoo.org> :
+ Initial import. Ebuild submitted by Pierre-Henri Jondot
+ <Pierre-Henri.Jondot@wanadoo.fr>
diff --git a/app-sci/pari/files/digest-pari-2.1.4 b/app-sci/pari/files/digest-pari-2.1.4
new file mode 100644
index 000000000000..ab4749a2bf91
--- /dev/null
+++ b/app-sci/pari/files/digest-pari-2.1.4
@@ -0,0 +1 @@
+MD5 f790435b3008b3a5054989fa467c5a51 pari-2.1.4.tar.gz 1539118
diff --git a/app-sci/pari/pari-2.1.4.ebuild b/app-sci/pari/pari-2.1.4.ebuild
new file mode 100644
index 000000000000..1634be9f4a58
--- /dev/null
+++ b/app-sci/pari/pari-2.1.4.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2002 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# /space/gentoo/cvsroot/gentoo-x86/skel.ebuild,v 1.8 2002/05/30 01:54:49 sandymac Exp
+
+DESCRIPTION="pari (or pari-gp) : a software package for computer-aided number theory"
+HOMEPAGE="http://www.parigp-home.de/"
+LICENSE="GPL-2"
+DEPEND="app-text/tetex"
+RDEPEND=""
+SRC_URI="http://www.gn-50uma.de/ftp/pari-2.1/${P}.tar.gz"
+KEYWORDS="~x86 ~ppc ~sparc ~sparc64"
+
+S=${WORKDIR}/${P}
+
+src_compile() {
+ ./Configure \
+ --host=${CHOST} \
+ --prefix=/usr \
+ --miscdir=/usr/share/doc/${P} \
+ --datadir=/usr/share/${P} \
+ --mandir=/usr/share/man || die "./configure failed"
+ addwrite "/var/lib/texmf"
+ addwrite "/usr/share/texmf"
+ addwrite "/var/cache/fonts"
+ emake doc gp || die
+}
+
+src_install () {
+ make DESTDIR=${D} install || die
+}