blob: 0633c132205aeb67b1b8cf577a66b868a5049ad8 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocurl/ocurl-0.2.1.ebuild,v 1.4 2009/06/21 13:10:17 aballier 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}.tar.gz"
SLOT="0"
IUSE="doc"
DEPEND=">=net-misc/curl-7.9.8
dev-libs/openssl"
RDEPEND="$DEPEND"
KEYWORDS="~amd64 ppc x86"
src_compile()
{
econf --with-findlib || die
emake -j1 all || die
}
src_install()
{
findlib_src_install
use doc && dodoc examples/*.ml
}
|