diff options
author | Alexis Ballier <aballier@gentoo.org> | 2016-09-07 12:16:07 +0200 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2016-09-07 12:23:10 +0200 |
commit | 3d546ae25cf8da778a7c3abbfa4c708b68b42094 (patch) | |
tree | 039a597e40b0f42066eefc9d0919bf7b02b98743 | |
parent | dev-ml/uchar: initial import; ebuild by me (diff) | |
download | gentoo-3d546ae25cf8da778a7c3abbfa4c708b68b42094.tar.gz gentoo-3d546ae25cf8da778a7c3abbfa4c708b68b42094.tar.bz2 gentoo-3d546ae25cf8da778a7c3abbfa4c708b68b42094.zip |
dev-ml/js_of_ocaml: add live ebuild
Package-Manager: portage-2.3.0
-rw-r--r-- | dev-ml/js_of_ocaml/js_of_ocaml-9999.ebuild | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/dev-ml/js_of_ocaml/js_of_ocaml-9999.ebuild b/dev-ml/js_of_ocaml/js_of_ocaml-9999.ebuild new file mode 100644 index 000000000000..41d79c3d42db --- /dev/null +++ b/dev-ml/js_of_ocaml/js_of_ocaml-9999.ebuild @@ -0,0 +1,66 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +inherit findlib eutils + +DESCRIPTION="A compiler from OCaml bytecode to javascript" +HOMEPAGE="http://ocsigen.org/js_of_ocaml/" + +if [ "${PV#9999}" != "${PV}" ] ; then + inherit git-r3 + SRC_URI="" + EGIT_REPO_URI="https://github.com/ocsigen/js_of_ocaml" + KEYWORDS="" +else + SRC_URI="https://github.com/ocsigen/js_of_ocaml/archive/${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64" +fi + +LICENSE="LGPL-2.1-with-linking-exception" +SLOT="0/${PV}" +IUSE="+async +ocamlopt doc +deriving +ppx +ppx-deriving +react +xml X" + +RDEPEND=" + >=dev-lang/ocaml-3.12:=[ocamlopt?,X?] + >=dev-ml/lwt-2.4.4:= + async? ( dev-ml/async_kernel:= ) + react? ( dev-ml/react:= dev-ml/reactiveData:= ) + xml? ( >=dev-ml/tyxml-4:= ) + ppx? ( dev-ml/ppx_tools:= ) + ppx-deriving? ( dev-ml/ppx_deriving:= ) + dev-ml/cmdliner:= + dev-ml/menhir:= + dev-ml/ocaml-base64:= + dev-ml/camlp4:= + dev-ml/cppo:= + dev-ml/uchar:= + deriving? ( >=dev-ml/deriving-0.6:= )" +DEPEND="${RDEPEND} + dev-ml/ocamlbuild" + +src_configure() { + printf "\n\n" >> Makefile.conf + use ocamlopt || echo "BEST := byte" >> Makefile.conf + use ocamlopt || echo "NATDYNLINK := NO" >> Makefile.conf + use deriving || echo "WITH_DERIVING := NO" >> Makefile.conf + use X || echo "WITH_GRAPHICS := NO" >> Makefile.conf + use react || echo "WITH_REACT := NO" >> Makefile.conf + use ppx || echo "WITH_PPX := NO" >> Makefile.conf + use ppx-deriving || echo "WITH_PPX_PPX_DERIVING := NO" >> Makefile.conf + use async || echo "WITH_ASYNC := NO" >> Makefile.conf +} + +src_compile() { + emake -j1 + use doc && emake doc +} + +src_install() { + findlib_src_preinst + emake BINDIR="${ED}/usr/bin/" install + dodoc CHANGES README.md + use doc && dohtml -r doc/api/html/ +} |