From 64f527626ccc09459d76e21ff05c0462fb5e7c82 Mon Sep 17 00:00:00 2001 From: Jan-Espen Oversand Date: Wed, 1 Jul 2026 14:04:57 +0200 Subject: [PATCH] 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 --- .../vtun-ng/{vtun-ng-3.1.1.ebuild => vtun-ng-3.1.1-r1.ebuild} | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) rename net-vpn/vtun-ng/{vtun-ng-3.1.1.ebuild => vtun-ng-3.1.1-r1.ebuild} (98%) diff --git a/net-vpn/vtun-ng/vtun-ng-3.1.1.ebuild b/net-vpn/vtun-ng/vtun-ng-3.1.1-r1.ebuild similarity index 98% rename from net-vpn/vtun-ng/vtun-ng-3.1.1.ebuild rename to net-vpn/vtun-ng/vtun-ng-3.1.1-r1.ebuild index 389743ca30..47845b0f36 100644 --- a/net-vpn/vtun-ng/vtun-ng-3.1.1.ebuild +++ b/net-vpn/vtun-ng/vtun-ng-3.1.1-r1.ebuild @@ -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 }