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 4D75C138336 for ; Sat, 16 Feb 2019 17:06:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4ADB3E08BE; Sat, 16 Feb 2019 17:06:10 +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 23817E08BE for ; Sat, 16 Feb 2019 17:06:10 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 EE60E335D00 for ; Sat, 16 Feb 2019 17:06:08 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DD66F544 for ; Sat, 16 Feb 2019 17:06:06 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1550336749.1fb8eac25128c82ff30a093025fcde24138cb276.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-video/vlc/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-video/vlc/vlc-3.0.6.ebuild X-VCS-Directories: media-video/vlc/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 1fb8eac25128c82ff30a093025fcde24138cb276 X-VCS-Branch: master Date: Sat, 16 Feb 2019 17:06:06 +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: 525b9025-a3b4-4131-8fa6-5f913d987be9 X-Archives-Hash: a519b477a4d75fc6a12ebea298e0bb69 commit: 1fb8eac25128c82ff30a093025fcde24138cb276 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sat Feb 16 16:10:51 2019 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sat Feb 16 17:05:49 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1fb8eac2 media-video/vlc: Re-add x264 10bit support if >=x264-0.0.20190214 Package-Manager: Portage-2.3.60, Repoman-2.3.12 Signed-off-by: Andreas Sturmlechner gentoo.org> media-video/vlc/vlc-3.0.6.ebuild | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/media-video/vlc/vlc-3.0.6.ebuild b/media-video/vlc/vlc-3.0.6.ebuild index 9743750ed2e..b652e7bd94b 100644 --- a/media-video/vlc/vlc-3.0.6.ebuild +++ b/media-video/vlc/vlc-3.0.6.ebuild @@ -418,10 +418,15 @@ src_configure() { --disable-spatialaudio --disable-vsxu --disable-wasapi - --disable-x26410b ) # ^ We don't have these disabled libraries in the Portage tree yet. + if use x264 && has_version ">=media-libs/x264-0.0.20190214"; then + myeconfargs+=( --enable-x26410b ) + else + myeconfargs+=( --disable-x26410b ) + fi + # Compatibility fix for Samba 4. use samba && append-cppflags "-I/usr/include/samba-4.0"