mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-10 00:10:19 +03:00
Signed-off-by: Sasha Finkelstein <fnkl.kernel@gmail.com> Part-of: https://github.com/gentoo/gentoo/pull/44450 Signed-off-by: Sam James <sam@gentoo.org>
72 lines
1.7 KiB
Bash
72 lines
1.7 KiB
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
PYTHON_COMPAT=( python3_{10..14} )
|
|
inherit flag-o-matic meson-multilib python-any-r1
|
|
|
|
DESCRIPTION="Open codec for interactive speech and music transmission over the Internet"
|
|
HOMEPAGE="https://opus-codec.org/"
|
|
SRC_URI="https://downloads.xiph.org/releases/opus/${P}.tar.gz"
|
|
|
|
LICENSE="BSD"
|
|
SLOT="0"
|
|
KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~m68k ~mips ppc ppc64 ~riscv ~sparc x86"
|
|
INTRINSIC_FLAGS="cpu_flags_x86_sse cpu_flags_arm_neon"
|
|
IUSE="custom-modes debug deep-plc dred doc hardened osce static-libs test ${INTRINSIC_FLAGS}"
|
|
REQUIRED_USE="
|
|
dred? ( deep-plc )
|
|
osce? ( deep-plc )
|
|
"
|
|
RESTRICT="!test? ( test )"
|
|
|
|
BDEPEND="
|
|
${PYTHON_DEPS}
|
|
doc? (
|
|
app-text/doxygen
|
|
media-gfx/graphviz
|
|
)
|
|
"
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}"/${PN}-1.3.1-libdir-macro.patch
|
|
"${FILESDIR}"/${PN}-1.4-arm64-neon.patch
|
|
)
|
|
|
|
multilib_src_configure() {
|
|
local emesonargs=(
|
|
-Ddefault_library=$(multilib_native_usex static-libs both shared)
|
|
|
|
$(meson_use custom-modes)
|
|
$(meson_feature test tests)
|
|
$(meson_use debug assertions)
|
|
$(meson_use hardened hardening)
|
|
$(meson_feature deep-plc)
|
|
$(meson_feature dred)
|
|
$(meson_feature osce)
|
|
|
|
$(meson_native_use_feature doc docs)
|
|
|
|
-Ddocdir="${EPREFIX}"/usr/share/doc/${PF}
|
|
)
|
|
|
|
# Disable intrinsics if no flags are enabled (bug #752069)
|
|
# bug #752069
|
|
# TODO: What is -Dasm for?
|
|
local i
|
|
for i in ${INTRINSIC_FLAGS} ; do
|
|
use ${i} && emesonargs+=( -Dintrinsics=enabled ) && break
|
|
done || emesonargs+=( -Dintrinsics=disabled )
|
|
|
|
if is-flagq -ffast-math || is-flagq -Ofast ; then
|
|
emesonargs+=( -Dfloat-approx=true )
|
|
fi
|
|
|
|
meson_src_configure
|
|
}
|
|
|
|
multilib_src_test() {
|
|
meson_src_test --timeout-multiplier=2
|
|
}
|