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/camlzip: ChangeLog camlzip-1.04.ebuild
Date: Sun, 21 Jun 2009 12:43:30
Message-Id: E1MIMOP-0004DV-5X@stork.gentoo.org
1 aballier 09/06/21 12:43:29
2
3 Modified: ChangeLog
4 Added: camlzip-1.04.ebuild
5 Log:
6 version bump
7 (Portage version: 2.2_rc33/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.16 dev-ml/camlzip/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/camlzip/ChangeLog?rev=1.16&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/camlzip/ChangeLog?rev=1.16&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/camlzip/ChangeLog?r1=1.15&r2=1.16
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-ml/camlzip/ChangeLog,v
19 retrieving revision 1.15
20 retrieving revision 1.16
21 diff -u -r1.15 -r1.16
22 --- ChangeLog 21 Jun 2009 12:35:21 -0000 1.15
23 +++ ChangeLog 21 Jun 2009 12:43:29 -0000 1.16
24 @@ -1,6 +1,11 @@
25 # ChangeLog for dev-ml/camlzip
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-ml/camlzip/ChangeLog,v 1.15 2009/06/21 12:35:21 aballier Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-ml/camlzip/ChangeLog,v 1.16 2009/06/21 12:43:29 aballier Exp $
29 +
30 +*camlzip-1.04 (21 Jun 2009)
31 +
32 + 21 Jun 2009; Alexis Ballier <aballier@g.o> +camlzip-1.04.ebuild:
33 + version bump
34
35 21 Jun 2009; Alexis Ballier <aballier@g.o> camlzip-1.03-r1.ebuild:
36 define eapi before inherit and assign rdepend explicitly
37
38
39
40 1.1 dev-ml/camlzip/camlzip-1.04.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/camlzip/camlzip-1.04.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/camlzip/camlzip-1.04.ebuild?rev=1.1&content-type=text/plain
44
45 Index: camlzip-1.04.ebuild
46 ===================================================================
47 # Copyright 1999-2009 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/dev-ml/camlzip/camlzip-1.04.ebuild,v 1.1 2009/06/21 12:43:29 aballier Exp $
50
51 EAPI="2"
52
53 inherit findlib eutils
54
55 IUSE="+ocamlopt"
56
57 DESCRIPTION="Compressed file access ML library (ZIP, GZIP and JAR)"
58 HOMEPAGE="http://cristal.inria.fr/~xleroy/software.html#camlzip"
59 SRC_URI="http://caml.inria.fr/distrib/bazar-ocaml/${P}.tar.gz"
60
61 SLOT="1"
62 LICENSE="LGPL-2.1"
63 KEYWORDS="~amd64 ~ppc ~x86 ~x86-fbsd"
64
65 RDEPEND=">=dev-lang/ocaml-3.10.2[ocamlopt?]
66 >=sys-libs/zlib-1.1.3"
67 DEPEND="${RDEPEND}"
68
69 src_prepare() {
70 epatch "${FILESDIR}/${PN}-1.03-Makefile-findlib.patch"
71 sed -e "s/VERSION/${PV}/" "${FILESDIR}/META" >> META
72 }
73
74 src_compile() {
75 emake all || die "Failed at compilation step !!!"
76 if use ocamlopt; then
77 emake allopt || die "Failed at ML compilation step !!!"
78 fi
79 }
80
81 src_install() {
82 findlib_src_install
83
84 dodoc README Changes
85 }