From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-853909-garchives=archives.gentoo.org@lists.gentoo.org>
Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80])
	by finch.gentoo.org (Postfix) with ESMTP id 3AD2C1384B4
	for <garchives@archives.gentoo.org>; Mon, 28 Dec 2015 14:07:26 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id ABA2421C01A;
	Mon, 28 Dec 2015 14:07:18 +0000 (UTC)
Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183])
	(using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
	(No client certificate requested)
	by pigeon.gentoo.org (Postfix) with ESMTPS id 2080C21C00B
	for <gentoo-commits@lists.gentoo.org>; Mon, 28 Dec 2015 14:07:17 +0000 (UTC)
Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52])
	(using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
	(No client certificate requested)
	by smtp.gentoo.org (Postfix) with ESMTPS id 6315333FDBF
	for <gentoo-commits@lists.gentoo.org>; Mon, 28 Dec 2015 14:07:16 +0000 (UTC)
Received: from localhost.localdomain (localhost [127.0.0.1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id A76F4CF6
	for <gentoo-commits@lists.gentoo.org>; Mon, 28 Dec 2015 13:27:46 +0000 (UTC)
From: "Ian Delaney" <idella4@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, "Ian Delaney" <idella4@gentoo.org>
Message-ID: <1451306832.7bb4635266f6c9012e7b4090288a2b47df74416b.idella4@gentoo>
Subject: [gentoo-commits] repo/gentoo:master commit in: media-video/mpv/
X-VCS-Repository: repo/gentoo
X-VCS-Files: media-video/mpv/mpv-9999.ebuild
X-VCS-Directories: media-video/mpv/
X-VCS-Committer: idella4
X-VCS-Committer-Name: Ian Delaney
X-VCS-Revision: 7bb4635266f6c9012e7b4090288a2b47df74416b
X-VCS-Branch: master
Date: Mon, 28 Dec 2015 13:27:46 +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: d1f548e5-57c0-4905-9b8a-2e720173c7e4
X-Archives-Hash: ee73ed2c407f6e3f254ecbd7a92fce8d

commit:     7bb4635266f6c9012e7b4090288a2b47df74416b
Author:     Ilya Tumaykin <itumaykin <AT> gmail <DOT> com>
AuthorDate: Tue Dec 22 17:04:38 2015 +0000
Commit:     Ian Delaney <idella4 <AT> gentoo <DOT> org>
CommitDate: Mon Dec 28 12:47:12 2015 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7bb46352

media-video/mpv: explicitly disable unsupported options

Similar idea was submitted by Vindex17 in PR #318.

This includes static build and APIs from MacOS and Windows.

Package-Manager: portage-2.2.24

 media-video/mpv/mpv-9999.ebuild | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/media-video/mpv/mpv-9999.ebuild b/media-video/mpv/mpv-9999.ebuild
index 87477cf..637d7f6 100644
--- a/media-video/mpv/mpv-9999.ebuild
+++ b/media-video/mpv/mpv-9999.ebuild
@@ -161,6 +161,7 @@ src_configure() {
 		$(use_enable libmpv libmpv-shared)
 
 		--disable-libmpv-static
+		--disable-static-build
 		--disable-build-date	# Create reproducible build
 		--disable-optimize		# Do not add '-O2' to CFLAGS
 		--disable-debug-build	# Do not add '-g' to CFLAGS
@@ -201,8 +202,12 @@ src_configure() {
 		$(use_enable jack)
 		$(use_enable openal)
 		$(use_enable alsa)
+		--disable-coreaudio
+		--disable-dsound
+		--disable-wasapi
 
 		# Video outputs
+		--disable-cocoa
 		$(use_enable wayland)
 		$(use_enable X x11)
 		$(use_enable xscreensaver xss)