blob: 6aef540890e5cfb83541ddc40cf8a9e77bfc5d7c (
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
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
DESCRIPTION="Allows the certificates Gappa generates to be imported by the Coq"
HOMEPAGE="http://gappa.gforge.inria.fr/"
SRC_URI="http://gforge.inria.fr/frs/download.php/32743/${P}.tar.gz"
LICENSE="LGPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="sci-mathematics/gappa
sci-mathematics/coq
sci-mathematics/flocq"
RDEPEND="${DEPEND}"
src_prepare() {
sed -i Remakefile.in \
-e "s:mkdir -p @libdir@:mkdir -p \${DESTDIR}@libdir@:g" \
-e "s:cp \$(OBJS) \$(MLTARGETS) @libdir@:cp \$(OBJS) \$(MLTARGETS) \${DESTDIR}@libdir@:g"
}
src_compile() {
./remake || die "emake failed"
}
src_install() {
DESTDIR="${D}" ./remake install || die "emake install failed"
dodoc NEWS README AUTHORS ChangeLog
}
|