commit:     c2c0cc0e8cfc9c592252a0c6d5e5ff23a6215c4e
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Jun 14 18:40:37 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Jun 14 18:40:55 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c2c0cc0e

dev-ml/topkg: fix build without ocamlopt

Closes: https://bugs.gentoo.org/795987
Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-ml/topkg/topkg-1.0.3.ebuild | 11 ++++++++---
 1 file changed, 8 insertions(+), 3 deletions(-)

diff --git a/dev-ml/topkg/topkg-1.0.3.ebuild b/dev-ml/topkg/topkg-1.0.3.ebuild
index 15977974d68..6afcb25f56b 100644
--- a/dev-ml/topkg/topkg-1.0.3.ebuild
+++ b/dev-ml/topkg/topkg-1.0.3.ebuild
@@ -12,12 +12,12 @@ 
SRC_URI="https://github.com/dbuenzli/topkg/archive/v${PV}.tar.gz -> ${P}.tar.gz"
 LICENSE="ISC"
 SLOT="0/${PV}"
 KEYWORDS="amd64 arm arm64 ppc ppc64 x86"
-IUSE=""
+IUSE="+ocamlopt"
 
 RDEPEND="dev-ml/result:=
        dev-ml/ocamlbuild:=
        dev-ml/findlib:=
-       dev-lang/ocaml:="
+       dev-lang/ocaml:=[ocamlopt?]"
 DEPEND="${RDEPEND}"
 
 src_compile() {
@@ -27,7 +27,12 @@ src_compile() {
 src_install() {
        # Can't use opam-installer here as it is an opam dep...
        findlib_src_preinst
-       local nativelibs="$(echo _build/src/${PN}*.cm{x,xa,xs,ti} 
_build/src/${PN}.a)"
+
+       local nativelibs
+       if use ocamlopt; then
+               nativelibs=$(echo _build/src/${PN}*.cm{x,xa,xs,ti} 
_build/src/${PN}.a)
+       fi
+
        ocamlfind install ${PN} _build/pkg/META _build/src/${PN}.mli 
_build/src/${PN}.cm{a,i} ${nativelibs} || die
        dodoc CHANGES.md DEVEL.md README.md
 }

Reply via email to