# Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: Exp $ DESCRIPTION="A tool intended to help verifying and formally proving properties on numerical programs dealing with floating-point or fixed-point arithmetic." HOMEPAGE="http://lipforge.ens-lyon.fr/www/gappa/" SRC_URI="http://lipforge.ens-lyon.fr/frs/download.php/150/${P}.tar.gz" LICENSE="CeCILL GPL-2" SLOT="0" KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~sparc ~x86" IUSE="" RDEPEND="dev-libs/gmp dev-libs/mpfr dev-libs/boost" DEPEND="${RDEPEND}" src_unpack() { unpack ${A} cd "${S}" } src_compile(){ econf || die "econf failed" emake DESTDIR="/" || die "emake failed" } src_install(){ emake install DESTDIR="${D}" || die "emake install failed" }