blob: 71295a2520440fa22a395d4551f59881f6afa641 (
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
|
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit desktop multilib
MY_PV=${PV/_p/pl}
MY_P=${PN}-${MY_PV}
DESCRIPTION="Proof assistant written in O'Caml"
HOMEPAGE="http://coq.inria.fr/"
SRC_URI="https://github.com/coq/coq/archive/V${MY_PV}.tar.gz -> ${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE="gtk debug +ocamlopt doc"
RESTRICT=test
RDEPEND="
dev-ml/camlp5:=[ocamlopt?]
|| (
dev-ml/num
<dev-lang/ocaml-4.09.0[ocamlopt?]
)
gtk? (
dev-ml/lablgtk:3=[sourceview,ocamlopt?]
dev-ml/lablgtk-sourceview:3=[ocamlopt?]
)"
DEPEND="${RDEPEND}
dev-ml/findlib
doc? (
media-libs/netpbm[png,postscript(+),zlib(+)]
virtual/latex-base
dev-tex/hevea
dev-texlive/texlive-latexrecommended
dev-texlive/texlive-pictures
dev-texlive/texlive-mathscience
dev-texlive/texlive-latexextra
)"
S=${WORKDIR}/${MY_P}
src_configure() {
ocaml_lib=$(ocamlc -where)
local myconf=(
-prefix /usr
-bindir /usr/bin
-libdir /usr/$(get_libdir)/coq
-mandir /usr/share/man
-coqdocdir /usr/$(get_libdir)/coq/coqdoc
-docdir /usr/share/doc/${PF}
-configdir /etc/xdg/${PN}
)
use debug && myconf+=( -debug )
use doc || myconf+=( -with-doc no )
if use gtk; then
if use ocamlopt; then
myconf+=( -coqide opt )
else
myconf+=( -coqide byte )
fi
else
myconf+=( -coqide no )
fi
use ocamlopt || myconf+=( -byte-only )
export CAML_LD_LIBRARY_PATH="${S}/kernel/byterun/"
./configure ${myconf[@]} || die "configure failed"
}
src_compile() {
emake STRIP="true" -j1 world VERBOSE=1
}
src_test() {
emake STRIP="true" check VERBOSE=1
}
src_install() {
emake STRIP="true" COQINSTALLPREFIX="${D}" install -j1 VERBOSE=1
dodoc README.md CREDITS
use gtk && make_desktop_entry "coqide" "Coq IDE" "${EPREFIX}/usr/share/coq/coq.png"
}
|