blob: e2e64183e290acaac1a2c5b6f8b02c09cb2e9c09 (
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
|
# 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.10.2.ebuild,v 1.6 2005/10/20 03:48:04 metalgod Exp $
inherit eutils flag-o-matic
PATCHVER=0.1
DESCRIPTION="Network utility to retrieve files from the WWW"
HOMEPAGE="http://wget.sunsite.dk/"
SRC_URI="http://dev.gentoo.org/~seemant/distfiles/${P}.tar.gz
http://dev.gentoo.org/~seemant/distfiles/${P}-gentoo-${PATCHVER}.tar.bz2
mirror://gentoo/${P}.tar.gz
mirror://gnu/wget/${P}.tar.gz
mirror://gentoo/${P}-gentoo-${PATCHVER}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~m68k ~mips ppc ~ppc-macos ~ppc64 ~s390 ~sh sparc x86"
IUSE="build debug ipv6 nls socks5 ssl static"
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}"
local PATCHDIR=${WORKDIR}/patches
EPATCH_SUFFIX="patch"
EPATCH_MULTI_MSG="Applying Gentoo patches ..." epatch "${PATCHDIR}"/gentoo
EPATCH_MULTI_MSG="Applying Mandrake patches ..." epatch "${PATCHDIR}"/mandrake
autoconf || die "autoconf failed"
}
src_compile() {
use static && append-ldflags -static
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
emake || die
}
src_install() {
if use build ; then
dobin "${S}"/src/wget || die "dobin"
return 0
fi
make DESTDIR="${D}" install || die
dodoc AUTHORS ChangeLog MAILING-LIST NEWS README TODO
dodoc doc/sample.wgetrc
if use ipv6 ; then
ebegin "Adding a note about ipv6 in the config file"
cat ${FILESDIR}/wgetrc-ipv6 >> ${D}/etc/wget/wgetrc
eend $?
fi
}
|