diff options
author | George Shapovalov <george@gentoo.org> | 2002-12-15 23:07:28 +0000 |
---|---|---|
committer | George Shapovalov <george@gentoo.org> | 2002-12-15 23:07:28 +0000 |
commit | 61acc923cad47b08efd3290679591ec1b5d73a1c (patch) | |
tree | d844517a1c086374eca55878e51771204cd5c633 /app-sci/pariguide | |
parent | fixups to prelink (diff) | |
download | historical-61acc923cad47b08efd3290679591ec1b5d73a1c.tar.gz historical-61acc923cad47b08efd3290679591ec1b5d73a1c.tar.bz2 historical-61acc923cad47b08efd3290679591ec1b5d73a1c.zip |
new package - a gui frontend for app-sci/pari
Diffstat (limited to 'app-sci/pariguide')
-rw-r--r-- | app-sci/pariguide/ChangeLog | 10 | ||||
-rw-r--r-- | app-sci/pariguide/files/digest-pariguide-0.43a | 1 | ||||
-rw-r--r-- | app-sci/pariguide/pariguide-0.43a.ebuild | 39 |
3 files changed, 50 insertions, 0 deletions
diff --git a/app-sci/pariguide/ChangeLog b/app-sci/pariguide/ChangeLog new file mode 100644 index 000000000000..8d409af1b159 --- /dev/null +++ b/app-sci/pariguide/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for app-sci/pariguide +# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL +# $Header: /var/cvsroot/gentoo-x86/app-sci/pariguide/ChangeLog,v 1.1 2002/12/15 23:07:28 george Exp $ + +*pariguide-0.43a.ebuild (15 äÅË 2002) + + 15 Dec 2002; George Shapovalov <george@gentoo.org> ChangeLog, pariguide-0.43a.ebuild, files/digest-pariguide-0.43a : + initial release + PariGUIde, a GUI for the math. program Pari-GP + ebuild submitted by diff --git a/app-sci/pariguide/files/digest-pariguide-0.43a b/app-sci/pariguide/files/digest-pariguide-0.43a new file mode 100644 index 000000000000..800067d4e562 --- /dev/null +++ b/app-sci/pariguide/files/digest-pariguide-0.43a @@ -0,0 +1 @@ +MD5 3329ed8ab5e941588f9ea5d4f80f4f04 pariguide-0.43a.tar.gz 585245 diff --git a/app-sci/pariguide/pariguide-0.43a.ebuild b/app-sci/pariguide/pariguide-0.43a.ebuild new file mode 100644 index 000000000000..c9a958e02d8d --- /dev/null +++ b/app-sci/pariguide/pariguide-0.43a.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-sci/pariguide/pariguide-0.43a.ebuild,v 1.1 2002/12/15 23:07:28 george Exp $ + +IUSE="" + +DESCRIPTION="PariGUIde, a GUI for the math. program Pari-GP" +HOMEPAGE="http://www.skalatan.de/pariguide/" +SRC_URI="ftp://ftp.sourceforge.net/pub/sourceforge/pariguide/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" + +DEPEND=">=qt-2.2.0 + virtual/x11" + +RDEPEND=">=pari-2.1.0" + +S="${WORKDIR}/${P}" + +src_compile() { + #./configure \ + # --host=${CHOST} \ + econf || die "configure failed" + emake || die +} + +src_install() { + make DESTDIR=${D} install || die + + #weiderly make install does not make the main binary executable + chmod a+x ${D}/usr/bin/pariguide + + #make install does not honor docdir seting, have to move things manually + dodoc AUTHORS COPYING README TODO + mv ${D}/usr/doc/${PN}/html ${D}/usr/share/doc/${PF} + rm -rf ${D}/usr/doc/ +} |