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: camomile-0.8.4.ebuild ChangeLog
Date: Tue, 10 Jan 2012 13:27:12
Message-Id: 20120110132701.DA2542004B@flycatcher.gentoo.org
1 aballier 12/01/10 13:27:01
2
3 Modified: ChangeLog
4 Added: camomile-0.8.4.ebuild
5 Log:
6 version bump
7
8 (Portage version: 2.2.0_alpha84/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.30 dev-ml/camomile/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/camomile/ChangeLog?rev=1.30&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/camomile/ChangeLog?rev=1.30&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/camomile/ChangeLog?r1=1.29&r2=1.30
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-ml/camomile/ChangeLog,v
20 retrieving revision 1.29
21 retrieving revision 1.30
22 diff -u -r1.29 -r1.30
23 --- ChangeLog 23 Jul 2011 11:18:02 -0000 1.29
24 +++ ChangeLog 10 Jan 2012 13:27:01 -0000 1.30
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-ml/camomile
27 -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-ml/camomile/ChangeLog,v 1.29 2011/07/23 11:18:02 maekke Exp $
29 +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/dev-ml/camomile/ChangeLog,v 1.30 2012/01/10 13:27:01 aballier Exp $
31 +
32 +*camomile-0.8.4 (10 Jan 2012)
33 +
34 + 10 Jan 2012; Alexis Ballier <aballier@g.o> +camomile-0.8.4.ebuild:
35 + version bump
36
37 23 Jul 2011; Markus Meier <maekke@g.o> camomile-0.8.3.ebuild:
38 x86 stable, bug #374965
39
40
41
42 1.1 dev-ml/camomile/camomile-0.8.4.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/camomile/camomile-0.8.4.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/camomile/camomile-0.8.4.ebuild?rev=1.1&content-type=text/plain
46
47 Index: camomile-0.8.4.ebuild
48 ===================================================================
49 # Copyright 1999-2012 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-ml/camomile/camomile-0.8.4.ebuild,v 1.1 2012/01/10 13:27:01 aballier Exp $
52
53 EAPI="2"
54
55 inherit findlib eutils
56
57 DESCRIPTION="Camomile is a comprehensive Unicode library for ocaml."
58 HOMEPAGE="http://github.com/yoriyuki/Camomile/wiki"
59 SRC_URI="http://github.com/downloads/yoriyuki/Camomile/${P}.tar.bz2"
60
61 LICENSE="LGPL-2"
62 SLOT="0"
63 KEYWORDS="~amd64 ~ppc ~x86"
64 IUSE="debug +ocamlopt"
65
66 RDEPEND=">=dev-lang/ocaml-3.10.2[ocamlopt?]"
67 DEPEND="${RDEPEND}"
68
69 src_configure() {
70 econf $(use_enable debug)
71 }
72
73 src_compile() {
74 emake -j1 byte unidata unimaps charmap_data locale_data || die "failed to build"
75 if use ocamlopt; then
76 emake -j1 opt || die "failed to build native code"
77 fi
78 }
79
80 src_install() {
81 dodir /usr/bin
82 findlib_src_install DATADIR="${D}/usr/share" BINDIR="${D}/usr/bin"
83 }