gentoo-ebuilds/app-arch/libdeflate/libdeflate-1.25.ebuild
Paul Zander bfb557eeb9
app-arch/libdeflate: add 1.25
Fixes gcc-16 build

Signed-off-by: Paul Zander <negril.nx+gentoo@gmail.com>
Signed-off-by: Sam James <sam@gentoo.org>
2025-11-06 15:11:45 +00:00

57 lines
1.3 KiB
Bash

# Copyright 2019-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake-multilib
DESCRIPTION="Heavily optimized DEFLATE/zlib/gzip (de)compression"
HOMEPAGE="https://github.com/ebiggers/libdeflate"
if [[ ${PV} == *9999* ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/ebiggers/libdeflate.git"
else
SRC_URI="
https://github.com/ebiggers/libdeflate/archive/v${PV}.tar.gz -> ${P}.tar.gz
"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
fi
LICENSE="MIT"
SLOT="0"
# the zlib USE-flag enables support for zlib
# the test USE-flag programs depend on virtual/zlib for comparison tests
IUSE="+utils test"
RESTRICT="
!test? ( test )
"
DEPEND="
test? ( virtual/zlib[${MULTILIB_USEDEP}] )
"
PATCHES=(
"${FILESDIR}/${PN}-1.19-make-gzip-tests-conditional.patch"
)
src_configure() {
local mycmakeargs=(
-DLIBDEFLATE_BUILD_SHARED_LIB="yes"
-DLIBDEFLATE_BUILD_STATIC_LIB="no"
-DLIBDEFLATE_USE_SHARED_LIB="yes"
-DLIBDEFLATE_COMPRESSION_SUPPORT="yes"
-DLIBDEFLATE_DECOMPRESSION_SUPPORT="yes"
-DLIBDEFLATE_BUILD_GZIP="$(usex utils)"
-DLIBDEFLATE_GZIP_SUPPORT="yes"
-DLIBDEFLATE_ZLIB_SUPPORT="yes"
-DLIBDEFLATE_BUILD_TESTS="$(usex test)"
)
cmake-multilib_src_configure
}