blob: ebb63d5194eb33c7c1723c3ed4d0dc7a50f5aa15 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/wget/wget-1.9.1-r3.ebuild,v 1.14 2005/05/10 15:56:47 seemant Exp $
inherit gnuconfig eutils flag-o-matic
IUSE="build debug ipv6 nls socks5 ssl static"
PATCHVER=0.1
DESCRIPTION="Network utility to retrieve files from the WWW"
HOMEPAGE="http://wget.sunsite.dk/"
SRC_URI="mirror://gnu/wget/${P}.tar.gz
mirror://gentoo/${P}-gentoo-${PATCHVER}.tar.bz2
http://dev.gentoo.org/~seemant/distfiles/${P}-gentoo-${PATCHVER}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 mips ppc ppc64 ppc-macos s390 sh sparc x86"
RDEPEND="ssl? ( >=dev-libs/openssl-0.9.6b )
socks5? ( net-proxy/dante )"
DEPEND="${RDEPEND}
nls? ( sys-devel/gettext )
sys-devel/autoconf"
src_unpack() {
unpack ${A} ; cd ${S}
EPATCH_SUFFIX="patch" epatch ${WORKDIR}/gentoo
}
src_compile() {
# Make wget use up-to-date configure scripts
gnuconfig_update
use ssl && append-flags -I/usr/include/openssl
econf \
--sysconfdir=/etc/wget \
$(use_with ssl) $(use_enable ssl opie) $(use_enable ssl digest) \
$(use_enable ipv6) \
$(use_enable nls) \
$(use_enable debug) \
$(use_with socks5 socks) \
|| die
if use static; then
emake LDFLAGS="--static" || die
else
emake || die
fi
}
src_install() {
if use build; then
insinto /usr
dobin ${S}/src/wget
return
fi
make DESTDIR=${D} install || die
dodoc AUTHORS COPYING ChangeLog MACHINES MAILING-LIST NEWS README TODO
dodoc doc/sample.wgetrc
}
|