mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-12-13 21:47:44 +00:00
Result of running the command: grep --include="*.ebuild" -r . -e 'KEYWORDS=.*[" ]sparc' -l | xargs ekeyword ~sparc Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
61 lines
1.3 KiB
Bash
61 lines
1.3 KiB
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
if [[ ${PV} == 9999 ]]; then
|
|
EGIT_REPO_URI="https://code.videolan.org/videolan/dav1d"
|
|
inherit git-r3
|
|
else
|
|
SRC_URI="https://downloads.videolan.org/pub/videolan/dav1d/${PV}/${P}.tar.xz"
|
|
KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~mips ppc ppc64 ~riscv ~sparc x86 ~arm64-macos ~x64-macos"
|
|
fi
|
|
|
|
inherit meson-multilib
|
|
|
|
DESCRIPTION="dav1d is an AV1 Decoder :)"
|
|
HOMEPAGE="https://code.videolan.org/videolan/dav1d"
|
|
|
|
LICENSE="BSD-2"
|
|
# Check SONAME on version bumps!
|
|
SLOT="0/7"
|
|
IUSE="+8bit +10bit +asm test xxhash"
|
|
RESTRICT="!test? ( test )"
|
|
|
|
ASM_DEPEND=">=dev-lang/nasm-2.15.05"
|
|
DEPEND="xxhash? ( dev-libs/xxhash )"
|
|
BDEPEND="
|
|
asm? (
|
|
abi_x86_32? ( ${ASM_DEPEND} )
|
|
abi_x86_64? ( ${ASM_DEPEND} )
|
|
)
|
|
"
|
|
|
|
DOCS=( README.md doc/PATENTS THANKS.md )
|
|
|
|
multilib_src_configure() {
|
|
local -a bits=()
|
|
use 8bit && bits+=( 8 )
|
|
use 10bit && bits+=( 16 )
|
|
|
|
local enable_asm
|
|
if [[ ${MULTILIB_ABI_FLAG} == abi_x86_x32 ]]; then
|
|
enable_asm=false
|
|
else
|
|
enable_asm=$(usex asm true false)
|
|
fi
|
|
|
|
local emesonargs=(
|
|
-Dbitdepths=$(IFS=,; echo "${bits[*]}")
|
|
-Denable_asm=${enable_asm}
|
|
$(meson_use test enable_tests)
|
|
$(meson_feature xxhash xxhash_muxer)
|
|
)
|
|
meson_src_configure
|
|
}
|
|
|
|
multilib_src_test() {
|
|
if multilib_is_native_abi ; then
|
|
meson_src_test
|
|
fi
|
|
}
|