mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-31 09:08:08 -07:00
Bug: https://bugs.gentoo.org/473598 Bug: https://bugs.gentoo.org/720224 Signed-off-by: Fabian Groffen <grobian@gentoo.org>
24 lines
589 B
Bash
24 lines
589 B
Bash
# Copyright 2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit multilib-build
|
|
|
|
DESCRIPTION="Virtual for libz.so providers"
|
|
SLOT="0/1"
|
|
KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 ~sparc x86 ~arm64-macos ~x64-macos ~x64-solaris"
|
|
IUSE="minizip static-libs"
|
|
|
|
RDEPEND="
|
|
|| (
|
|
>=sys-libs/zlib-1.3.1[${MULTILIB_USEDEP},minizip?,static-libs?]
|
|
(
|
|
sys-libs/zlib-ng[${MULTILIB_USEDEP},compat,static-libs(-)?]
|
|
minizip? (
|
|
sys-libs/minizip-ng[${MULTILIB_USEDEP},compat,static-libs(-)?]
|
|
)
|
|
)
|
|
)
|
|
"
|