blob: 23170436160377c093f13265294b040af2f01374 (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocurl/ocurl-0.5.3.ebuild,v 1.1 2010/04/09 13:15:39 aballier Exp $
EAPI=2
inherit eutils findlib autotools
DESCRIPTION="OCaml interface to the libcurl library"
HOMEPAGE="http://sourceforge.net/projects/ocurl"
LICENSE="MIT"
SRC_URI="mirror://sourceforge/ocurl/${P}.tgz"
SLOT="0"
IUSE="examples"
DEPEND=">=net-misc/curl-7.9.8
dev-libs/openssl"
RDEPEND="$DEPEND"
KEYWORDS="~amd64 ~ppc ~x86"
S=${WORKDIR}/${PN}
src_prepare() {
epatch "${FILESDIR}/${PN}-0.5.1-asneeded.patch"
eautoreconf
}
src_configure() {
econf --with-findlib
}
src_compile()
{
emake -j1 all || die
}
src_install()
{
findlib_src_install
if use examples; then
insinto /usr/share/doc/${PF}
doins -r examples
fi
}
|