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 4970A139694 for ; Tue, 21 Feb 2017 12:19:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 76DC6E0D29; Tue, 21 Feb 2017 12:19:02 +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 51541E0D29 for ; Tue, 21 Feb 2017 12:19:02 +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 3EF8F3413C3 for ; Tue, 21 Feb 2017 12:19:00 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AB20F4F81 for ; Tue, 21 Feb 2017 12:18:58 +0000 (UTC) From: "Alexis Ballier" 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" Message-ID: <1487679247.0f11e64e31b2751b7fc09416e531e14140f3620a.aballier@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-video/ffmpeg/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-video/ffmpeg/ffmpeg-9999.ebuild media-video/ffmpeg/metadata.xml X-VCS-Directories: media-video/ffmpeg/ X-VCS-Committer: aballier X-VCS-Committer-Name: Alexis Ballier X-VCS-Revision: 0f11e64e31b2751b7fc09416e531e14140f3620a X-VCS-Branch: master Date: Tue, 21 Feb 2017 12:18:58 +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-Archives-Salt: 74b931f6-da68-47d9-b855-118182090774 X-Archives-Hash: aab11cf9ae7569a5311462aa893b5423 commit: 0f11e64e31b2751b7fc09416e531e14140f3620a Author: Anton Schubert mailbox org> AuthorDate: Sat Feb 18 15:59:08 2017 +0000 Commit: Alexis Ballier gentoo org> CommitDate: Tue Feb 21 12:14:07 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0f11e64e media-video/ffmpeg: add support for zeromq Closes: https://github.com/gentoo/gentoo/pull/3721 media-video/ffmpeg/ffmpeg-9999.ebuild | 5 +++-- media-video/ffmpeg/metadata.xml | 1 + 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/media-video/ffmpeg/ffmpeg-9999.ebuild b/media-video/ffmpeg/ffmpeg-9999.ebuild index 151504aadf..71ed7c1125 100644 --- a/media-video/ffmpeg/ffmpeg-9999.ebuild +++ b/media-video/ffmpeg/ffmpeg-9999.ebuild @@ -81,7 +81,7 @@ FFMPEG_FLAG_MAP=( # libavfilter options bs2b:libbs2b chromaprint flite:libflite frei0r fribidi:libfribidi fontconfig ladspa libass truetype:libfreetype - rubberband:librubberband sofalizer:netcdf zimg:libzimg + rubberband:librubberband sofalizer:netcdf zeromq:libzmq zimg:libzimg # libswresample options libsoxr # Threads; we only support pthread for now but ffmpeg supports more @@ -241,6 +241,7 @@ RDEPEND=" >=x11-libs/libXv-1.0.10[${MULTILIB_USEDEP}] ) xcb? ( >=x11-libs/libxcb-1.4[${MULTILIB_USEDEP}] ) + zeromq? ( >=net-libs/zeromq-4.1.6 ) zimg? ( >=media-libs/zimg-2.4:=[${MULTILIB_USEDEP}] ) zlib? ( >=sys-libs/zlib-1.2.8-r1[${MULTILIB_USEDEP}] ) zvbi? ( >=media-libs/zvbi-0.2.35[${MULTILIB_USEDEP}] ) @@ -340,7 +341,7 @@ multilib_src_configure() { # (temporarily) disable non-multilib deps if ! multilib_is_native_abi; then - for i in frei0r netcdf ; do + for i in frei0r netcdf libzmq ; do myconf+=( --disable-${i} ) done fi diff --git a/media-video/ffmpeg/metadata.xml b/media-video/ffmpeg/metadata.xml index 85766b4b87..b8773a83a6 100644 --- a/media-video/ffmpeg/metadata.xml +++ b/media-video/ffmpeg/metadata.xml @@ -55,6 +55,7 @@ Enables vp8 codec support using libvpx: Decoding vp8 does not require this to be enabled but libvpx can also be used for decoding; encoding vp8 requires this useflag to be enabled though. Enables WebP encoding with media-libs/libwebp. Enables HEVC encoding with media-libs/x265. + Enables net-libs/zeromq support with the zmq/azmq filters. Enables media-libs/zimg based scale filter. Enables media-libs/zvbi based teletext decoder.