blob: 29de6ffa552deddb354ef11644e4dd7f958fd3a3 (
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
38
39
|
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
DESCRIPTION="Verifying and proving properties on floating-point or fixed-point arithmetic"
HOMEPAGE="http://gappa.gforge.inria.fr/"
SRC_URI="http://gforge.inria.fr/frs/download.php/33486/${P}.tar.gz"
LICENSE="|| ( CeCILL-2.0 GPL-2 )"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc"
RDEPEND="
dev-libs/gmp:0=
dev-libs/mpfr:0=
dev-libs/boost"
DEPEND="${RDEPEND}
doc? ( app-doc/doxygen )"
src_prepare() {
sed -i Remakefile.in \
-e "s:mkdir -p @bindir@:mkdir -p \${DESTDIR}@bindir@:g" \
-e "s:cp src/gappa @bindir@:cp src/gappa \${DESTDIR}@bindir@:g"
}
src_compile() {
./remake -d ${MAKEOPTS} || die "emake failed"
if use doc; then
./remake doc/html/index.html
fi
}
src_install() {
DESTDIR="${D}" ./remake install
dodoc NEWS README AUTHORS ChangeLog
use doc && dohtml -A png -r doc/html/*
}
|