diff options
author | Alexis Ballier <aballier@gentoo.org> | 2017-02-15 21:11:59 +0100 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2017-02-15 21:12:13 +0100 |
commit | 33db045b96c4922c212248920f13626a8fe0a7d8 (patch) | |
tree | de120e386077773ace5a81439f5fc0fc2dd05357 /media-libs/opus/opus-1.1.4.ebuild | |
parent | gnome-extra/evolution-data-server: remove old (diff) | |
download | gentoo-33db045b96c4922c212248920f13626a8fe0a7d8.tar.gz gentoo-33db045b96c4922c212248920f13626a8fe0a7d8.tar.bz2 gentoo-33db045b96c4922c212248920f13626a8fe0a7d8.zip |
media-libs/opus: Bump to 1.1.4. Fix logic in disabling intrinsics.
Package-Manager: Portage-2.3.3, Repoman-2.3.1
Diffstat (limited to 'media-libs/opus/opus-1.1.4.ebuild')
-rw-r--r-- | media-libs/opus/opus-1.1.4.ebuild | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/media-libs/opus/opus-1.1.4.ebuild b/media-libs/opus/opus-1.1.4.ebuild new file mode 100644 index 000000000000..75eff7ba7582 --- /dev/null +++ b/media-libs/opus/opus-1.1.4.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 +inherit multilib-minimal + +if [[ ${PV} == *9999 ]] ; then + inherit git-2 + EGIT_REPO_URI="git://git.opus-codec.org/opus.git" +else + SRC_URI="http://downloads.xiph.org/releases/${PN}/${P}.tar.gz" + KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd" +fi + +DESCRIPTION="Open codec designed for internet transmission of interactive speech and audio" +HOMEPAGE="http://opus-codec.org/" +SRC_URI="http://downloads.xiph.org/releases/opus/${P}.tar.gz" + +LICENSE="BSD-2" +SLOT="0" + +# ABI -> intrinsics cpu flag (must have only one flag per abi) +INTRINSIC_ABI_MAP="x86:cpu_flags_x86_sse amd64:cpu_flags_x86_sse arm:neon arm64:neon" +IUSE="ambisonics custom-modes doc static-libs" +for i in ${INTRINSIC_ABI_MAP} ; do + IUSE="${IUSE} ${i#*:}" +done + +DEPEND="doc? ( app-doc/doxygen )" + +multilib_src_configure() { + local myeconfargs=( + $(use_enable custom-modes) + $(use_enable ambisonics) + $(use_enable doc) + ) + for i in ${INTRINSIC_ABI_MAP} ; do + local abi=${i%:*} + local flag=${i#*:} + if [ x"${ABI}" = x"${abi}" ] ; then + use ${flag} || myeconfargs+=( --disable-intrinsics ) + fi + done + ECONF_SOURCE="${S}" \ + econf "${myeconfargs[@]}" +} |