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/camomile: ChangeLog camomile-0.7.2.ebuild
Date: Sun, 21 Jun 2009 11:48:33
Message-Id: E1MILXC-0000WO-0V@stork.gentoo.org
1 aballier 09/06/21 11:48:30
2
3 Modified: ChangeLog
4 Added: camomile-0.7.2.ebuild
5 Log:
6 version bump
7 (Portage version: 2.2_rc33/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.15 dev-ml/camomile/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/camomile/ChangeLog?rev=1.15&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/camomile/ChangeLog?rev=1.15&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/camomile/ChangeLog?r1=1.14&r2=1.15
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-ml/camomile/ChangeLog,v
19 retrieving revision 1.14
20 retrieving revision 1.15
21 diff -u -r1.14 -r1.15
22 --- ChangeLog 21 Jun 2009 11:42:13 -0000 1.14
23 +++ ChangeLog 21 Jun 2009 11:48:29 -0000 1.15
24 @@ -1,6 +1,11 @@
25 # ChangeLog for dev-ml/camomile
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-ml/camomile/ChangeLog,v 1.14 2009/06/21 11:42:13 aballier Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-ml/camomile/ChangeLog,v 1.15 2009/06/21 11:48:29 aballier Exp $
29 +
30 +*camomile-0.7.2 (21 Jun 2009)
31 +
32 + 21 Jun 2009; Alexis Ballier <aballier@g.o> +camomile-0.7.2.ebuild:
33 + version bump
34
35 21 Jun 2009; Alexis Ballier <aballier@g.o> camomile-0.7.1.ebuild:
36 define eapi before inherit and assign rdepend explicitly
37
38
39
40 1.1 dev-ml/camomile/camomile-0.7.2.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/camomile/camomile-0.7.2.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/camomile/camomile-0.7.2.ebuild?rev=1.1&content-type=text/plain
44
45 Index: camomile-0.7.2.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/camomile/camomile-0.7.2.ebuild,v 1.1 2009/06/21 11:48:29 aballier Exp $
50
51 EAPI="2"
52
53 inherit findlib eutils
54
55 DESCRIPTION="Camomile is a comprehensive Unicode library for ocaml."
56 HOMEPAGE="http://camomile.sourceforge.net/"
57 SRC_URI="mirror://sourceforge/camomile/${P}.tar.bz2"
58
59 LICENSE="LGPL-2"
60 SLOT="0"
61 KEYWORDS="~amd64 ~ppc ~x86"
62 IUSE="debug +ocamlopt"
63
64 RDEPEND=">=dev-lang/ocaml-3.10.2[ocamlopt?]"
65 DEPEND="${RDEPEND}"
66
67 src_configure() {
68 econf $(use_enable debug)
69 }
70
71 src_compile() {
72 emake -j1 byte unidata unimaps charmap_data locale_data || die "failed to build"
73 if use ocamlopt; then
74 emake -j1 opt || die "failed to build native code"
75 fi
76 }
77
78 src_install() {
79 dodir /usr/bin
80 findlib_src_install DATADIR="${D}/usr/share" BINDIR="${D}/usr/bin"
81 }