summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorge Shapovalov <george@gentoo.org>2003-04-19 08:59:47 +0000
committerGeorge Shapovalov <george@gentoo.org>2003-04-19 08:59:47 +0000
commit4da9edd819cff5231220c5a15ea015b74490631d (patch)
treee2ef3434390cc27f853508a27478a0015c351143 /app-sci/maxima
parenta license for Arms Export Control Act clause (diff)
downloadgentoo-2-4da9edd819cff5231220c5a15ea015b74490631d.tar.gz
gentoo-2-4da9edd819cff5231220c5a15ea015b74490631d.tar.bz2
gentoo-2-4da9edd819cff5231220c5a15ea015b74490631d.zip
new ebuild - a Computer Algebra System
Diffstat (limited to 'app-sci/maxima')
-rw-r--r--app-sci/maxima/files/digest-maxima-5.9.01
-rw-r--r--app-sci/maxima/maxima-5.9.0.ebuild31
2 files changed, 32 insertions, 0 deletions
diff --git a/app-sci/maxima/files/digest-maxima-5.9.0 b/app-sci/maxima/files/digest-maxima-5.9.0
new file mode 100644
index 000000000000..ca2a7e39dc79
--- /dev/null
+++ b/app-sci/maxima/files/digest-maxima-5.9.0
@@ -0,0 +1 @@
+MD5 a1d6d6ed6afb0eebf03df865c0a19f19 maxima-5.9.0.tar.gz 7116131
diff --git a/app-sci/maxima/maxima-5.9.0.ebuild b/app-sci/maxima/maxima-5.9.0.ebuild
new file mode 100644
index 000000000000..9a30eb28d607
--- /dev/null
+++ b/app-sci/maxima/maxima-5.9.0.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2003 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/app-sci/maxima/maxima-5.9.0.ebuild,v 1.1 2003/04/19 08:59:47 george Exp $
+
+DESCRIPTION="Free computer algebra environment, based on Macsyma"
+HOMEPAGE="http://maxima.sourceforge.net/"
+SRC_URI="http://dl.sourceforge.net/sourceforge/maxima/maxima-${PV}.tar.gz"
+
+LICENSE="GPL-2 AECA"
+SLOT="0"
+KEYWORDS="~x86 ~ppc ~sparc ~sparc64 ~alpha"
+
+IUSE=""
+DEPEND=">=dev-lisp/clisp-2.29
+ >=sys-apps/texinfo-4.3"
+RDEPEND=">=dev-lang/tk-8.3.3"
+
+S=${WORKDIR}/${P}
+
+src_compile() {
+ econf
+ emake || die
+}
+
+src_install() {
+ make DESTDIR=${D} install || die
+
+ #move docs to the appropriate place
+ dodoc AUTHORS ChangeLog COPYING COPYING1 NEWS README*
+ mv ${D}/usr/share/${PN}/${PV}/doc/* ${D}/usr/share/doc/${PF}/
+}