blob: ac483f936afe23946a1c00182ee4cd98c95cdd9e (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/mathomatic/mathomatic-12.9.1.ebuild,v 1.3 2008/05/17 18:02:10 nixnut Exp $
inherit eutils
DESCRIPTION="Automatic algebraic manipulator"
HOMEPAGE="http://www.mathomatic.com/"
SRC_URI="http://www.panix.com/~gesslein/${P}.tar.bz2"
LICENSE="LGPL-2"
SLOT="0"
KEYWORDS="~amd64 ppc ~x86"
IUSE="doc"
DEPEND="sys-libs/readline
sys-libs/ncurses"
src_compile() {
# respect user flags
sed -i \
-e '/^CFLAGS/ s/-O.//' \
-e '/^LDFLAGS/s/+= -lm/:= -lm $(LDFLAGS)/' \
makefile primes/makefile || die "sed failed"
emake READLINE=1 || die "emake failed"
emake -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() {
# It was easier just to install the files manually
dobin mathomatic primes/matho-{primes,pascal,sumsq} || die
dodoc changes.txt README.txt AUTHORS || die
doman mathomatic.1 primes/*.1 || die
doicon mathomatic.png || die
domenu 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
}
|