mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-09 00:07:57 +03:00
Done via: ``` git grep -l 'virtual/zlib-' | xargs sed -i -r -e 's@virtual/zlib-[0-9.]*(-r[0-9]*)?@&:=@g' git grep -l 'virtual/zlib-' | xargs sed -i -e 's@:=:=@:=@g' pkgcheck scan --commits \ -c SourcingCheck,VisibilityCheck,DependencyCheck --exit error ``` Signed-off-by: Michał Górny <mgorny@gentoo.org>
62 lines
1.3 KiB
Bash
62 lines
1.3 KiB
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit cmake-multilib
|
|
|
|
DESCRIPTION="Library for reading and editing audio meta data"
|
|
HOMEPAGE="https://taglib.github.io/"
|
|
SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="LGPL-2.1 MPL-1.1"
|
|
SLOT="0"
|
|
KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~mips ppc ppc64 ~riscv ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos"
|
|
IUSE="doc examples test"
|
|
|
|
RESTRICT="!test? ( test )"
|
|
|
|
RDEPEND=">=virtual/zlib-1.2.8-r1:=[${MULTILIB_USEDEP}]"
|
|
DEPEND="${RDEPEND}
|
|
test? ( >=dev-util/cppunit-1.13.2[${MULTILIB_USEDEP}] )
|
|
"
|
|
BDEPEND="
|
|
virtual/pkgconfig
|
|
doc? ( app-text/doxygen[dot] )
|
|
"
|
|
|
|
# https://github.com/taglib/taglib/issues/1098
|
|
PATCHES=( "${FILESDIR}"/${P}-pkgconfig.patch )
|
|
|
|
MULTILIB_CHOST_TOOLS=(
|
|
/usr/bin/taglib-config
|
|
)
|
|
|
|
multilib_src_configure() {
|
|
local mycmakeargs=(
|
|
-DBUILD_EXAMPLES=$(multilib_native_usex examples)
|
|
-DBUILD_TESTING=$(usex test)
|
|
)
|
|
cmake_src_configure
|
|
}
|
|
|
|
multilib_src_compile() {
|
|
cmake_src_compile
|
|
|
|
if multilib_is_native_abi; then
|
|
use doc && cmake_build docs
|
|
fi
|
|
}
|
|
|
|
multilib_src_test() {
|
|
eninja check
|
|
}
|
|
|
|
multilib_src_install() {
|
|
cmake_src_install
|
|
|
|
if multilib_is_native_abi && use doc; then
|
|
HTML_DOCS=( "${BUILD_DIR}"/doc/html/. )
|
|
fi
|
|
}
|