diff options
Diffstat (limited to 'sci-mathematics/ginac/ginac-1.1.3.ebuild')
-rw-r--r-- | sci-mathematics/ginac/ginac-1.1.3.ebuild | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/sci-mathematics/ginac/ginac-1.1.3.ebuild b/sci-mathematics/ginac/ginac-1.1.3.ebuild new file mode 100644 index 000000000000..ffcc64db14d1 --- /dev/null +++ b/sci-mathematics/ginac/ginac-1.1.3.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/ginac/ginac-1.1.3.ebuild,v 1.1 2004/12/28 05:33:41 ribosome 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 "econf failed" + emake || die +} + +src_install() { + make DESTDIR=${D} install || die +} |