mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-07-23 23:48:22 +02:00
Change was created by running the following command:: ekeyword ^ia64 */*/*.ebuild Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
55 lines
1.3 KiB
Bash
55 lines
1.3 KiB
Bash
# Copyright 2019-2024 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 ~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 sys-libs/zlib for comparison tests
|
|
IUSE="+utils test"
|
|
|
|
RESTRICT="
|
|
!test? ( test )
|
|
"
|
|
|
|
DEPEND="
|
|
test? ( sys-libs/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
|
|
}
|