From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-902530-garchives=archives.gentoo.org@lists.gentoo.org>
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 C9BFA138330
	for <garchives@archives.gentoo.org>; Thu, 22 Sep 2016 09:52:45 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id 7B41BE07FD;
	Thu, 22 Sep 2016 09:52:42 +0000 (UTC)
Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183])
	(using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
	(No client certificate requested)
	by pigeon.gentoo.org (Postfix) with ESMTPS id 04737E07FD
	for <gentoo-commits@lists.gentoo.org>; Thu, 22 Sep 2016 09:52:41 +0000 (UTC)
Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84])
	(using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
	(No client certificate requested)
	by smtp.gentoo.org (Postfix) with ESMTPS id 7AE7433FE7D
	for <gentoo-commits@lists.gentoo.org>; Thu, 22 Sep 2016 09:52:40 +0000 (UTC)
Received: from localhost.localdomain (localhost [127.0.0.1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id 9C9352487
	for <gentoo-commits@lists.gentoo.org>; Thu, 22 Sep 2016 09:52:38 +0000 (UTC)
From: "Alexis Ballier" <aballier@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Content-Transfer-Encoding: 8bit
Content-type: text/plain; charset=UTF-8
Reply-To: gentoo-dev@lists.gentoo.org, "Alexis Ballier" <aballier@gentoo.org>
Message-ID: <1474537944.525f7c18f51bb809d7dc01bebcb041d13c66cc02.aballier@gentoo>
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/opus/
X-VCS-Repository: repo/gentoo
X-VCS-Files: media-libs/opus/metadata.xml media-libs/opus/opus-1.1.3.ebuild
X-VCS-Directories: media-libs/opus/
X-VCS-Committer: aballier
X-VCS-Committer-Name: Alexis Ballier
X-VCS-Revision: 525f7c18f51bb809d7dc01bebcb041d13c66cc02
X-VCS-Branch: master
Date: Thu, 22 Sep 2016 09:52:38 +0000 (UTC)
Precedence: bulk
List-Post: <mailto:gentoo-commits@lists.gentoo.org>
List-Help: <mailto:gentoo-commits+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org>
X-BeenThere: gentoo-commits@lists.gentoo.org
X-Archives-Salt: 24fee1f6-a6ff-4ada-9a84-c90f4e8f4e73
X-Archives-Hash: f6a563bbcd2d1cc97f2e1f20eec31876

commit:     525f7c18f51bb809d7dc01bebcb041d13c66cc02
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Thu Sep 22 09:52:24 2016 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Thu Sep 22 09:52:24 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=525f7c18

media-libs/opus: add (experimental) ambisonics support (bug #594030)

Package-Manager: portage-2.3.1

 media-libs/opus/metadata.xml      | 1 +
 media-libs/opus/opus-1.1.3.ebuild | 3 ++-
 2 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/media-libs/opus/metadata.xml b/media-libs/opus/metadata.xml
index f3553ec..5ff58c7 100644
--- a/media-libs/opus/metadata.xml
+++ b/media-libs/opus/metadata.xml
@@ -6,6 +6,7 @@
     <name>Gentoo Sound project</name>
   </maintainer>
   <use>
+	<flag name="ambisonics">Enable ambisonics support (experimental).</flag>
     <flag name="custom-modes">Build with custom-modes.</flag>
   </use>
 </pkgmetadata>

diff --git a/media-libs/opus/opus-1.1.3.ebuild b/media-libs/opus/opus-1.1.3.ebuild
index 518077f..3cd13c4 100644
--- a/media-libs/opus/opus-1.1.3.ebuild
+++ b/media-libs/opus/opus-1.1.3.ebuild
@@ -20,13 +20,14 @@ SRC_URI="http://downloads.xiph.org/releases/opus/${P}.tar.gz"
 LICENSE="BSD-2"
 SLOT="0"
 INTRINSIC_FLAGS="cpu_flags_x86_sse neon"
-IUSE="custom-modes doc static-libs ${INTRINSIC_FLAGS}"
+IUSE="ambisonics custom-modes doc static-libs ${INTRINSIC_FLAGS}"
 
 DEPEND="doc? ( app-doc/doxygen )"
 
 multilib_src_configure() {
 	local myeconfargs=(
 		$(use_enable custom-modes)
+		$(use_enable ambisonics)
 		$(use_enable doc)
 	)
 	for i in ${INTRINSIC_FLAGS} ; do