blob: c2a36fc2df5c459f162dd65f15e4f7de37e41d33 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/mathomatic/mathomatic-12.4.5.ebuild,v 1.1 2005/07/26 22:54:09 cryos Exp $
inherit eutils
DESCRIPTION="Automatic algebraic manipulator"
HOMEPAGE="http://www.mathomatic.com/"
SRC_URI="http://www.panix.com/~gesslein/${P}.tgz"
LICENSE="LGPL-2"
SLOT="0"
KEYWORDS="~x86 ~amd64 ~ppc"
IUSE="icc"
DEPEND="sys-libs/readline
sys-libs/ncurses
icc? ( dev-lang/icc )"
src_compile() {
if use icc; then
CC="icc" CFLAGS="-O3 -axKWNBP -ipo" LDFLAGS="-O3 -axKWNBP -ipo -limf" emake || die "emake failed"
else
emake || die "emake failed"
fi
}
src_install() {
einstall || die "einstall failed."
dodoc changes.txt README.txt
dodir /usr/share/doc/${PF}/examples
insinto /usr/share/doc/${PF}/examples
doins tests/*in
dohtml ${D}/usr/doc/mathomatic/*.htm
rm -rf ${D}/usr/doc/mathomatic
}
|