summaryrefslogtreecommitdiff
path: root/dev-ml
diff options
context:
space:
mode:
authorAlexis Ballier <aballier@gentoo.org>2009-06-21 11:54:53 +0000
committerAlexis Ballier <aballier@gentoo.org>2009-06-21 11:54:53 +0000
commitb9477f16b59de9cdc05215b529d3feb08c443b4d (patch)
treee2b64f940a0f17a377ac3693e8a021b185ca6f5d /dev-ml
parentFix compilation error with USE="python", bug #271855, and fix missing EAPI="2" (diff)
downloadgentoo-2-b9477f16b59de9cdc05215b529d3feb08c443b4d.tar.gz
gentoo-2-b9477f16b59de9cdc05215b529d3feb08c443b4d.tar.bz2
gentoo-2-b9477f16b59de9cdc05215b529d3feb08c443b4d.zip
version bump
(Portage version: 2.2_rc33/cvs/Linux x86_64)
Diffstat (limited to 'dev-ml')
-rw-r--r--dev-ml/ocaml-make/ChangeLog10
-rw-r--r--dev-ml/ocaml-make/ocaml-make-6.29.3.ebuild (renamed from dev-ml/ocaml-make/ocaml-make-6.28.0.ebuild)15
2 files changed, 18 insertions, 7 deletions
diff --git a/dev-ml/ocaml-make/ChangeLog b/dev-ml/ocaml-make/ChangeLog
index 7f03acc32851..29d355f00cdb 100644
--- a/dev-ml/ocaml-make/ChangeLog
+++ b/dev-ml/ocaml-make/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for dev-ml/ocaml-make
-# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocaml-make/ChangeLog,v 1.11 2008/05/12 07:02:41 aballier Exp $
+# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocaml-make/ChangeLog,v 1.12 2009/06/21 11:54:53 aballier Exp $
+
+*ocaml-make-6.29.3 (21 Jun 2009)
+
+ 21 Jun 2009; Alexis Ballier <aballier@gentoo.org>
+ -ocaml-make-6.28.0.ebuild, +ocaml-make-6.29.3.ebuild:
+ version bump
*ocaml-make-6.28.0 (12 May 2008)
diff --git a/dev-ml/ocaml-make/ocaml-make-6.28.0.ebuild b/dev-ml/ocaml-make/ocaml-make-6.29.3.ebuild
index 8e4c17c0b1e8..d5f0880f56f5 100644
--- a/dev-ml/ocaml-make/ocaml-make-6.28.0.ebuild
+++ b/dev-ml/ocaml-make/ocaml-make-6.29.3.ebuild
@@ -1,6 +1,6 @@
-# Copyright 1999-2008 Gentoo Foundation
+# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocaml-make/ocaml-make-6.28.0.ebuild,v 1.2 2008/07/13 06:52:22 josejx Exp $
+# $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 $
DESCRIPTION="Generic O'Caml Makefile for GNU Make"
HOMEPAGE="http://www.ocaml.info/home/ocaml_sources.html"
@@ -9,10 +9,10 @@ LICENSE="LGPL-2.1"
DEPEND=""
RDEPEND=">=dev-lang/ocaml-3.06-r1
>=dev-ml/findlib-0.8"
-SRC_URI="http://www.ocaml.info/ocaml_sources/${P}.tar.bz2"
+SRC_URI="http://www.ocaml.info/ocaml_sources/${P}.tar.gz"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
-IUSE=""
+IUSE="examples"
src_install () {
# Just put the OCamlMakefile into /usr/include
@@ -20,5 +20,10 @@ src_install () {
insinto /usr/include
doins OCamlMakefile
# install documentation
- dodoc README Changes
+ dodoc README.txt Changelog
+
+ if use examples; then
+ insinto /usr/share/doc/${PF}
+ doins -r calc camlp4 gtk idl threads
+ fi
}