aboutsummaryrefslogtreecommitdiff
blob: 60c0c6ffaed28acb7e063d66dca7869798092c48 (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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: Exp $

inherit autotools eutils

DESCRIPTION="Why is a software verification platform."
HOMEPAGE="http://why.lri.fr/"
SRC_URI="http://why.lri.fr/download/${P}.tar.gz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc ~x86"

IUSE="apron coq doc examples gappa gtk pff pvs"

RDEPEND="apron? ( sci-mathematics/apron )
	coq? ( sci-mathematics/coq )
	gappa? ( sci-mathematics/gappalib-coq )
	pff? ( sci-mathematics/pff )
	pvs? ( sci-mathematics/pvs )"

DEPEND="${RDEPEND}
	>=dev-lang/ocaml-3.09
	>=dev-ml/ocamlgraph-1.1
	gtk? ( >=dev-ml/lablgtk-2.12 )"

src_unpack() {
	unpack ${A}
	cd ${S}

	epatch "${FILESDIR}/${P}-makefile_sandbox.patch"

	mv jc/jc_ast.mli jc/jc_ast.ml
	mv jc/jc_env.mli jc/jc_env.ml
	epatch "${FILESDIR}/${P}-jessie_lib.patch"

	#to build with apron-0.9.10
	sed -i configure.in \
		-e "s/oct_caml/octMPQ_caml/g" \
		-e "s/box_caml/boxMPQ_caml/g" \
		-e "s/polka_caml/polkaMPQ_caml/g"

	eautoreconf
}

src_compile(){
	econf $(use_enable apron) PATH="/usr/bin:$PATH" || die "econf failed"
	emake DESTDIR="/" || die "emake failed"
}

src_install(){
	emake install DESTDIR="${D}" || die "emake install failed"
	dodoc CHANGES COPYING README Version
	doman doc/why.1

	if use doc; then
		dodoc doc/manual.ps
	fi

	if use examples; then
		insinto /usr/share/doc/${PF}
		doins -r examples examples-c
	fi
}