blob: bbf9ea6285f7f19c5075bbd9c8f5c963b47bcab2 (
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/curl-7.15.1.ebuild,v 1.9 2005/12/31 10:28:15 vapier Exp $
# NOTE: If you bump this ebuild, make sure you bump dev-python/pycurl!
DESCRIPTION="A Client that groks URLs"
HOMEPAGE="http://curl.haxx.se/"
SRC_URI="http://curl.haxx.se/download/${P}.tar.bz2"
LICENSE="MIT X11"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ~ppc-macos ppc64 s390 sh sparc x86"
IUSE="ssl ipv6 ldap ares gnutls idn kerberos krb4 test"
RDEPEND="gnutls? ( net-libs/gnutls )
ssl? ( !gnutls? ( dev-libs/openssl ) )
ldap? ( net-nds/openldap )
idn? ( net-dns/libidn )
ares? ( net-dns/c-ares )
kerberos? ( app-crypt/mit-krb5 )
krb4? ( app-crypt/kth-krb )"
DEPEND="${RDEPEND}
test? (
sys-apps/diffutils
dev-lang/perl
)"
# used - but can do without in self test: net-misc/stunnel
src_compile() {
myconf="$(use_enable ldap)
$(use_with idn libidn)
$(use_enable kerberos gssapi)
$(use_enable ipv6)
--enable-http
--enable-ftp
--enable-gopher
--enable-file
--enable-dict
--enable-manual
--enable-telnet
--enable-nonblocking
--enable-largefile"
if use ipv6 && use ares; then
ewarn "c-ares support disabled because it is incompatible with ipv6."
myconf="${myconf} --disable-ares"
else
myconf="${myconf} $(use_enable ares)"
fi
if use ipv6 && use krb4; then
ewarn "kerberos-4 support disabled because it is incompatible with ipv6."
myconf="${myconf} --disable-krb4"
else
myconf="${myconf} $(use_enable krb4)"
fi
if use gnutls; then
myconf="${myconf} --without-ssl --with-gnutls=/usr"
elif use ssl; then
myconf="${myconf} --without-gnutls --with-ssl=/usr"
else
myconf="${myconf} --without-gnutls --without-ssl"
fi
econf ${myconf} || die 'configure failed'
emake || die "install failed for current version"
}
src_install() {
make DESTDIR="${D}" install || die "installed failed for current version"
insinto /usr/share/aclocal
doins docs/libcurl/libcurl.m4
#insinto /usr/lib/pkgconfig
#doins libcurl.pc
dodoc CHANGES README
dodoc docs/FEATURES docs/INTERNALS docs/LIBCURL
dodoc docs/MANUAL docs/FAQ docs/BUGS docs/CONTRIBUTE
}
|