From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 45B2A138334 for ; Wed, 22 May 2019 01:25:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5715BE0871; Wed, 22 May 2019 01:25:35 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 39390E0871 for ; Wed, 22 May 2019 01:25:34 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 44CF6344C93 for ; Wed, 22 May 2019 01:25:33 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CC4505EB for ; Wed, 22 May 2019 01:25:30 +0000 (UTC) From: "Stefan Strogin" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Stefan Strogin" Message-ID: <1558488204.33935a110ddaa4bcac9a61a66392473f436e29ca.steils@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/opus/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/opus/opus-1.3.1-r1.ebuild X-VCS-Directories: media-libs/opus/ X-VCS-Committer: steils X-VCS-Committer-Name: Stefan Strogin X-VCS-Revision: 33935a110ddaa4bcac9a61a66392473f436e29ca X-VCS-Branch: master Date: Wed, 22 May 2019 01:25:30 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: c11da5cd-f6db-44a5-bbb9-f15463dc0d43 X-Archives-Hash: afde55d1c2a6826d9c4b73337146c8e2 commit: 33935a110ddaa4bcac9a61a66392473f436e29ca Author: Peter Levine gmail com> AuthorDate: Mon May 20 03:25:00 2019 +0000 Commit: Stefan Strogin gentoo org> CommitDate: Wed May 22 01:23:24 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=33935a11 media-libs/opus: enable building with -ffast-math or -Ofast Add support for --enable-float-approx configure option which enables functions that are safe to use with the -ffast-math C{XX}FLAG. Package-Manager: Portage-2.3.66, Repoman-2.3.12 Closes: https://bugs.gentoo.org/621978 Signed-off-by: Peter Levine gmail.com> Closes: https://github.com/gentoo/gentoo/pull/12060 Signed-off-by: Stefan Strogin gentoo.org> media-libs/opus/opus-1.3.1-r1.ebuild | 42 ++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) diff --git a/media-libs/opus/opus-1.3.1-r1.ebuild b/media-libs/opus/opus-1.3.1-r1.ebuild new file mode 100644 index 00000000000..6658b6af799 --- /dev/null +++ b/media-libs/opus/opus-1.3.1-r1.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2019 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 ~amd64-fbsd" +INTRINSIC_FLAGS="cpu_flags_x86_sse cpu_flags_arm_neon" +IUSE="custom-modes doc static-libs ${INTRINSIC_FLAGS}" + +DEPEND="doc? ( + app-doc/doxygen + media-gfx/graphviz + )" + +multilib_src_configure() { + local myeconfargs=( + $(use_enable custom-modes) + $(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 + + ECONF_SOURCE="${S}" econf "${myeconfargs[@]}" +} + +multilib_src_install_all() { + default + find "${ED}" -name "*.la" -delete || die +}