blob: 5191439580dc8b26db77a10f047d79397b795fc7 (
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
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ml/lwt/lwt-2.2.1.ebuild,v 1.1 2011/02/24 17:42:23 aballier Exp $
EAPI=2
inherit findlib eutils multilib base
MY_P=${P/_/+}
DESCRIPTION="Cooperative light-weight thread library for OCaml"
SRC_URI="http://ocsigen.org/download/${MY_P}.tar.gz"
HOMEPAGE="http://ocsigen.org/lwt"
IUSE="gtk +ocamlopt +react +ssl"
DEPEND=">=dev-lang/ocaml-3.11[ocamlopt?]
react? ( dev-ml/react )
dev-libs/libev
ssl? ( >=dev-ml/ocaml-ssl-0.4.0 )
gtk? ( dev-ml/lablgtk dev-libs/glib:2 )"
RDEPEND="${DEPEND}
!<www-servers/ocsigen-1.1"
SLOT="0"
LICENSE="LGPL-2.1 LGPL-2.1-linking-exception"
KEYWORDS="~amd64 ~x86 ~x86-fbsd"
S=${WORKDIR}/${MY_P}
PATCHES=( "${FILESDIR}/${P}-args.patch" )
oasis_use_enable() {
echo "--override $2 `use $1 && echo \"true\" || echo \"false\"`"
}
src_configure() {
./configure --prefix usr \
--libdir /usr/$(get_libdir) \
--docdir /usr/share/doc/${PF}/html \
--destdir "${D}" \
$(use_enable gtk glib) \
$(use_enable react) \
$(use_enable ssl) \
$(oasis_use_enable ocamlopt is_native) \
|| die
}
src_install() {
findlib_src_install
dodoc CHANGES* README || die
}
|