diff options
author | Alexis Ballier <aballier@gentoo.org> | 2015-09-19 21:03:30 +0200 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2015-09-19 21:03:47 +0200 |
commit | 8dc4f8e83c93985ea56aabd94a88c7f2948997f0 (patch) | |
tree | 51132dba278eeca50450b7255eb5f514213fedb5 /dev-ml/extlib/extlib-1.7.0-r1.ebuild | |
parent | dev-python/py: amd64/arm/hppa/ia64/ppc64/ppc/sparc/x86 stable, (ALLARCHES pol... (diff) | |
download | gentoo-8dc4f8e83c93985ea56aabd94a88c7f2948997f0.tar.gz gentoo-8dc4f8e83c93985ea56aabd94a88c7f2948997f0.tar.bz2 gentoo-8dc4f8e83c93985ea56aabd94a88c7f2948997f0.zip |
dev-ml/extlib: Fix deps. Upstream switched from camlp4 to cppo.
Package-Manager: portage-2.2.20.1
Diffstat (limited to 'dev-ml/extlib/extlib-1.7.0-r1.ebuild')
-rw-r--r-- | dev-ml/extlib/extlib-1.7.0-r1.ebuild | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/dev-ml/extlib/extlib-1.7.0-r1.ebuild b/dev-ml/extlib/extlib-1.7.0-r1.ebuild new file mode 100644 index 000000000000..dabc052cb367 --- /dev/null +++ b/dev-ml/extlib/extlib-1.7.0-r1.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +inherit findlib eutils + +DESCRIPTION="Standard library extensions for O'Caml" +HOMEPAGE="https://github.com/ygrek/ocaml-extlib" +SRC_URI="https://github.com/ygrek/ocaml-extlib/archive/${PV}.tar.gz -> ${P}.tar.gz" +LICENSE="LGPL-2.1" +DEPEND=" + >=dev-lang/ocaml-3.10.2:=[ocamlopt?] + dev-ml/cppo:= +" +RDEPEND="${DEPEND}" +SLOT="0/${PV}" +KEYWORDS="~amd64 ~amd64-linux ~x86-linux ~ppc-macos" +IUSE="doc +ocamlopt" +S="${WORKDIR}/ocaml-${P}" + +src_compile() { + cd src + emake -j1 all + if use ocamlopt; then + emake opt cmxs + fi + + if use doc; then + emake doc + fi +} + +src_test() { + emake -j1 test +} + +src_install () { + findlib_src_install + + # install documentation + dodoc README + + if use doc; then + dohtml src/doc/* + fi +} |