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-make: ocaml-make-6.29.3.ebuild ChangeLog ocaml-make-6.28.0.ebuild
Date: Sun, 21 Jun 2009 11:54:56
Message-Id: E1MILdN-0000n4-6A@stork.gentoo.org
1 aballier 09/06/21 11:54:53
2
3 Modified: ChangeLog
4 Added: ocaml-make-6.29.3.ebuild
5 Removed: ocaml-make-6.28.0.ebuild
6 Log:
7 version bump
8 (Portage version: 2.2_rc33/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.12 dev-ml/ocaml-make/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/ocaml-make/ChangeLog?rev=1.12&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/ocaml-make/ChangeLog?rev=1.12&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/ocaml-make/ChangeLog?r1=1.11&r2=1.12
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-ml/ocaml-make/ChangeLog,v
20 retrieving revision 1.11
21 retrieving revision 1.12
22 diff -u -r1.11 -r1.12
23 --- ChangeLog 12 May 2008 07:02:41 -0000 1.11
24 +++ ChangeLog 21 Jun 2009 11:54:53 -0000 1.12
25 @@ -1,6 +1,12 @@
26 # ChangeLog for dev-ml/ocaml-make
27 -# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocaml-make/ChangeLog,v 1.11 2008/05/12 07:02:41 aballier Exp $
29 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocaml-make/ChangeLog,v 1.12 2009/06/21 11:54:53 aballier Exp $
31 +
32 +*ocaml-make-6.29.3 (21 Jun 2009)
33 +
34 + 21 Jun 2009; Alexis Ballier <aballier@g.o>
35 + -ocaml-make-6.28.0.ebuild, +ocaml-make-6.29.3.ebuild:
36 + version bump
37
38 *ocaml-make-6.28.0 (12 May 2008)
39
40
41
42
43 1.1 dev-ml/ocaml-make/ocaml-make-6.29.3.ebuild
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/ocaml-make/ocaml-make-6.29.3.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/ocaml-make/ocaml-make-6.29.3.ebuild?rev=1.1&content-type=text/plain
47
48 Index: ocaml-make-6.29.3.ebuild
49 ===================================================================
50 # Copyright 1999-2009 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/dev-ml/ocaml-make/ocaml-make-6.29.3.ebuild,v 1.1 2009/06/21 11:54:53 aballier Exp $
53
54 DESCRIPTION="Generic O'Caml Makefile for GNU Make"
55 HOMEPAGE="http://www.ocaml.info/home/ocaml_sources.html"
56 LICENSE="LGPL-2.1"
57
58 DEPEND=""
59 RDEPEND=">=dev-lang/ocaml-3.06-r1
60 >=dev-ml/findlib-0.8"
61 SRC_URI="http://www.ocaml.info/ocaml_sources/${P}.tar.gz"
62 SLOT="0"
63 KEYWORDS="~amd64 ~ppc ~sparc ~x86"
64 IUSE="examples"
65
66 src_install () {
67 # Just put the OCamlMakefile into /usr/include
68 # where GNU Make will automatically pick it up.
69 insinto /usr/include
70 doins OCamlMakefile
71 # install documentation
72 dodoc README.txt Changelog
73
74 if use examples; then
75 insinto /usr/share/doc/${PF}
76 doins -r calc camlp4 gtk idl threads
77 fi
78 }