diff options
author | Jonathan-Christofer Demay <jcdemay@gmail.com> | 2014-06-22 16:29:25 +0200 |
---|---|---|
committer | Jonathan-Christofer Demay <jcdemay@gmail.com> | 2014-06-22 16:29:25 +0200 |
commit | 03917aeca50f3a5bfb3382205e973e7777a67570 (patch) | |
tree | 9b012497b885586aaa60975bf8e486663f1adcc6 /dev-ml/ocamlgraph/ocamlgraph-1.8.5.ebuild | |
parent | added missing deps (bug #514084) (diff) | |
download | sci-03917aeca50f3a5bfb3382205e973e7777a67570.tar.gz sci-03917aeca50f3a5bfb3382205e973e7777a67570.tar.bz2 sci-03917aeca50f3a5bfb3382205e973e7777a67570.zip |
multiple version bumps
Diffstat (limited to 'dev-ml/ocamlgraph/ocamlgraph-1.8.5.ebuild')
-rw-r--r-- | dev-ml/ocamlgraph/ocamlgraph-1.8.5.ebuild | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/dev-ml/ocamlgraph/ocamlgraph-1.8.5.ebuild b/dev-ml/ocamlgraph/ocamlgraph-1.8.5.ebuild new file mode 100644 index 000000000..d950b6f2d --- /dev/null +++ b/dev-ml/ocamlgraph/ocamlgraph-1.8.5.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI="2" + +inherit eutils autotools + +DESCRIPTION="A graph library for Objective Caml" +HOMEPAGE="http://ocamlgraph.lri.fr" +SRC_URI="${HOMEPAGE}/download/${P}.tar.gz" + +LICENSE="LGPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="doc examples gtk +ocamlopt" + +DEPEND=">=dev-lang/ocaml-3.10.2[ocamlopt?] + gtk? ( >=dev-ml/lablgtk-2.12[gnomecanvas,ocamlopt?] )" +RDEPEND="${DEPEND}" + +src_prepare() { + epatch "${FILESDIR}/${PN}-makefile.patch" + + #dirty fix for doc building + sed -i Makefile.in -e "s/-d doc -html \$(DGRAPH_INCLUDES) \$(DOC_SRC)/-d doc -html \$(DGRAPH_INCLUDES) \$(DOC_SRC:src\/merge.mli=)/g" + + eautoreconf +} + +src_compile() { + DESTDIR="/" emake -j1 || die "emake failed" + + if use doc; then + emake doc || die "emake doc failed" + fi +} + +src_install() { + DESTDIR="${D}" emake install || die "emake install failed" + dodoc CHANGES CREDITS FAQ README + + if use doc; then + dohtml doc/* + fi + + if use examples; then + insinto /usr/share/doc/${PF} + doins -r examples + fi +} |