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/dose3: dose3-3.3_beta2-r1.ebuild ChangeLog dose3-3.3_beta2.ebuild
Date: Wed, 29 Oct 2014 08:08:51
Message-Id: 20141029080847.45AD88FCB@oystercatcher.gentoo.org
1 aballier 14/10/29 08:08:47
2
3 Modified: ChangeLog
4 Added: dose3-3.3_beta2-r1.ebuild
5 Removed: dose3-3.3_beta2.ebuild
6 Log:
7 fix build of ocamlopt binaries/libs
8
9 Signed-off-by: aballier@g.o
10 (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
11
12 Revision Changes Path
13 1.2 dev-ml/dose3/ChangeLog
14
15 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/dose3/ChangeLog?rev=1.2&view=markup
16 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/dose3/ChangeLog?rev=1.2&content-type=text/plain
17 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/dose3/ChangeLog?r1=1.1&r2=1.2
18
19 Index: ChangeLog
20 ===================================================================
21 RCS file: /var/cvsroot/gentoo-x86/dev-ml/dose3/ChangeLog,v
22 retrieving revision 1.1
23 retrieving revision 1.2
24 diff -u -r1.1 -r1.2
25 --- ChangeLog 28 Oct 2014 08:29:16 -0000 1.1
26 +++ ChangeLog 29 Oct 2014 08:08:47 -0000 1.2
27 @@ -1,6 +1,12 @@
28 # ChangeLog for dev-ml/dose3
29 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
30 -# $Header: /var/cvsroot/gentoo-x86/dev-ml/dose3/ChangeLog,v 1.1 2014/10/28 08:29:16 aballier Exp $
31 +# $Header: /var/cvsroot/gentoo-x86/dev-ml/dose3/ChangeLog,v 1.2 2014/10/29 08:08:47 aballier Exp $
32 +
33 +*dose3-3.3_beta2-r1 (29 Oct 2014)
34 +
35 + 29 Oct 2014; Alexis Ballier <aballier@g.o> -dose3-3.3_beta2.ebuild,
36 + +dose3-3.3_beta2-r1.ebuild:
37 + fix build of ocamlopt binaries/libs
38
39 *dose3-3.3_beta2 (28 Oct 2014)
40
41
42
43
44 1.1 dev-ml/dose3/dose3-3.3_beta2-r1.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/dose3/dose3-3.3_beta2-r1.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/dose3/dose3-3.3_beta2-r1.ebuild?rev=1.1&content-type=text/plain
48
49 Index: dose3-3.3_beta2-r1.ebuild
50 ===================================================================
51 # Copyright 1999-2014 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/dev-ml/dose3/dose3-3.3_beta2-r1.ebuild,v 1.1 2014/10/29 08:08:47 aballier Exp $
54
55 EAPI=5
56
57 MY_P="${P/_beta/-beta}"
58 DESCRIPTION="Library and a collection of tools to perform la large spectrum of analysis on package repositories"
59 HOMEPAGE="http://dose.gforge.inria.fr/public_html/"
60 SRC_URI="https://gforge.inria.fr/frs/download.php/file/34180/${MY_P}.tar.gz"
61
62 LICENSE="LGPL-3"
63 SLOT="0/${PV}"
64 KEYWORDS="~amd64"
65 IUSE="+ocamlopt +parmap zip bzip2 xml curl rpm4"
66
67 RDEPEND="
68 >=dev-lang/ocaml-3.12:=[ocamlopt?]
69 dev-ml/cudf:=
70 dev-ml/extlib:=
71 dev-ml/ocaml-re:=
72 parmap? ( dev-ml/parmap:= )
73 zip? ( dev-ml/camlzip:= )
74 bzip2? ( dev-ml/camlbz2:= )
75 >=dev-ml/ocamlgraph-1.8.5:=
76 xml? ( || ( dev-ml/ocaml-expat:= dev-ml/xml-light:= ) )
77 curl? ( dev-ml/ocurl:= )
78 rpm4? ( app-arch/rpm )
79 "
80 DEPEND="${RDEPEND}
81 dev-ml/findlib
82 "
83
84 S="${WORKDIR}/${MY_P}"
85
86 src_configure() {
87 econf \
88 $(use ocamlopt || echo "--with-bytecodeonly") \
89 $(use parmap && echo "--with-parmap") \
90 $(use zip && echo "--with-zip") \
91 $(use bzip2 && echo "--with-bz2") \
92 --with-ocamlgraph \
93 $(use xml && echo "--with-xml") \
94 $(use curl && echo "--with-curl") \
95 $(use rpm4 && echo "--with-rpm4")
96 }
97
98 src_compile() {
99 emake -j1
100 }