blob: 5c4885899d8e57bd8c959b093d238e6311497ea8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# Copyright 1999-2004 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.6 2004/04/19 11:37:58 phosphan Exp $
DESCRIPTION="Free computer algebra environment, based on Macsyma"
HOMEPAGE="http://maxima.sourceforge.net/"
SRC_URI="mirror://sourceforge/maxima/maxima-${PV}.tar.gz"
LICENSE="GPL-2 AECA"
SLOT="0"
IUSE=""
KEYWORDS="x86 ~ppc"
DEPEND=">=dev-lisp/clisp-2.29
>=sys-apps/texinfo-4.3"
RDEPEND=">=dev-lang/tk-8.3.3"
src_compile() {
econf || die
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}/
}
|