summaryrefslogtreecommitdiff
blob: 1e9c8af7c7b37219bc08f82eeb98d6c345f9ebf2 (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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/mathomatic/mathomatic-15.6.0.ebuild,v 1.1 2011/05/03 16:29:31 bicatali Exp $

EAPI=4
inherit eutils toolchain-funcs

DESCRIPTION="Automatic algebraic manipulator"
HOMEPAGE="http://www.mathomatic.org/"
SRC_URI="${HOMEPAGE}/archive/${P}.tar.bz2"

LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="doc gnuplot"

DEPEND="sys-libs/readline
	sys-libs/ncurses"
RDEPEND="${DEPEND}
	gnuplot? ( sci-visualization/gnuplot )"

src_prepare() {
	sed -i -e 's/time -p//g' makefile primes/makefile || die
}

src_compile() {
	emake READLINE=1 CC=$(tc-getCC)
	emake CC=$(tc-getCC) -C primes
}

src_test() {
	emake test
	emake -C primes test
}

src_install() {
	dobin mathomatic
	dobin primes/matho-{mult,primes,pascal,sumsq} primes/primorial
	dodoc changes.txt README.txt AUTHORS
	doman mathomatic.1 primes/*.1
	doicon icons/mathomatic.png
	domenu icons/mathomatic.desktop
	newdoc primes/README.txt README-primes.txt
	if use doc; then
		dohtml doc/*
		insinto /usr/share/doc/${PF}
		doins -r tests examples m4
	fi
}