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: ChangeLog dose3-3.3_beta2-r2.ebuild dose3-3.3_beta2-r1.ebuild
Date: Wed, 29 Oct 2014 09:11:14
Message-Id: 20141029091111.2274C8FD5@oystercatcher.gentoo.org
1 aballier 14/10/29 09:11:11
2
3 Modified: ChangeLog
4 Added: dose3-3.3_beta2-r2.ebuild
5 Removed: dose3-3.3_beta2-r1.ebuild
6 Log:
7 do not prestrip files
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.3 dev-ml/dose3/ChangeLog
14
15 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/dose3/ChangeLog?rev=1.3&view=markup
16 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/dose3/ChangeLog?rev=1.3&content-type=text/plain
17 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/dose3/ChangeLog?r1=1.2&r2=1.3
18
19 Index: ChangeLog
20 ===================================================================
21 RCS file: /var/cvsroot/gentoo-x86/dev-ml/dose3/ChangeLog,v
22 retrieving revision 1.2
23 retrieving revision 1.3
24 diff -u -r1.2 -r1.3
25 --- ChangeLog 29 Oct 2014 08:08:47 -0000 1.2
26 +++ ChangeLog 29 Oct 2014 09:11:11 -0000 1.3
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.2 2014/10/29 08:08:47 aballier Exp $
31 +# $Header: /var/cvsroot/gentoo-x86/dev-ml/dose3/ChangeLog,v 1.3 2014/10/29 09:11:11 aballier Exp $
32 +
33 +*dose3-3.3_beta2-r2 (29 Oct 2014)
34 +
35 + 29 Oct 2014; Alexis Ballier <aballier@g.o> -dose3-3.3_beta2-r1.ebuild,
36 + +dose3-3.3_beta2-r2.ebuild:
37 + do not prestrip files
38
39 *dose3-3.3_beta2-r1 (29 Oct 2014)
40
41
42
43
44 1.1 dev-ml/dose3/dose3-3.3_beta2-r2.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/dose3/dose3-3.3_beta2-r2.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/dose3/dose3-3.3_beta2-r2.ebuild?rev=1.1&content-type=text/plain
48
49 Index: dose3-3.3_beta2-r2.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-r2.ebuild,v 1.1 2014/10/29 09:11:11 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_prepare() {
87 sed -e 's/INSTALLOPTS=-s/INSTALLOPTS=/' -i Makefile.config.in || die
88 }
89
90 src_configure() {
91 econf \
92 $(use ocamlopt || echo "--with-bytecodeonly") \
93 $(use parmap && echo "--with-parmap") \
94 $(use zip && echo "--with-zip") \
95 $(use bzip2 && echo "--with-bz2") \
96 --with-ocamlgraph \
97 $(use xml && echo "--with-xml") \
98 $(use curl && echo "--with-curl") \
99 $(use rpm4 && echo "--with-rpm4")
100 }
101
102 src_compile() {
103 emake -j1
104 }