net-vpn/vtun-ng: fix removed feature flag zlib

Zlib is required now in order to display dependency licenses via
the --dependency-licenses. The license bundle is quite big so it
is embedded compressed (gz) in the binary. Because of that zlib
is no longer possible to turn off.

Closes: https://bugs.gentoo.org/978344
Signed-off-by: Jan-Espen Oversand <sigsegv@radiotube.org>
This commit is contained in:
Jan-Espen Oversand
2026-07-01 14:04:57 +02:00
parent 641ccb2548
commit 64f527626c

View File

@@ -134,7 +134,7 @@ SRC_URI="${CARGO_CRATE_URIS}
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~ppc"
IUSE="systemd +lzo +zlib"
IUSE="systemd +lzo"
RUST_MIN_VER="1.88.0"
@@ -152,7 +152,6 @@ src_unpack() {
src_configure() {
local myfeatures=(
$(usev lzo)
$(usev zlib)
)
cargo_src_configure
}