From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id C965859CA3 for ; Mon, 15 Feb 2016 12:17:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8609A21C045; Mon, 15 Feb 2016 12:17:27 +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 BD83421C030 for ; Mon, 15 Feb 2016 12:17:26 +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 DAEBE3410C3 for ; Mon, 15 Feb 2016 12:17:25 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A531CCFF for ; Mon, 15 Feb 2016 12:17:21 +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: <1455538635.d2e30b162862d3868d227e5e4774f373439d750e.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 X-VCS-Directories: media-video/ffmpeg/ X-VCS-Committer: aballier X-VCS-Committer-Name: Alexis Ballier X-VCS-Revision: d2e30b162862d3868d227e5e4774f373439d750e X-VCS-Branch: master Date: Mon, 15 Feb 2016 12:17:21 +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: 11d63d72-0e52-4223-b9ce-0c0e3d628887 X-Archives-Hash: d09ee5cb58ab88f796aea1182d538f91 commit: d2e30b162862d3868d227e5e4774f373439d750e Author: Alexis Ballier gentoo org> AuthorDate: Mon Feb 15 11:24:56 2016 +0000 Commit: Alexis Ballier gentoo org> CommitDate: Mon Feb 15 12:17:15 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d2e30b16 media-video/ffmpeg: do not build doc for non-native abis; they are overwritten when installed anyway. Package-Manager: portage-2.2.27 Signed-off-by: Alexis Ballier gentoo.org> media-video/ffmpeg/ffmpeg-9999.ebuild | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/media-video/ffmpeg/ffmpeg-9999.ebuild b/media-video/ffmpeg/ffmpeg-9999.ebuild index c6c909c..830fa77 100644 --- a/media-video/ffmpeg/ffmpeg-9999.ebuild +++ b/media-video/ffmpeg/ffmpeg-9999.ebuild @@ -63,7 +63,7 @@ fi # or $(use_enable foo foo) if no :bar is set. # foo is added to IUSE. FFMPEG_FLAG_MAP=( - +bzip2:bzlib cpudetection:runtime-cpudetect debug doc gcrypt gnutls gmp + +bzip2:bzlib cpudetection:runtime-cpudetect debug gcrypt gnutls gmp +gpl +hardcoded-tables +iconv lzma +network openssl +postproc samba:libsmbclient sdl:ffplay sdl vaapi vdpau X:xlib xcb:libxcb xcb:libxcb-shm xcb:libxcb-xfixes +zlib @@ -97,7 +97,7 @@ FFMPEG_ENCODER_FLAG_MAP=( ) IUSE=" - alsa +encode examples jack libressl oss pic static-libs test v4l + alsa doc +encode examples jack libressl oss pic static-libs test v4l ${FFMPEG_FLAG_MAP[@]%:*} ${FFMPEG_ENCODER_FLAG_MAP[@]%:*} " @@ -410,6 +410,9 @@ multilib_src_configure() { esac fi + # doc + myconf+=( $(multilib_native_use_enable doc) ) + set -- "${S}/configure" \ --prefix="${EPREFIX}/usr" \ --libdir="${EPREFIX}/usr/$(get_libdir)" \