You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-ml/ocaml-expat/ocaml-expat-1.1.0-r1.ebuild

53 lines
906 B

# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit findlib
IUSE="doc +ocamlopt test"
RESTRICT="!test? ( test )"
DESCRIPTION="OCaml bindings for expat"
SRC_URI="https://github.com/whitequark/ocaml-expat/archive/v${PV}.tar.gz -> ${P}.tar.gz"
HOMEPAGE="https://github.com/whitequark/ocaml-expat"
RDEPEND="dev-libs/expat
>=dev-lang/ocaml-3.10.2:=[ocamlopt?]"
DEPEND="${RDEPEND}
test? ( dev-ml/ounit2 )"
SLOT="0/${PV}"
LICENSE="MIT"
KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
PATCHES=( "${FILESDIR}/ounit2.patch" )
src_compile() {
emake depend
emake all
if use ocamlopt; then
emake allopt
fi
if use doc; then
emake doc
fi
}
src_test() {
emake test
if use ocamlopt; then
emake testopt
fi
}
src_install() {
findlib_src_preinst
emake install
if use doc ; then
docinto html
dodoc -r doc/*
fi
dodoc README
}