Gentoo Archives: gentoo-commits

From: "Jeremy Olexa (darkside)" <darkside@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-misc/wget: ChangeLog wget-1.13.3-r1.ebuild wget-1.12-r2.ebuild
Date: Thu, 01 Sep 2011 15:15:55
Message-Id: 20110901151537.76C5020051@flycatcher.gentoo.org
1 darkside 11/09/01 15:15:37
2
3 Modified: ChangeLog
4 Added: wget-1.13.3-r1.ebuild
5 Removed: wget-1.12-r2.ebuild
6 Log:
7 Revision bump with full Gentoo Prefix support, signed off by maintainer with discussion on IRC. Remove old version.
8
9 (Portage version: 2.1.10.3/cvs/Linux i686)
10
11 Revision Changes Path
12 1.141 net-misc/wget/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/wget/ChangeLog?rev=1.141&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/wget/ChangeLog?rev=1.141&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/wget/ChangeLog?r1=1.140&r2=1.141
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/net-misc/wget/ChangeLog,v
21 retrieving revision 1.140
22 retrieving revision 1.141
23 diff -u -r1.140 -r1.141
24 --- ChangeLog 1 Sep 2011 09:24:29 -0000 1.140
25 +++ ChangeLog 1 Sep 2011 15:15:37 -0000 1.141
26 @@ -1,6 +1,13 @@
27 # ChangeLog for net-misc/wget
28 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/net-misc/wget/ChangeLog,v 1.140 2011/09/01 09:24:29 chainsaw Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/net-misc/wget/ChangeLog,v 1.141 2011/09/01 15:15:37 darkside Exp $
31 +
32 +*wget-1.13.3-r1 (01 Sep 2011)
33 +
34 + 01 Sep 2011; Jeremy Olexa <darkside@g.o> -wget-1.12-r2.ebuild,
35 + +wget-1.13.3-r1.ebuild, +files/wget-1.13-static-link-libz.patch:
36 + Revision bump with full Gentoo Prefix support, signed off by maintainer with
37 + discussion on IRC. Remove old version.
38
39 *wget-1.13.3 (01 Sep 2011)
40
41
42
43
44 1.1 net-misc/wget/wget-1.13.3-r1.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/wget/wget-1.13.3-r1.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/wget/wget-1.13.3-r1.ebuild?rev=1.1&content-type=text/plain
48
49 Index: wget-1.13.3-r1.ebuild
50 ===================================================================
51 # Copyright 1999-2011 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/net-misc/wget/wget-1.13.3-r1.ebuild,v 1.1 2011/09/01 15:15:37 darkside Exp $
54
55 EAPI=4
56
57 inherit eutils flag-o-matic
58
59 DESCRIPTION="Network utility to retrieve files from the WWW"
60 HOMEPAGE="http://www.gnu.org/software/wget/"
61 SRC_URI="mirror://gnu/wget/${P}.tar.xz"
62
63 LICENSE="GPL-3"
64 SLOT="0"
65 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
66 IUSE="debug idn ipv6 nls ntlm +ssl static"
67
68 RDEPEND="idn? ( net-dns/libidn )
69 ssl? ( >=dev-libs/openssl-0.9.6b )"
70 DEPEND="${RDEPEND}
71 nls? ( sys-devel/gettext )"
72
73 REQUIRED_USE="ntlm? ( ssl )"
74
75 DOCS=( AUTHORS MAILING-LIST NEWS README doc/sample.wgetrc )
76
77 src_prepare() {
78 epatch "${FILESDIR}"/${PN}-1.13-static-link-libz.patch
79 }
80
81 src_configure() {
82 # openssl-0.9.8 now builds with -pthread on the BSD's
83 use elibc_FreeBSD && use ssl && append-ldflags -pthread
84
85 use static && append-ldflags -static
86 econf \
87 --disable-rpath \
88 $(use_with ssl) $(use_enable ssl opie) $(use_enable ssl digest) \
89 $(use_enable idn iri) \
90 $(use_enable ipv6) \
91 $(use_enable nls) \
92 $(use_enable ntlm) \
93 $(use_enable debug)
94 }
95
96 src_install() {
97 default
98
99 use ipv6 && cat "${FILESDIR}"/wgetrc-ipv6 >> "${ED}"/etc/wgetrc
100
101 sed -i \
102 -e "s:/usr/local/etc:${EPREFIX}/etc:g" \
103 "${ED}"/etc/wgetrc \
104 "${ED}"/usr/share/man/man1/wget.1 \
105 "${ED}"/usr/share/info/wget.info
106 }