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