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.36.0.ebuild
Date: Sun, 19 Feb 2012 13:25:45
Message-Id: 20120219132536.2A26E2004B@flycatcher.gentoo.org
1 aballier 12/02/19 13:25:36
2
3 Modified: ChangeLog
4 Added: ocaml-make-6.36.0.ebuild
5 Log:
6 version bump
7
8 (Portage version: 2.2.0_alpha87/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.17 dev-ml/ocaml-make/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/ocaml-make/ChangeLog?rev=1.17&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/ocaml-make/ChangeLog?rev=1.17&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/ocaml-make/ChangeLog?r1=1.16&r2=1.17
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-ml/ocaml-make/ChangeLog,v
20 retrieving revision 1.16
21 retrieving revision 1.17
22 diff -u -r1.16 -r1.17
23 --- ChangeLog 2 Feb 2012 12:31:31 -0000 1.16
24 +++ ChangeLog 19 Feb 2012 13:25:36 -0000 1.17
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-ml/ocaml-make
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocaml-make/ChangeLog,v 1.16 2012/02/02 12:31:31 aballier Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocaml-make/ChangeLog,v 1.17 2012/02/19 13:25:36 aballier Exp $
30 +
31 +*ocaml-make-6.36.0 (19 Feb 2012)
32 +
33 + 19 Feb 2012; Alexis Ballier <aballier@g.o> +ocaml-make-6.36.0.ebuild:
34 + version bump
35
36 *ocaml-make-6.35.0 (02 Feb 2012)
37
38
39
40
41 1.1 dev-ml/ocaml-make/ocaml-make-6.36.0.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/ocaml-make/ocaml-make-6.36.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/ocaml-make/ocaml-make-6.36.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: ocaml-make-6.36.0.ebuild
47 ===================================================================
48 # Copyright 1999-2012 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.36.0.ebuild,v 1.1 2012/02/19 13:25:36 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 }