forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
js_of_ocaml-2.5-r1.ebuild
44 lines (36 loc) · 1.01 KB
/
js_of_ocaml-2.5-r1.ebuild
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
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
inherit findlib
DESCRIPTION="A compiler from OCaml bytecode to javascript"
HOMEPAGE="http://ocsigen.org/js_of_ocaml/"
SRC_URI="https://github.com/ocsigen/js_of_ocaml/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="LGPL-2.1-with-linking-exception"
SLOT="0/${PV}"
KEYWORDS="~amd64"
IUSE="+ocamlopt doc +deriving"
DEPEND=">=dev-lang/ocaml-3.12:=[ocamlopt?]
>=dev-ml/lwt-2.4.0:=
dev-ml/react:=
dev-ml/reactiveData:=
>=dev-ml/tyxml-3.3:=
dev-ml/cmdliner:=
dev-ml/menhir:=
|| ( dev-ml/camlp4:= <dev-lang/ocaml-4.02.0 )
deriving? ( >=dev-ml/deriving-0.6:= )"
RDEPEND="${DEPEND}"
src_configure() {
use ocamlopt || echo "BEST := byte" >> Makefile.conf
use deriving || echo "WITH_DERIVING := NO" >> Makefile.conf
}
src_compile() {
emake -j1
use doc && emake doc
}
src_install() {
findlib_src_preinst
emake BINDIR="${ED}/usr/bin/" install
dodoc CHANGES README.md
use doc && dohtml -r doc/api/html/
}