summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Kursawe <phosphan@gentoo.org>2004-03-15 14:05:07 +0000
committerPatrick Kursawe <phosphan@gentoo.org>2004-03-15 14:05:07 +0000
commit7c5bcbddaf5b8c986c7d0acb9eebc6e0a0d6c8a3 (patch)
treea991ef7efa8cd8a2cb7d6501ad21190331c68921 /app-sci/pari
parentadded amd64 keyword. (Manifest recommit) (diff)
downloadgentoo-2-7c5bcbddaf5b8c986c7d0acb9eebc6e0a0d6c8a3.tar.gz
gentoo-2-7c5bcbddaf5b8c986c7d0acb9eebc6e0a0d6c8a3.tar.bz2
gentoo-2-7c5bcbddaf5b8c986c7d0acb9eebc6e0a0d6c8a3.zip
Fixing bug #40788
Diffstat (limited to 'app-sci/pari')
-rw-r--r--app-sci/pari/ChangeLog7
-rw-r--r--app-sci/pari/Manifest2
-rw-r--r--app-sci/pari/files/digest-pari-2.1.5-r21
-rw-r--r--app-sci/pari/pari-2.1.5-r2.ebuild35
4 files changed, 44 insertions, 1 deletions
diff --git a/app-sci/pari/ChangeLog b/app-sci/pari/ChangeLog
index 567ec7fbaf19..8ebf5840a296 100644
--- a/app-sci/pari/ChangeLog
+++ b/app-sci/pari/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for app-sci/pari
# Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-sci/pari/ChangeLog,v 1.13 2004/03/15 12:38:05 phosphan Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-sci/pari/ChangeLog,v 1.14 2004/03/15 14:05:07 phosphan Exp $
+
+*pari-2.1.5-r2 (15 Mar 2004)
+
+ 15 Mar 2004; Patrick Kursawe <phosphan@gentoo.org> pari-2.1.5-r2.ebuild:
+ Fixing bug #40788
*pari-2.1.5-r1 (15 Mar 2004)
diff --git a/app-sci/pari/Manifest b/app-sci/pari/Manifest
index 34b89c673697..28e41eb75626 100644
--- a/app-sci/pari/Manifest
+++ b/app-sci/pari/Manifest
@@ -1,8 +1,10 @@
MD5 15158fffbdee51c458e76d333f836a00 pari-2.1.5-r1.ebuild 946
MD5 3c709091a589ad70fb52eede5a1b4d80 pari-2.1.5.ebuild 909
+MD5 26390a52ae52b10cf015dc815bf6cae6 pari-2.1.5-r2.ebuild 994
MD5 c8a3fb4f6507a710924f799c6bc54161 ChangeLog 1480
MD5 8c623e53daafa025137077c6b65815bd metadata.xml 156
MD5 060dc3ee2d10ceb03cec56d9e069aaa4 pari-2.1.4.ebuild 865
MD5 ee951aeeb2122fab2aaf9803097fad76 files/digest-pari-2.1.5-r1 63
+MD5 ee951aeeb2122fab2aaf9803097fad76 files/digest-pari-2.1.5-r2 63
MD5 7a7e062815d9dc583da5d94ad204074d files/digest-pari-2.1.4 63
MD5 ee951aeeb2122fab2aaf9803097fad76 files/digest-pari-2.1.5 63
diff --git a/app-sci/pari/files/digest-pari-2.1.5-r2 b/app-sci/pari/files/digest-pari-2.1.5-r2
new file mode 100644
index 000000000000..2e0d53a28384
--- /dev/null
+++ b/app-sci/pari/files/digest-pari-2.1.5-r2
@@ -0,0 +1 @@
+MD5 194e9d1cc11926e457028c6a7cba15f0 pari-2.1.5.tar.gz 1540679
diff --git a/app-sci/pari/pari-2.1.5-r2.ebuild b/app-sci/pari/pari-2.1.5-r2.ebuild
new file mode 100644
index 000000000000..6df49cf9f2fc
--- /dev/null
+++ b/app-sci/pari/pari-2.1.5-r2.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2004 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/app-sci/pari/pari-2.1.5-r2.ebuild,v 1.1 2004/03/15 14:05:07 phosphan Exp $
+
+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="~x86 ~ppc ~sparc ~alpha ~mips ~hppa ~amd64"
+
+IUSE="doc"
+
+DEPEND="doc? ( virtual/tetex )"
+
+src_compile() {
+ ./Configure \
+ --host="$(echo ${CHOST} | cut -f "1 3" -d '-')" \
+ --prefix=/usr \
+ --miscdir=/usr/share/doc/${P} \
+ --datadir=/usr/share/${P} \
+ --mandir=/usr/share/man/man1 || die "./configure failed"
+ addwrite "/var/lib/texmf"
+ addwrite "/usr/share/texmf"
+ addwrite "/var/cache/fonts"
+ emake CFLAGS="${CFLAGS} -DGCC_INLINE" gp || die
+ use doc || rm -rf doc/*.tex
+ use doc && emake doc
+}
+
+src_install () {
+ make DESTDIR=${D} install || die
+ dodoc AUTHORS Announce.2.1 CHANGES README TODO
+}