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/ocaml-gettext: ocaml-gettext-0.3.5.ebuild ChangeLog
Date: Wed, 29 Oct 2014 14:26:44
Message-Id: 20141029142639.2EBDD9016@oystercatcher.gentoo.org
1 aballier 14/10/29 14:26:39
2
3 Modified: ChangeLog
4 Added: ocaml-gettext-0.3.5.ebuild
5 Log:
6 version bump
7
8 Signed-off-by: aballier@g.o
9 (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
10
11 Revision Changes Path
12 1.5 dev-ml/ocaml-gettext/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/ocaml-gettext/ChangeLog?rev=1.5&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/ocaml-gettext/ChangeLog?rev=1.5&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/ocaml-gettext/ChangeLog?r1=1.4&r2=1.5
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/dev-ml/ocaml-gettext/ChangeLog,v
21 retrieving revision 1.4
22 retrieving revision 1.5
23 diff -u -r1.4 -r1.5
24 --- ChangeLog 24 Aug 2013 13:19:29 -0000 1.4
25 +++ ChangeLog 29 Oct 2014 14:26:39 -0000 1.5
26 @@ -1,6 +1,12 @@
27 # ChangeLog for dev-ml/ocaml-gettext
28 -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocaml-gettext/ChangeLog,v 1.4 2013/08/24 13:19:29 maekke Exp $
30 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
31 +# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocaml-gettext/ChangeLog,v 1.5 2014/10/29 14:26:39 aballier Exp $
32 +
33 +*ocaml-gettext-0.3.5 (29 Oct 2014)
34 +
35 + 29 Oct 2014; Alexis Ballier <aballier@g.o>
36 + +ocaml-gettext-0.3.5.ebuild:
37 + version bump
38
39 24 Aug 2013; Markus Meier <maekke@g.o> ocaml-gettext-0.3.4.ebuild:
40 add ~x86, bug #462360
41
42
43
44 1.1 dev-ml/ocaml-gettext/ocaml-gettext-0.3.5.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/ocaml-gettext/ocaml-gettext-0.3.5.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/ocaml-gettext/ocaml-gettext-0.3.5.ebuild?rev=1.1&content-type=text/plain
48
49 Index: ocaml-gettext-0.3.5.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/ocaml-gettext/ocaml-gettext-0.3.5.ebuild,v 1.1 2014/10/29 14:26:39 aballier Exp $
54
55 EAPI=5
56
57 inherit findlib
58
59 DESCRIPTION="Provides support for internationalization of OCaml program"
60 HOMEPAGE="http://forge.ocamlcore.org/projects/ocaml-gettext"
61 SRC_URI="http://forge.ocamlcore.org/frs/download.php/1433/${P}.tar.gz"
62
63 LICENSE="LGPL-2.1-with-linking-exception"
64 SLOT="0/${PV}"
65 KEYWORDS="~amd64 ~x86"
66 IUSE="doc test"
67
68 RDEPEND=">=dev-lang/ocaml-3.12.1:=
69 >=dev-ml/ocaml-fileutils-0.4.0:=
70 >=dev-ml/camomile-0.8.3:=
71 sys-devel/gettext
72 "
73 DEPEND="${RDEPEND}
74 doc? ( app-text/docbook-xsl-stylesheets dev-libs/libxslt )
75 test? ( dev-ml/ounit )"
76
77 src_configure() {
78 econf \
79 --with-docbook-stylesheet="${EPREFIX}/usr/share/sgml/docbook/xsl-stylesheets/" \
80 $(use_enable doc) \
81 $(use_enable test)
82 }
83
84 src_compile() {
85 emake -j1
86 }
87
88 src_install() {
89 findlib_src_preinst
90 emake -j1 DESTDIR="${D}" \
91 BINDIR="${ED}/usr/bin" \
92 PODIR="${ED}/usr/share/locale/" \
93 DOCDIR="${ED}/usr/share/doc/${PF}" \
94 MANDIR="${ED}/usr/share/man" \
95 install
96 dodoc CHANGELOG README THANKS TODO
97 }