blob: 8c352215a4897e957a31fa5efe98dfb93707bada (
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
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ml/bin-prot/bin-prot-1.3.0.ebuild,v 1.2 2011/02/22 16:06:36 aballier Exp $
EAPI=3
EAPI="2"
inherit findlib eutils multilib
DESCRIPTION="A binary protocol generator"
HOMEPAGE="http://ocaml.janestreet.com/?q=node/13"
SRC_URI="http://www.janestreet.com/ocaml/bin_prot-${PV}.tar.gz"
LICENSE="LGPL-2.1-linking-exception"
SLOT="0"
KEYWORDS="~amd64"
IUSE="debug doc +ocamlopt"
RDEPEND=">=dev-lang/ocaml-3.11[ocamlopt?]
dev-ml/findlib
>=dev-ml/ounit-1.0.2
>=dev-ml/type-conv-2.0.1"
DEPEND="${RDEPEND}
>=dev-ml/ounit-1.0.2
doc? ( virtual/latex-base )"
S=${WORKDIR}/${PN}
oasis_use_enable() {
echo "--override $2 `use $1 && echo \"true\" || echo \"false\"`"
}
src_configure() {
./configure --prefix usr \
--libdir /usr/$(get_libdir) \
--destdir "${D}" \
$(oasis_use_enable debug debug) \
$(oasis_use_enable ocamlopt is_native) \
|| die
}
src_compile() {
emake || die
if use doc ; then
cd "${S}/doc"
pdflatex README || die
pdflatex README || die
fi
}
src_test() {
LD_LIBRARY_PATH="${S}/_build/lib" emake test || die
}
src_install() {
findlib_src_install
dodoc README Changelog || die
if use doc; then
dodoc doc/README.pdf || die
fi
}
|