diff options
author | Bernard Cafarelli <voyageur@gentoo.org> | 2022-07-17 11:22:02 +0200 |
---|---|---|
committer | Bernard Cafarelli <voyageur@gentoo.org> | 2022-07-17 11:23:12 +0200 |
commit | 3030fc80777b9245d3e0c5b27c42d6f755bb4fb6 (patch) | |
tree | c79cd2cdf8d16dfcf135e4dc0d84cc2e2635389e /net-misc/wget2/wget2-9999.ebuild | |
parent | media-sound/abcmidi: x86 stable wrt bug #858479 (diff) | |
download | gentoo-3030fc80777b9245d3e0c5b27c42d6f755bb4fb6.tar.gz gentoo-3030fc80777b9245d3e0c5b27c42d6f755bb4fb6.tar.bz2 gentoo-3030fc80777b9245d3e0c5b27c42d6f755bb4fb6.zip |
net-misc/wget2: restore USE=lzip to fix automagic detection
This feature still exists in current versions and when enabled can fail
compilation in some cases
Bug: https://bugs.gentoo.org/822057
Signed-off-by: Bernard Cafarelli <voyageur@gentoo.org>
Diffstat (limited to 'net-misc/wget2/wget2-9999.ebuild')
-rw-r--r-- | net-misc/wget2/wget2-9999.ebuild | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/net-misc/wget2/wget2-9999.ebuild b/net-misc/wget2/wget2-9999.ebuild index 57cdc0a2f977..0640899212dd 100644 --- a/net-misc/wget2/wget2-9999.ebuild +++ b/net-misc/wget2/wget2-9999.ebuild @@ -14,7 +14,7 @@ else fi LICENSE="GPL-3" SLOT="0/0" # subslot = libwget.so version -IUSE="brotli bzip2 doc +gnutls gpgme +http2 idn lzma openssl pcre psl +ssl test valgrind xattr zlib" +IUSE="brotli bzip2 doc +gnutls gpgme +http2 idn lzip lzma openssl pcre psl +ssl test valgrind xattr zlib" REQUIRED_USE="valgrind? ( test )" RDEPEND=" @@ -34,6 +34,7 @@ RDEPEND=" ) http2? ( net-libs/nghttp2 ) idn? ( net-dns/libidn2:= ) + lzip? ( app-arch/lzlib ) lzma? ( app-arch/xz-utils ) pcre? ( dev-libs/libpcre2 ) psl? ( net-libs/libpsl ) @@ -94,6 +95,7 @@ src_configure() { $(use_with gpgme) $(use_with http2 libnghttp2) $(use_with idn libidn2) + $(use_with lzip lz) $(use_with lzma) $(use_with pcre libpcre2) $(use_with psl libpsl) |