blob: e093e96a163a236c03edfeffb2a3c57bbbe57e62 (
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 Foundation
# 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.8 2004/08/25 02:15:13 swegener Exp $
DESCRIPTION="Free computer algebra environment, based on Macsyma"
HOMEPAGE="http://maxima.sourceforge.net/"
SRC_URI="mirror://sourceforge/maxima/${P}.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}/
}
|