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/bin-prot: ChangeLog bin-prot-1.2.21.ebuild
Date: Sun, 03 Jan 2010 15:20:57
Message-Id: E1NRSGF-00060n-4W@stork.gentoo.org
1 aballier 10/01/03 15:20:55
2
3 Modified: ChangeLog
4 Added: bin-prot-1.2.21.ebuild
5 Log:
6 version bump
7 (Portage version: 2.2_rc61/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.3 dev-ml/bin-prot/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/bin-prot/ChangeLog?rev=1.3&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/bin-prot/ChangeLog?rev=1.3&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/bin-prot/ChangeLog?r1=1.2&r2=1.3
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-ml/bin-prot/ChangeLog,v
19 retrieving revision 1.2
20 retrieving revision 1.3
21 diff -u -r1.2 -r1.3
22 --- ChangeLog 26 Sep 2009 12:21:20 -0000 1.2
23 +++ ChangeLog 3 Jan 2010 15:20:54 -0000 1.3
24 @@ -1,6 +1,11 @@
25 # ChangeLog for dev-ml/bin-prot
26 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-ml/bin-prot/ChangeLog,v 1.2 2009/09/26 12:21:20 aballier Exp $
28 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/dev-ml/bin-prot/ChangeLog,v 1.3 2010/01/03 15:20:54 aballier Exp $
30 +
31 +*bin-prot-1.2.21 (03 Jan 2010)
32 +
33 + 03 Jan 2010; Alexis Ballier <aballier@g.o> +bin-prot-1.2.21.ebuild:
34 + version bump
35
36 *bin-prot-1.2.20 (26 Sep 2009)
37
38
39
40
41 1.1 dev-ml/bin-prot/bin-prot-1.2.21.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/bin-prot/bin-prot-1.2.21.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/bin-prot/bin-prot-1.2.21.ebuild?rev=1.1&content-type=text/plain
45
46 Index: bin-prot-1.2.21.ebuild
47 ===================================================================
48 # Copyright 1999-2010 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-ml/bin-prot/bin-prot-1.2.21.ebuild,v 1.1 2010/01/03 15:20:54 aballier Exp $
51
52 EAPI="2"
53
54 inherit findlib
55
56 DESCRIPTION="Automated code generation for converting OCaml values to/from a type-safe binary protocol"
57 HOMEPAGE="http://www.ocaml.info/home/ocaml_sources.html"
58 SRC_URI="http://ocaml.info/ocaml_sources/${P}.tar.gz"
59
60 LICENSE="LGPL-2"
61 SLOT="0"
62 KEYWORDS="~amd64"
63 IUSE="doc test"
64 S=${WORKDIR}/${P}/lib
65
66 RDEPEND=">=dev-lang/ocaml-3.11[ocamlopt]
67 dev-ml/type-conv"
68 DEPEND="${RDEPEND}
69 test? ( dev-ml/ounit )
70 doc? ( virtual/latex-base )"
71
72 src_compile() {
73 emake -j1 CFLAGS="${CFLAGS}" || die
74 if use doc; then
75 cd ../doc
76 VARTEXFONTS="${T}/fonts" pdflatex README.tex || die
77 fi
78 }
79
80 src_test() {
81 cd "${S}/../lib_test"
82 emake -j1 || die
83 ./test_runner || die
84 }
85
86 src_install() {
87 findlib_src_preinst
88 emake install || die "make install failed"
89 dodoc ../README.txt ../Changelog
90 use doc && dodoc ../doc/README.pdf
91 }