diff options
Diffstat (limited to 'dev-ml/ocaml-expat/ocaml-expat-0.9.1.ebuild')
-rw-r--r-- | dev-ml/ocaml-expat/ocaml-expat-0.9.1.ebuild | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/dev-ml/ocaml-expat/ocaml-expat-0.9.1.ebuild b/dev-ml/ocaml-expat/ocaml-expat-0.9.1.ebuild new file mode 100644 index 000000000000..1ac2c9248741 --- /dev/null +++ b/dev-ml/ocaml-expat/ocaml-expat-0.9.1.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +inherit findlib eutils + +IUSE="doc +ocamlopt test" + +DESCRIPTION="OCaml bindings for expat" +SRC_URI="http://www.xs4all.nl/~mmzeeman/ocaml/${P}.tar.gz" +HOMEPAGE="http://www.xs4all.nl/~mmzeeman/ocaml/" + +RDEPEND="dev-libs/expat + >=dev-lang/ocaml-3.10.2:=[ocamlopt?]" + +DEPEND="${RDEPEND} + test? ( dev-ml/ounit )" + +SLOT="0/${PV}" +LICENSE="MIT" +KEYWORDS="~amd64 ~ppc ~x86" + +src_prepare(){ + epatch "${FILESDIR}/${P}-test.patch" +} + +src_compile() { + emake depend + emake all + if use ocamlopt; then + emake allopt + fi +} + +src_test() { + emake test + if use ocamlopt; then + emake testopt + fi +} +src_install() { + findlib_src_preinst + emake install + + if use doc ; then + dohtml -r doc/html/* + fi + dodoc README +} |