summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2014-01-13 21:42:38 +0000
committerMike Frysinger <vapier@gentoo.org>2014-01-13 21:42:38 +0000
commitc033f53ad3b6a8fe3543b1da0611146dc6af92b5 (patch)
tree0ccf2a6fb5e0ced8cdf9955325c22a6ae400f972 /net-misc/wget
parentMinor fixes for 1.7.3/1.8.0 version bumps. (diff)
downloadgentoo-2-c033f53ad3b6a8fe3543b1da0611146dc6af92b5.tar.gz
gentoo-2-c033f53ad3b6a8fe3543b1da0611146dc6af92b5.tar.bz2
gentoo-2-c033f53ad3b6a8fe3543b1da0611146dc6af92b5.zip
Cut over to new configure flags rather than set ac_cv_xxx vars directly #497896 by James Le Cuirot.
(Portage version: 2.2.8/cvs/Linux x86_64, signed Manifest commit with key D2E96200)
Diffstat (limited to 'net-misc/wget')
-rw-r--r--net-misc/wget/ChangeLog6
-rw-r--r--net-misc/wget/wget-1.14-r1.ebuild10
2 files changed, 9 insertions, 7 deletions
diff --git a/net-misc/wget/ChangeLog b/net-misc/wget/ChangeLog
index cfbdb79a7f54..0f4976e0b633 100644
--- a/net-misc/wget/ChangeLog
+++ b/net-misc/wget/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for net-misc/wget
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/wget/ChangeLog,v 1.179 2014/01/04 18:45:31 polynomial-c Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/wget/ChangeLog,v 1.180 2014/01/13 21:42:38 vapier Exp $
+
+ 13 Jan 2014; Mike Frysinger <vapier@gentoo.org> wget-1.14-r1.ebuild:
+ Cut over to new configure flags rather than set ac_cv_xxx vars directly
+ #497896 by James Le Cuirot.
04 Jan 2014; Lars Wendler <polynomial-c@gentoo.org> -wget-1.12-r3.ebuild,
-wget-1.13.3-r2.ebuild, -wget-1.13.4.ebuild, -wget-1.13.4-r1.ebuild,
diff --git a/net-misc/wget/wget-1.14-r1.ebuild b/net-misc/wget/wget-1.14-r1.ebuild
index 284d25dca107..6a208cd68ff1 100644
--- a/net-misc/wget/wget-1.14-r1.ebuild
+++ b/net-misc/wget/wget-1.14-r1.ebuild
@@ -1,6 +1,6 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/wget/wget-1.14-r1.ebuild,v 1.1 2013/12/23 07:23:59 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/wget/wget-1.14-r1.ebuild,v 1.2 2014/01/13 21:42:38 vapier Exp $
EAPI="4"
@@ -52,10 +52,6 @@ src_configure() {
# the included gnutls -- force ioctl.h to include this header
[[ ${CHOST} == *-solaris* ]] && append-flags -DBSD_COMP=1
- # some libraries tests lack configure options :( #432468
- eval export ac_cv_{header_pcre_h,lib_pcre_pcre_compile}=$(usex pcre)
- eval export ac_cv_{header_uuid_uuid_h,lib_uuid_uuid_generate}=$(usex uuid)
-
if use static ; then
append-ldflags -static
tc-export PKG_CONFIG
@@ -70,7 +66,9 @@ src_configure() {
$(use_enable ipv6) \
$(use_enable nls) \
$(use_enable ntlm) \
+ $(use_enable pcre) \
$(use_enable debug) \
+ $(use_with uuid libuuid) \
$(use_with zlib)
}