# Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ inherit eutils DESCRIPTION="C++ library for arithmetic and algebraic computations" HOMEPAGE="http://ljk.imag.fr/CASYS/LOGICIELS/givaro/" # Upstream doesn't name their tarball properly, # the minor number is not included in the name. SRC_URI="http://ljk.imag.fr/CASYS/LOGICIELS/givaro/${PN}-3.2.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~ppc ~x86 ~ppc64" IUSE="" RDEPEND=">=dev-libs/gmp-4.1-r1" DEPEND="${RDEPEND}" src_compile(){ econf "--enable-shared" || die "Configure failed!" emake || die "make failed!" } src_install() { cd ${S} emake DESTDIR="${D}" install || die "Install failed" }