blob: e2113d3eed7c23bc02d94f0b1af5c3e96a2d1811 (
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/curl-7.17.1.ebuild,v 1.8 2008/04/05 12:42:58 dragonheart Exp $
# NOTE: If you bump this ebuild, make sure you bump dev-python/pycurl!
inherit libtool eutils
#MY_P=${P/_pre/-}
DESCRIPTION="A Client that groks URLs"
HOMEPAGE="http://curl.haxx.se/ http://curl.planetmirror.com"
#SRC_URI="http://cool.haxx.se/curl-daily/${MY_P}.tar.bz2"
SRC_URI="http://curl.planetmirror.com/download/${P}.tar.bz2"
LICENSE="MIT X11"
SLOT="0"
KEYWORDS="alpha amd64 ~arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc ~sparc-fbsd x86 ~x86-fbsd"
IUSE="ssl ipv6 ldap ares gnutls nss idn kerberos test"
#IUSE="ssl ipv6 ldap ares gnutls libssh2 nss idn kerberos test"
RDEPEND="gnutls? ( net-libs/gnutls app-misc/ca-certificates )
nss? ( !gnutls? ( dev-libs/nss app-misc/ca-certificates ) )
ssl? ( !gnutls? ( !nss? ( dev-libs/openssl app-misc/ca-certificates ) ) )
ldap? ( net-nds/openldap )
idn? ( net-dns/libidn )
ares? ( >=net-dns/c-ares-1.4.0 )
kerberos? ( virtual/krb5 )"
# libssh2? ( >=net-libs/libssh2-0.16 )"
# net-libs/libssh2 (masked) --with-libssh2
# fbopenssl (not in gentoo) --with-spnego
# krb4 http://web.mit.edu/kerberos/www/krb4-end-of-life.html
DEPEND="${RDEPEND}
test? (
sys-apps/diffutils
dev-lang/perl
)"
# used - but can do without in self test: net-misc/stunnel
#S="${WORKDIR}"/${MY_P}
src_unpack() {
unpack ${A}
cd "${S}"
# epatch "${FILESDIR}"/${P}-strip-ldflags.patch
epatch "${FILESDIR}"/curl-7.16.2-strip-ldflags.patch
epatch "${FILESDIR}"/${P}-null-handler-segfault.patch
elibtoolize
}
src_compile() {
myconf="$(use_enable ldap)
$(use_enable ldap ldaps)
$(use_with idn libidn)
$(use_with kerberos gssapi /usr)
$(use_enable ipv6)
--enable-http
--enable-ftp
--enable-gopher
--enable-file
--enable-dict
--enable-manual
--enable-telnet
--enable-nonblocking
--enable-largefile
--enable-maintainer-mode
--disable-sspi
--with-ca-bundle=/etc/ssl/certs/ca-certificates.crt
--without-krb4
--without-libssh2
--without-spnego"
# $(use_with libssh2)
if use ldap && use kerberos; then
die 'ldap and kerberos (gssapi) not playing nicely try version >=7.18.1'
fi
if use ipv6 && use ares; then
elog "c-ares support disabled because it is incompatible with ipv6."
myconf="${myconf} --disable-ares"
else
myconf="${myconf} $(use_enable ares)"
fi
if use gnutls; then
myconf="${myconf} --without-ssl --with-gnutls --without-nss"
elif use nss; then
myconf="${myconf} --without-ssl --without-gnutls --with-nss"
elif use ssl; then
myconf="${myconf} --without-gnutls --without-nss --with-ssl"
else
myconf="${myconf} --without-gnutls --without-nss --without-ssl"
fi
econf ${myconf} || die 'configure failed'
emake || die "install failed for current version"
}
src_test() {
if use gnutls; then
elog 'disabling test 405 ftps as gnutls does differing return codes'
elog 'that the test case does not allow for. '
elog 'https://bugs.gentoo.org/show_bug.cgi?id=204130 refers'
cd "${S}"/tests
./runtests.pl -a -s '!405' || die 'self test failed'
else
make check || die 'self test failed'
fi
}
src_install() {
emake DESTDIR="${D}" install || die "installed failed for current version"
rm -rf "${D}"/etc/
# https://sourceforge.net/tracker/index.php?func=detail&aid=1705197&group_id=976&atid=350976
insinto /usr/share/aclocal
doins docs/libcurl/libcurl.m4
dodoc CHANGES README
dodoc docs/FEATURES docs/INTERNALS
dodoc docs/MANUAL docs/FAQ docs/BUGS docs/CONTRIBUTE
}
pkg_postinst() {
if [[ -e "${ROOT}"/usr/$(get_libdir)/libcurl.so.3 ]] ; then
elog "You must re-compile all packages that are linked against"
elog "curl-7.15.* by using revdep-rebuild from gentoolkit:"
elog "# revdep-rebuild --library libcurl.so.3"
fi
}
|