Gentoo Archives: gentoo-commits

From: "Alexis Ballier (aballier)" <aballier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-ml/js_of_ocaml: ChangeLog js_of_ocaml-2.5-r1.ebuild
Date: Mon, 01 Dec 2014 10:25:36
Message-Id: 20141201102533.4FCB5B479@oystercatcher.gentoo.org
1 aballier 14/12/01 10:25:33
2
3 Modified: ChangeLog
4 Added: js_of_ocaml-2.5-r1.ebuild
5 Log:
6 add missing dep
7
8 Signed-off-by: aballier@g.o
9 (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
10
11 Revision Changes Path
12 1.8 dev-ml/js_of_ocaml/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/js_of_ocaml/ChangeLog?rev=1.8&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/js_of_ocaml/ChangeLog?rev=1.8&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/js_of_ocaml/ChangeLog?r1=1.7&r2=1.8
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/dev-ml/js_of_ocaml/ChangeLog,v
21 retrieving revision 1.7
22 retrieving revision 1.8
23 diff -u -r1.7 -r1.8
24 --- ChangeLog 1 Dec 2014 09:50:16 -0000 1.7
25 +++ ChangeLog 1 Dec 2014 10:25:33 -0000 1.8
26 @@ -1,6 +1,11 @@
27 # ChangeLog for dev-ml/js_of_ocaml
28 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/dev-ml/js_of_ocaml/ChangeLog,v 1.7 2014/12/01 09:50:16 aballier Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/dev-ml/js_of_ocaml/ChangeLog,v 1.8 2014/12/01 10:25:33 aballier Exp $
31 +
32 +*js_of_ocaml-2.5-r1 (01 Dec 2014)
33 +
34 + 01 Dec 2014; Alexis Ballier <aballier@g.o> +js_of_ocaml-2.5-r1.ebuild:
35 + add missing dep
36
37 *js_of_ocaml-2.5 (01 Dec 2014)
38
39
40
41
42 1.1 dev-ml/js_of_ocaml/js_of_ocaml-2.5-r1.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/js_of_ocaml/js_of_ocaml-2.5-r1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/js_of_ocaml/js_of_ocaml-2.5-r1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: js_of_ocaml-2.5-r1.ebuild
48 ===================================================================
49 # Copyright 1999-2014 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-ml/js_of_ocaml/js_of_ocaml-2.5-r1.ebuild,v 1.1 2014/12/01 10:25:33 aballier Exp $
52
53 EAPI=5
54
55 inherit findlib
56
57 DESCRIPTION="A compiler from OCaml bytecode to javascript"
58 HOMEPAGE="http://ocsigen.org/js_of_ocaml/"
59 SRC_URI="https://github.com/ocsigen/js_of_ocaml/archive/${PV}.tar.gz -> ${P}.tar.gz"
60
61 LICENSE="LGPL-2.1-with-linking-exception"
62 SLOT="0/${PV}"
63 KEYWORDS="~amd64"
64 IUSE="+ocamlopt doc +deriving"
65
66 DEPEND=">=dev-lang/ocaml-3.12:=[ocamlopt?]
67 >=dev-ml/lwt-2.4.0:=
68 dev-ml/react:=
69 dev-ml/reactiveData:=
70 >=dev-ml/tyxml-3.3:=
71 dev-ml/cmdliner:=
72 dev-ml/menhir:=
73 || ( dev-ml/camlp4:= <dev-lang/ocaml-4.02.0 )
74 deriving? ( >=dev-ml/deriving-0.6:= )"
75 RDEPEND="${DEPEND}"
76
77 src_configure() {
78 use ocamlopt || echo "BEST := byte" >> Makefile.conf
79 use deriving || echo "WITH_DERIVING := NO" >> Makefile.conf
80 }
81
82 src_compile() {
83 emake -j1
84 use doc && emake doc
85 }
86
87 src_install() {
88 findlib_src_preinst
89 emake BINDIR="${ED}/usr/bin/" install
90 dodoc CHANGES README.md
91 use doc && dohtml -r doc/api/html/
92 }