diff options
author | Olivier Fisette <ribosome@gentoo.org> | 2004-12-28 21:51:31 +0000 |
---|---|---|
committer | Olivier Fisette <ribosome@gentoo.org> | 2004-12-28 21:51:31 +0000 |
commit | 41bb40eb94bc032cf016c602860f4e5195d7480e (patch) | |
tree | a10707413a131988f4befc81d0ad95690f1c780b /sci-mathematics | |
parent | Change encoding to UTF-8 for GLEP 31 compliance (Manifest recommit) (diff) | |
download | gentoo-2-41bb40eb94bc032cf016c602860f4e5195d7480e.tar.gz gentoo-2-41bb40eb94bc032cf016c602860f4e5195d7480e.tar.bz2 gentoo-2-41bb40eb94bc032cf016c602860f4e5195d7480e.zip |
Moved from app-sci/pariguide to sci-mathematics/pariguide.
Diffstat (limited to 'sci-mathematics')
-rw-r--r-- | sci-mathematics/pariguide/ChangeLog | 27 | ||||
-rw-r--r-- | sci-mathematics/pariguide/Manifest | 4 | ||||
-rw-r--r-- | sci-mathematics/pariguide/files/digest-pariguide-0.43a | 1 | ||||
-rw-r--r-- | sci-mathematics/pariguide/metadata.xml | 5 | ||||
-rw-r--r-- | sci-mathematics/pariguide/pariguide-0.43a.ebuild | 30 |
5 files changed, 67 insertions, 0 deletions
diff --git a/sci-mathematics/pariguide/ChangeLog b/sci-mathematics/pariguide/ChangeLog new file mode 100644 index 000000000000..ca9ead7034f6 --- /dev/null +++ b/sci-mathematics/pariguide/ChangeLog @@ -0,0 +1,27 @@ +# ChangeLog for app-sci/pariguide +# Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/pariguide/ChangeLog,v 1.1 2004/12/28 21:51:31 ribosome Exp $ + +*pariguide-0.43a (28 Dec 2004) + + 28 Dec 2004; Olivier Fisette <ribosome@gentoo.org> +metadata.xml, + +pariguide-0.43a.ebuild: + Moved from app-sci/pariguide to sci-mathematics/pariguide. + + 05 May 2004; Bryan Østergaard <kloeri@gentoo.org> pariguide-0.43a.ebuild: + Stable on alpha. + + 23 Mar 2004; Joshua Kinard <kumba@gentoo.org> pariguide-0.43a.ebuild: + This package has a qt dep, and for mips, qt needs some testing and issues + resolved first, removing keyword until then. + +*pariguide-0.43a (15 Feb 2002) + + 12 Feb 2003; Seemant Kulleen <seemant@gentoo.org> pariguide-0.43.ebuild : + + Added other arches to testing. + + 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/sci-mathematics/pariguide/Manifest b/sci-mathematics/pariguide/Manifest new file mode 100644 index 000000000000..8620d0283c01 --- /dev/null +++ b/sci-mathematics/pariguide/Manifest @@ -0,0 +1,4 @@ +MD5 99426f2b8ab410e25802a7bae2cb9ea6 pariguide-0.43a.ebuild 879 +MD5 7306698441d49c4b31c60e46ce79ac8a ChangeLog 853 +MD5 8c623e53daafa025137077c6b65815bd metadata.xml 156 +MD5 634bbf3664aaa81da8769398869b914f files/digest-pariguide-0.43a 67 diff --git a/sci-mathematics/pariguide/files/digest-pariguide-0.43a b/sci-mathematics/pariguide/files/digest-pariguide-0.43a new file mode 100644 index 000000000000..800067d4e562 --- /dev/null +++ b/sci-mathematics/pariguide/files/digest-pariguide-0.43a @@ -0,0 +1 @@ +MD5 3329ed8ab5e941588f9ea5d4f80f4f04 pariguide-0.43a.tar.gz 585245 diff --git a/sci-mathematics/pariguide/metadata.xml b/sci-mathematics/pariguide/metadata.xml new file mode 100644 index 000000000000..b229aec85b8f --- /dev/null +++ b/sci-mathematics/pariguide/metadata.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>sci</herd> +</pkgmetadata> diff --git a/sci-mathematics/pariguide/pariguide-0.43a.ebuild b/sci-mathematics/pariguide/pariguide-0.43a.ebuild new file mode 100644 index 000000000000..5ceb35c7181f --- /dev/null +++ b/sci-mathematics/pariguide/pariguide-0.43a.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/pariguide/pariguide-0.43a.ebuild,v 1.1 2004/12/28 21:51:31 ribosome Exp $ + +IUSE="" + +DESCRIPTION="PariGUIde, a GUI for the math. program Pari-GP" +HOMEPAGE="http://www.skalatan.de/pariguide/" +SRC_URI="mirror://sourceforge/pariguide/${P}.tar.gz" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="x86 ~ppc ~sparc alpha ~hppa" + +DEPEND=">=x11-libs/qt-2.2.0 + virtual/x11" + +RDEPEND=">=sci-mathematics/pari-2.1.0" + +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/ +} |