blob: d84f18af21cb424f9b6fe4bb0afab12cc549b2b6 (
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
52
53
54
55
56
57
58
59
60
61
|
# Copyright 1999-2008 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.3 2008/03/11 19:19:58 aballier Exp $
EAPI="1"
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"
DEPEND="${RDEPEND}
test? ( dev-ml/ounit )"
SLOT="0"
LICENSE="MIT"
KEYWORDS="~amd64 ~x86"
pkg_setup() {
if use ocamlopt && ! built_with_use --missing true dev-lang/ocaml ocamlopt; then
eerror "In order to build ${PN} with native code support from ocaml"
eerror "You first need to have a native code ocaml compiler."
eerror "You need to install dev-lang/ocaml with ocamlopt useflag on."
die "Please install ocaml with ocamlopt useflag"
fi
}
src_unpack(){
unpack ${A}
cd "${S}"
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
}
|