diff options
author | Sam James <sam@gentoo.org> | 2021-05-28 17:37:04 +0200 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2021-05-28 17:37:04 +0200 |
commit | 93253755df3984a0154319e605ef43c938124dfe (patch) | |
tree | ba30fc1de2797c101cff3b01adeadb8d05d71a1f /media-libs | |
parent | media-libs/libogg: fix libdir in installed M4 macro (diff) | |
download | gentoo-93253755df3984a0154319e605ef43c938124dfe.tar.gz gentoo-93253755df3984a0154319e605ef43c938124dfe.tar.bz2 gentoo-93253755df3984a0154319e605ef43c938124dfe.zip |
media-libs/opus: disable intrinsics automagic
Thanks-to: David Michael <fedora.dm0@gmail.com>
Closes: https://bugs.gentoo.org/752069
Signed-off-by: Sam James <sam@gentoo.org>
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'media-libs')
-rw-r--r-- | media-libs/opus/opus-1.3.1-r1.ebuild | 4 | ||||
-rw-r--r-- | media-libs/opus/opus-1.3.1-r2.ebuild | 48 |
2 files changed, 51 insertions, 1 deletions
diff --git a/media-libs/opus/opus-1.3.1-r1.ebuild b/media-libs/opus/opus-1.3.1-r1.ebuild index 257b3a7fb6f1..4386d0bab3ae 100644 --- a/media-libs/opus/opus-1.3.1-r1.ebuild +++ b/media-libs/opus/opus-1.3.1-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -26,9 +26,11 @@ multilib_src_configure() { $(use_enable doc) $(use_enable static-libs static) ) + for i in ${INTRINSIC_FLAGS} ; do use ${i} && myeconfargs+=( --enable-intrinsics ) done + if is-flagq -ffast-math || is-flagq -Ofast; then myeconfargs+=( "--enable-float-approx" ) fi diff --git a/media-libs/opus/opus-1.3.1-r2.ebuild b/media-libs/opus/opus-1.3.1-r2.ebuild new file mode 100644 index 000000000000..08cffd6f0a36 --- /dev/null +++ b/media-libs/opus/opus-1.3.1-r2.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit flag-o-matic multilib-minimal + +DESCRIPTION="Open codec for interactive speech and music transmission over the Internet" +HOMEPAGE="https://opus-codec.org/" +SRC_URI="https://archive.mozilla.org/pub/opus/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86" +INTRINSIC_FLAGS="cpu_flags_x86_sse cpu_flags_arm_neon" +IUSE="custom-modes doc static-libs ${INTRINSIC_FLAGS}" + +BDEPEND="doc? ( + app-doc/doxygen + media-gfx/graphviz + )" + +multilib_src_configure() { + local myeconfargs=( + $(use_enable custom-modes) + $(use_enable doc) + $(use_enable static-libs static) + ) + + local i + # We want to disable intrinsics if no flags are enabled + # (This is a fun Bash construct to do that!) + # bug #752069 + for i in "${INTRINSIC_FLAGS}" ; do + use ${i} && myeconfargs+=( --enable-intrinsics ) && break + done || myeconfargs+=( --disable-intrinsics ) + + if is-flagq -ffast-math || is-flagq -Ofast; then + myeconfargs+=( "--enable-float-approx" ) + fi + + ECONF_SOURCE="${S}" econf "${myeconfargs[@]}" +} + +multilib_src_install_all() { + default + find "${ED}" -name "*.la" -delete || die +} |