Gentoo Archives: gentoo-commits

From: "Mike Frysinger (vapier)" <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-misc/wget: metadata.xml wget-1.14.ebuild ChangeLog
Date: Thu, 23 Aug 2012 18:15:53
Message-Id: 20120823181441.1B22E204A4@flycatcher.gentoo.org
1 vapier 12/08/23 18:14:41
2
3 Modified: metadata.xml wget-1.14.ebuild ChangeLog
4 Log:
5 Add USE="pcre uuid zlib" flags to control new deps #432468 by Yuta SATOH.
6
7 (Portage version: 2.2.0_alpha120/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.10 net-misc/wget/metadata.xml
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/wget/metadata.xml?rev=1.10&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/wget/metadata.xml?rev=1.10&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/wget/metadata.xml?r1=1.9&r2=1.10
15
16 Index: metadata.xml
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-misc/wget/metadata.xml,v
19 retrieving revision 1.9
20 retrieving revision 1.10
21 diff -u -r1.9 -r1.10
22 --- metadata.xml 23 Sep 2009 19:55:16 -0000 1.9
23 +++ metadata.xml 23 Aug 2012 18:14:40 -0000 1.10
24 @@ -4,5 +4,6 @@
25 <herd>base-system</herd>
26 <use>
27 <flag name='ntlm'>Enable support for NTLM (Windows-based) authorization</flag>
28 + <flag name='uuid'>Generate UUIDs for the WARC (Web ARChive file format) using libuuid; otherwise use a simple RNG (random number generator)</flag>
29 </use>
30 </pkgmetadata>
31
32
33
34 1.2 net-misc/wget/wget-1.14.ebuild
35
36 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/wget/wget-1.14.ebuild?rev=1.2&view=markup
37 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/wget/wget-1.14.ebuild?rev=1.2&content-type=text/plain
38 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/wget/wget-1.14.ebuild?r1=1.1&r2=1.2
39
40 Index: wget-1.14.ebuild
41 ===================================================================
42 RCS file: /var/cvsroot/gentoo-x86/net-misc/wget/wget-1.14.ebuild,v
43 retrieving revision 1.1
44 retrieving revision 1.2
45 diff -u -r1.1 -r1.2
46 --- wget-1.14.ebuild 6 Aug 2012 19:43:48 -0000 1.1
47 +++ wget-1.14.ebuild 23 Aug 2012 18:14:40 -0000 1.2
48 @@ -1,6 +1,6 @@
49 # Copyright 1999-2012 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 -# $Header: /var/cvsroot/gentoo-x86/net-misc/wget/wget-1.14.ebuild,v 1.1 2012/08/06 19:43:48 vapier Exp $
52 +# $Header: /var/cvsroot/gentoo-x86/net-misc/wget/wget-1.14.ebuild,v 1.2 2012/08/23 18:14:40 vapier Exp $
53
54 EAPI="4"
55
56 @@ -13,13 +13,16 @@
57 LICENSE="GPL-3"
58 SLOT="0"
59 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~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"
60 -IUSE="debug gnutls idn ipv6 nls ntlm +ssl static"
61 +IUSE="debug gnutls idn ipv6 nls ntlm pcre +ssl static uuid zlib"
62
63 LIB_DEPEND="idn? ( net-dns/libidn[static-libs(+)] )
64 + pcre? ( dev-libs/libpcre[static-libs(+)] )
65 ssl? (
66 gnutls? ( net-libs/gnutls[static-libs(+)] )
67 !gnutls? ( >=dev-libs/openssl-0.9.6b[static-libs(+)] )
68 - )"
69 + )
70 + uuid? ( sys-apps/util-linux[static-libs(+)] )
71 + zlib? ( sys-libs/zlib[static-libs(+)] )"
72 RDEPEND="!static? ( ${LIB_DEPEND//\[static-libs(+)]} )"
73 DEPEND="${RDEPEND}
74 app-arch/xz-utils
75 @@ -46,6 +49,9 @@
76 # the configure script contains a few hacks to workaround openssl
77 # build limitations. disable those, and use openssl's pkg-config.
78 eval export ac_cv_lib_{z_compress,dl_{dlopen,shl_load}}=no
79 + # some libraries tests lack configure options :( #432468
80 + eval export ac_cv_{header_pcre_h,lib_pcre_pcre_compile}=$(usex pcre)
81 + eval export ac_cv_{header_uuid_uuid_h,lib_uuid_uuid_generate}=$(usex uuid)
82
83 if use static ; then
84 append-ldflags -static
85 @@ -61,7 +67,8 @@
86 $(use_enable ipv6) \
87 $(use_enable nls) \
88 $(use_enable ntlm) \
89 - $(use_enable debug)
90 + $(use_enable debug) \
91 + $(use_with zlib)
92 }
93
94 src_install() {
95
96
97
98 1.165 net-misc/wget/ChangeLog
99
100 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/wget/ChangeLog?rev=1.165&view=markup
101 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/wget/ChangeLog?rev=1.165&content-type=text/plain
102 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/wget/ChangeLog?r1=1.164&r2=1.165
103
104 Index: ChangeLog
105 ===================================================================
106 RCS file: /var/cvsroot/gentoo-x86/net-misc/wget/ChangeLog,v
107 retrieving revision 1.164
108 retrieving revision 1.165
109 diff -u -r1.164 -r1.165
110 --- ChangeLog 6 Aug 2012 19:43:48 -0000 1.164
111 +++ ChangeLog 23 Aug 2012 18:14:40 -0000 1.165
112 @@ -1,6 +1,10 @@
113 # ChangeLog for net-misc/wget
114 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
115 -# $Header: /var/cvsroot/gentoo-x86/net-misc/wget/ChangeLog,v 1.164 2012/08/06 19:43:48 vapier Exp $
116 +# $Header: /var/cvsroot/gentoo-x86/net-misc/wget/ChangeLog,v 1.165 2012/08/23 18:14:40 vapier Exp $
117 +
118 + 23 Aug 2012; Mike Frysinger <vapier@g.o> metadata.xml,
119 + wget-1.14.ebuild:
120 + Add USE="pcre uuid zlib" flags to control new deps #432468 by Yuta SATOH.
121
122 *wget-1.14 (06 Aug 2012)