blob: e44e42e6d78f73ab84dc01d513066607afc5bb2d (
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
|
# 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.14.0.ebuild,v 1.4 2005/08/27 16:02:00 sekretarz Exp $
# NOTE: If you bump this ebuild, make sure you bump dev-python/pycurl!
inherit eutils
# NOTE: To prevent breakages when upgrading, we compile all the prev
# versions we know. We can't slot them because only the libraries
# have versioning, all the binaries, manpages don't have versions.
OLD_PV=7.11.2
OLD_PV_LIB=libcurl.so.2
DESCRIPTION="A Client that groks URLs"
HOMEPAGE="http://curl.haxx.se/"
SRC_URI="http://curl.haxx.se/download/${PN}-${OLD_PV}.tar.bz2
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 ~sparc ~x86"
IUSE="ssl ipv6 ldap ares gnutls idn"
DEPEND="ssl? ( gnutls? ( net-libs/gnutls ) )
ssl? ( !gnutls? ( >=dev-libs/openssl-0.9.6a ) )
ldap? ( net-nds/openldap )
idn? ( net-dns/libidn )
x86? ( ares? ( net-dns/c-ares ) )"
_curl_has_old_ver() {
if test -s ${ROOT}/usr/$(get_libdir)/${OLD_PV_LIB}; then
return 0 # /bin/true
else
return 1
fi
}
src_unpack() {
unpack ${A}
epunt_cxx
}
src_compile() {
myconf="$(use_enable ldap)
$(use_with idn libidn)
--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."
ewarn "To enable ares support, emerge with USE='-ipv6'."
myconf="${myconf} $(use_enable ipv6)"
else
if use x86; then
myconf="${myconf} $(use_enable ipv6) $(use_enable ares)"
fi
fi
if use ssl && 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
if _curl_has_old_ver; then
einfo "Detected old version of curl - installing compat libs"
cd ${WORKDIR}/${PN}-${OLD_PV}
econf ${myconf}
emake || die "make for old version failed"
fi
cd ${S}
econf ${myconf}
emake || die "install failed for current version"
}
src_install() {
if _curl_has_old_ver; then
cd ${WORKDIR}/${PN}-${OLD_PV}/lib
make DESTDIR=${D} install-libLTLIBRARIES || die "install failed for old version"
fi
cd ${S}
make DESTDIR="${D}" install || die "installed failed for current version"
insinto /usr/share/aclocal
doins docs/libcurl/libcurl.m4
dodoc CHANGES README
dodoc docs/FEATURES docs/INSTALL docs/INTERNALS docs/LIBCURL
dodoc docs/MANUAL docs/FAQ docs/BUGS docs/CONTRIBUTE
}
|