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 DF2DE13832E for ; Sun, 31 Jul 2016 08:54:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8B2A4E0B8C; Sun, 31 Jul 2016 08:54:36 +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 8E76F21C08E for ; Sun, 31 Jul 2016 08:54:35 +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 95624340BEF for ; Sun, 31 Jul 2016 08:54:34 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DCA16241A for ; Sun, 31 Jul 2016 08:54:30 +0000 (UTC) From: "Pacho Ramos" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Pacho Ramos" Message-ID: <1469955257.5487aa02ce61d2d61b4eafb8b33e32d6e0c41414.pacho@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-plugins/gst-plugins-vaapi/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-plugins/gst-plugins-vaapi/gst-plugins-vaapi-1.8.2.ebuild media-plugins/gst-plugins-vaapi/metadata.xml X-VCS-Directories: media-plugins/gst-plugins-vaapi/ X-VCS-Committer: pacho X-VCS-Committer-Name: Pacho Ramos X-VCS-Revision: 5487aa02ce61d2d61b4eafb8b33e32d6e0c41414 X-VCS-Branch: master Date: Sun, 31 Jul 2016 08:54:30 +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: 141d4349-b90c-48ae-999a-43a8100566a6 X-Archives-Hash: 5fec743b695b7ddd72e23dd52745c417 commit: 5487aa02ce61d2d61b4eafb8b33e32d6e0c41414 Author: Pacho Ramos gentoo org> AuthorDate: Sun Jul 31 08:45:27 2016 +0000 Commit: Pacho Ramos gentoo org> CommitDate: Sun Jul 31 08:54:17 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5487aa02 media-plugins/gst-plugins-vaapi: Make egl support optional (#588498 by Toralf Förster and Coacher). Package-Manager: portage-2.3.0 .../gst-plugins-vaapi/gst-plugins-vaapi-1.8.2.ebuild | 12 +++++++----- media-plugins/gst-plugins-vaapi/metadata.xml | 1 + 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/media-plugins/gst-plugins-vaapi/gst-plugins-vaapi-1.8.2.ebuild b/media-plugins/gst-plugins-vaapi/gst-plugins-vaapi-1.8.2.ebuild index c2c5860..1d4c4f5 100644 --- a/media-plugins/gst-plugins-vaapi/gst-plugins-vaapi-1.8.2.ebuild +++ b/media-plugins/gst-plugins-vaapi/gst-plugins-vaapi-1.8.2.ebuild @@ -14,7 +14,7 @@ LICENSE="LGPL-2.1" SLOT="1.0" KEYWORDS="~amd64 ~x86" -IUSE="+drm opengl wayland +X" +IUSE="+drm egl opengl wayland +X" REQUIRED_USE="|| ( drm opengl wayland X )" RDEPEND=" @@ -26,14 +26,16 @@ RDEPEND=" drm? ( >=virtual/libudev-208:=[${MULTILIB_USEDEP}] >=x11-libs/libdrm-2.4.46[${MULTILIB_USEDEP}] ) - X? ( - >=x11-libs/libX11-1.6.2[${MULTILIB_USEDEP}] - >=x11-libs/libXrandr-1.4.2[${MULTILIB_USEDEP}] ) + egl? ( + >=media-libs/gst-plugins-bad-${PV}:1.0[opengl,${MULTILIB_USEDEP}] ) opengl? ( >=virtual/opengl-7.0-r1[${MULTILIB_USEDEP}] >=x11-libs/libX11-1.6.2[${MULTILIB_USEDEP}] >=x11-libs/libXrandr-1.4.2[${MULTILIB_USEDEP}] ) wayland? ( >=dev-libs/wayland-1.0.6[${MULTILIB_USEDEP}] ) + X? ( + >=x11-libs/libX11-1.6.2[${MULTILIB_USEDEP}] + >=x11-libs/libXrandr-1.4.2[${MULTILIB_USEDEP}] ) " DEPEND="${RDEPEND} >=dev-util/gtk-doc-am-1.12 @@ -46,8 +48,8 @@ multilib_src_configure() { ECONF_SOURCE=${S} \ econf \ --disable-static \ - --enable-egl \ $(use_enable drm) \ + $(use_enable egl) \ $(use_enable opengl glx) \ $(use_enable wayland) \ $(use_enable X x11) diff --git a/media-plugins/gst-plugins-vaapi/metadata.xml b/media-plugins/gst-plugins-vaapi/metadata.xml index 74f4f08..38a37a9 100644 --- a/media-plugins/gst-plugins-vaapi/metadata.xml +++ b/media-plugins/gst-plugins-vaapi/metadata.xml @@ -7,6 +7,7 @@ Enable DRM renderer + Enable EGL support 01org/gstreamer-vaapi