blob: 5676e1239047c6c7ff0bc5bd6a8669b7d6d082ad (
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
|
# 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.4.4.ebuild,v 1.1 2011/02/23 20:37:19 bicatali Exp $
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_compile() {
emake READLINE=1 CC=$(tc-getCC) || die "emake failed"
emake CC=$(tc-getCC) -C primes || die "emake in primes failed"
}
src_test() {
emake test || die "emake test failed"
emake -C primes test || die "emake test in primes failed"
}
src_install() {
dobin mathomatic || die
dobin primes/matho-{mult,primes,pascal,sumsq} primes/primorial || die
dodoc changes.txt README.txt AUTHORS
doman mathomatic.1 primes/*.1 || die
doicon icons/mathomatic.png || die
domenu icons/mathomatic.desktop || die
newdoc primes/README.txt README-primes.txt || die
if use doc; then
dohtml doc/* || die
insinto /usr/share/doc/${PF}
doins -r tests factorial m4 || die
fi
}
|