diff options
author | Alexis Ballier <aballier@gentoo.org> | 2016-02-06 16:39:03 +0100 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2016-02-06 16:39:11 +0100 |
commit | a9075b53a9bb36659878fbab65721fc4209497c5 (patch) | |
tree | 861241938fea3dd043c94ee1cffe5ca0847512ab /dev-ml/js_of_ocaml | |
parent | dev-ml/js_of_ocaml: add ppx useflag (diff) | |
download | gentoo-a9075b53a9bb36659878fbab65721fc4209497c5.tar.gz gentoo-a9075b53a9bb36659878fbab65721fc4209497c5.tar.bz2 gentoo-a9075b53a9bb36659878fbab65721fc4209497c5.zip |
dev-ml/js_of_ocaml: add ppx-deriving useflag
Package-Manager: portage-2.2.27
Signed-off-by: Alexis Ballier <aballier@gentoo.org>
Diffstat (limited to 'dev-ml/js_of_ocaml')
-rw-r--r-- | dev-ml/js_of_ocaml/js_of_ocaml-2.7.ebuild | 4 | ||||
-rw-r--r-- | dev-ml/js_of_ocaml/metadata.xml | 1 |
2 files changed, 4 insertions, 1 deletions
diff --git a/dev-ml/js_of_ocaml/js_of_ocaml-2.7.ebuild b/dev-ml/js_of_ocaml/js_of_ocaml-2.7.ebuild index 1f8b9b08f2de..8967f79bacab 100644 --- a/dev-ml/js_of_ocaml/js_of_ocaml-2.7.ebuild +++ b/dev-ml/js_of_ocaml/js_of_ocaml-2.7.ebuild @@ -13,7 +13,7 @@ SRC_URI="https://github.com/ocsigen/js_of_ocaml/archive/${PV}.tar.gz -> ${P}.tar LICENSE="LGPL-2.1-with-linking-exception" SLOT="0/${PV}" KEYWORDS="~amd64" -IUSE="+ocamlopt doc +deriving +ppx +react +xml X" +IUSE="+ocamlopt doc +deriving +ppx +ppx-deriving +react +xml X" DEPEND=" >=dev-lang/ocaml-3.12:=[ocamlopt?,X?] @@ -21,6 +21,7 @@ DEPEND=" react? ( dev-ml/react:= dev-ml/reactiveData:= ) xml? ( >=dev-ml/tyxml-3.6:= ) ppx? ( dev-ml/ppx_tools:= ) + ppx-deriving? ( dev-ml/ppx_deriving:= ) dev-ml/cmdliner:= dev-ml/menhir:= dev-ml/ocaml-base64:= @@ -37,6 +38,7 @@ src_configure() { 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 } src_compile() { diff --git a/dev-ml/js_of_ocaml/metadata.xml b/dev-ml/js_of_ocaml/metadata.xml index 904a7a4498e5..0b34c19deedf 100644 --- a/dev-ml/js_of_ocaml/metadata.xml +++ b/dev-ml/js_of_ocaml/metadata.xml @@ -8,6 +8,7 @@ <use> <flag name="deriving">Enable <pkg>dev-ml/deriving</pkg> support for improving the type safety.</flag> <flag name="ppx">Enables the ppx syntax extension</flag> + <flag name="ppx-deriving">Enables deriving support through ppx syntax extensions.</flag> <flag name="react">Enable functionnal reactive programming support.</flag> </use> <upstream> |