summaryrefslogtreecommitdiff
path: root/dev-ml
diff options
context:
space:
mode:
authorAlexis Ballier <aballier@gentoo.org>2007-05-26 19:34:05 +0000
committerAlexis Ballier <aballier@gentoo.org>2007-05-26 19:34:05 +0000
commitd778e757149bec0e221bc490062108bba6f30c85 (patch)
treeb0bfc02aa3e72ed5cf39a6e8637127bdb43ea2c7 /dev-ml
parentVersion bump, now using serializer.jar from xalan, bug #156258; Remove unused... (diff)
downloadgentoo-2-d778e757149bec0e221bc490062108bba6f30c85.tar.gz
gentoo-2-d778e757149bec0e221bc490062108bba6f30c85.tar.bz2
gentoo-2-d778e757149bec0e221bc490062108bba6f30c85.zip
Version bump, ~amd64
(Portage version: 2.1.2.7)
Diffstat (limited to 'dev-ml')
-rw-r--r--dev-ml/ocamlgraph/ChangeLog7
-rw-r--r--dev-ml/ocamlgraph/files/digest-ocamlgraph-0.983
-rw-r--r--dev-ml/ocamlgraph/ocamlgraph-0.98.ebuild36
3 files changed, 45 insertions, 1 deletions
diff --git a/dev-ml/ocamlgraph/ChangeLog b/dev-ml/ocamlgraph/ChangeLog
index fff67b6495ea..f0013436e0a7 100644
--- a/dev-ml/ocamlgraph/ChangeLog
+++ b/dev-ml/ocamlgraph/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for dev-ml/ocamlgraph
# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocamlgraph/ChangeLog,v 1.4 2007/02/09 02:48:12 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocamlgraph/ChangeLog,v 1.5 2007/05/26 19:34:05 aballier Exp $
+
+*ocamlgraph-0.98 (26 May 2007)
+
+ 26 May 2007; Alexis Ballier <aballier@gentoo.org> +ocamlgraph-0.98.ebuild:
+ Version bump, ~amd64
09 Feb 2007; Diego Pettenò <flameeyes@gentoo.org> ChangeLog:
Regenerate digest in Manifest2 format.
diff --git a/dev-ml/ocamlgraph/files/digest-ocamlgraph-0.98 b/dev-ml/ocamlgraph/files/digest-ocamlgraph-0.98
new file mode 100644
index 000000000000..a054407722ba
--- /dev/null
+++ b/dev-ml/ocamlgraph/files/digest-ocamlgraph-0.98
@@ -0,0 +1,3 @@
+MD5 873821502eb3edfa73daed10bc48b9f2 ocamlgraph-0.98.tar.gz 109436
+RMD160 a79e81e595a9eca0793f2c3ef7c9cf1550b45bd3 ocamlgraph-0.98.tar.gz 109436
+SHA256 4d3db054d1cf133ef4287f2f34f296f8c1ecca6e8575aef262a8e2507368bf36 ocamlgraph-0.98.tar.gz 109436
diff --git a/dev-ml/ocamlgraph/ocamlgraph-0.98.ebuild b/dev-ml/ocamlgraph/ocamlgraph-0.98.ebuild
new file mode 100644
index 000000000000..8669887c202e
--- /dev/null
+++ b/dev-ml/ocamlgraph/ocamlgraph-0.98.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2007 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocamlgraph/ocamlgraph-0.98.ebuild,v 1.1 2007/05/26 19:34:05 aballier Exp $
+
+inherit findlib
+
+DESCRIPTION="O'Caml Graph library"
+HOMEPAGE="http://www.lri.fr/~filliatr/ocamlgraph/"
+SRC_URI="http://www.lri.fr/~filliatr/ftp/ocamlgraph/${P}.tar.gz"
+LICENSE="LGPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+DEPEND=">=dev-lang/ocaml-3.08
+ doc? ( dev-tex/hevea dev-ml/ocamlweb )"
+IUSE="doc"
+
+src_compile() {
+ econf || die
+ emake || die
+
+ if use doc;
+ then
+ emake doc
+ fi
+}
+
+src_install() {
+ findlib_src_preinst
+ emake install-findlib || die
+
+ dodoc README CREDITS FAQ CHANGES
+ if use doc;
+ then
+ dohtml doc/*
+ fi
+}