diff options
author | Patrick Kursawe <phosphan@gentoo.org> | 2004-03-15 12:38:05 +0000 |
---|---|---|
committer | Patrick Kursawe <phosphan@gentoo.org> | 2004-03-15 12:38:05 +0000 |
commit | 6d977186ecdf0e354289e12e81edd6f994e4e7bb (patch) | |
tree | e9b51b99ffb2e5bf33a89248dc38fac0ddcd3f2d /app-sci | |
parent | Marked stable for x86. (diff) | |
download | historical-6d977186ecdf0e354289e12e81edd6f994e4e7bb.tar.gz historical-6d977186ecdf0e354289e12e81edd6f994e4e7bb.tar.bz2 historical-6d977186ecdf0e354289e12e81edd6f994e4e7bb.zip |
Fixing bug #29163
Diffstat (limited to 'app-sci')
-rw-r--r-- | app-sci/pari/ChangeLog | 7 | ||||
-rw-r--r-- | app-sci/pari/Manifest | 8 | ||||
-rw-r--r-- | app-sci/pari/files/digest-pari-2.1.5-r1 | 1 | ||||
-rw-r--r-- | app-sci/pari/pari-2.1.5-r1.ebuild | 31 |
4 files changed, 43 insertions, 4 deletions
diff --git a/app-sci/pari/ChangeLog b/app-sci/pari/ChangeLog index fab26a65c049..567ec7fbaf19 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.12 2004/01/28 22:34:48 sediener Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-sci/pari/ChangeLog,v 1.13 2004/03/15 12:38:05 phosphan Exp $ + +*pari-2.1.5-r1 (15 Mar 2004) + + 15 Mar 2004; Patrick Kursawe <phosphan@gentoo.org> pari-2.1.5-r1.ebuild: + Fixing bug #29163. 28 Jan 2004; Stephen Diener <sediener@gentoo.org> pari-2.1.5.ebuild: changed from DEPEND on app-text/tetex to virtual/tetex Bug #38859 diff --git a/app-sci/pari/Manifest b/app-sci/pari/Manifest index 041889ccaf07..34b89c673697 100644 --- a/app-sci/pari/Manifest +++ b/app-sci/pari/Manifest @@ -1,6 +1,8 @@ -MD5 7a7e062815d9dc583da5d94ad204074d files/digest-pari-2.1.4 63 -MD5 ee951aeeb2122fab2aaf9803097fad76 files/digest-pari-2.1.5 63 +MD5 15158fffbdee51c458e76d333f836a00 pari-2.1.5-r1.ebuild 946 MD5 3c709091a589ad70fb52eede5a1b4d80 pari-2.1.5.ebuild 909 -MD5 5b959b9a4df8ccc76b756666853727d0 ChangeLog 1353 +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 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-r1 b/app-sci/pari/files/digest-pari-2.1.5-r1 new file mode 100644 index 000000000000..2e0d53a28384 --- /dev/null +++ b/app-sci/pari/files/digest-pari-2.1.5-r1 @@ -0,0 +1 @@ +MD5 194e9d1cc11926e457028c6a7cba15f0 pari-2.1.5.tar.gz 1540679 diff --git a/app-sci/pari/pari-2.1.5-r1.ebuild b/app-sci/pari/pari-2.1.5-r1.ebuild new file mode 100644 index 000000000000..92fa7d03f282 --- /dev/null +++ b/app-sci/pari/pari-2.1.5-r1.ebuild @@ -0,0 +1,31 @@ +# 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-r1.ebuild,v 1.1 2004/03/15 12:38:05 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" + +DEPEND="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 doc gp || die +} + +src_install () { + make DESTDIR=${D} install || die + dodoc AUTHORS Announce.2.1 CHANGES README TODO +} |