blob: bd14ab21c63a67c3f40315c3262b5fa4b66b41ec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit findlib
DESCRIPTION="Declarative definition of command line interfaces for OCaml"
HOMEPAGE="http://erratique.ch/software/cmdliner"
SRC_URI="http://erratique.ch/software/${PN}/releases/${P}.tbz"
LICENSE="ISC"
SLOT="0/${PV}"
KEYWORDS="amd64 arm arm64 ~ppc ppc64 ~riscv x86"
IUSE="+ocamlopt"
RDEPEND="
>=dev-lang/ocaml-4.08.00:=[ocamlopt?]
dev-ml/result:=
dev-ml/findlib:=
"
DEPEND="${RDEPEND}
dev-ml/topkg
dev-ml/ocamlbuild"
src_compile() {
emake build-byte
if use ocamlopt ; then
emake build-native-dynlink
emake build-native
fi
}
src_install() {
# Can't use opam-installer here as it is an opam dep...
findlib_src_preinst
local nativelibs=""
use ocamlopt && nativelibs="$(echo _build/cmdliner.cm{x,xa,xs} _build/cmdliner.a)"
ocamlfind install cmdliner pkg/META \
_build/cmdliner.mli _build/cmdliner.cm{a,i} ${nativelibs} || die
dodoc README.md CHANGES.md
}
|