blob: d812c5029e580ab0f7e0582aaac0efbda0bef107 (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-sci/ginac/ginac-1.0.9.ebuild,v 1.3 2002/12/09 04:17:43 manson Exp $
IUSE=""
inherit flag-o-matic
Name="GiNaC"
S=${WORKDIR}/${Name}-${PV}
DESCRIPTION="GiNaC : a free CAS (computer algebra system)"
SRC_URI="ftp://ftpthep.physik.uni-mainz.de/pub/GiNaC/${Name}-${PV}.tar.bz2"
HOMEPAGE="http://www.ginac.de/"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ~ppc ~sparc "
DEPEND="dev-libs/cln"
src_compile() {
filter-flags "-funroll-loops -frerun-loop-opt"
econf || die "./configure failed"
emake || die
}
src_install () {
make DESTDIR=${D} install || die
}
|