blob: d14debb42c3b49d62fab794def66ab558624b671 (
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
43
44
45
46
47
48
49
50
51
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocaml-expat/ocaml-expat-0.9.1.ebuild,v 1.5 2009/09/28 16:53:50 betelgeuse Exp $
EAPI="2"
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"
LICENSE="MIT"
KEYWORDS="~amd64 ~ppc ~x86"
src_prepare(){
epatch "${FILESDIR}/${P}-test.patch"
}
src_compile() {
emake depend || die "make depend failed"
emake all || die "make failed"
if use ocamlopt; then
emake allopt || die "failed to build native code programs"
fi
}
src_test() {
emake test || die "bytecode tests failed"
if use ocamlopt; then
emake testopt || die "native code tests failed"
fi
}
src_install() {
findlib_src_preinst
emake install || die
if use doc ; then
dohtml -r doc/html/*
fi
dodoc README || die
}
|