blob: 6f8d57c0d4e3d257702ac59744af0b78b1dcc706 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocurl/ocurl-0.1.6.ebuild,v 1.1 2005/03/08 23:49:23 mattam Exp $
inherit eutils findlib
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="doc"
DEPEND=">=net-misc/curl-7.9.8
dev-libs/openssl"
RDEPEND="$DEPEND"
KEYWORDS="x86 ppc"
src_compile()
{
epatch ${FILESDIR}/${PV}-curl-helper.patch
econf --with-findlib || die
make all || die
}
src_install()
{
findlib_src_install
dodoc COPYING
use doc && dodoc examples/*.ml
}
|