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 BC1051381F3 for ; Fri, 24 May 2013 00:54:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BCF3CE081C; Fri, 24 May 2013 00:54:29 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 463A1E081C for ; Fri, 24 May 2013 00:54:29 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3F6F133E201 for ; Fri, 24 May 2013 00:54:28 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id C7042E4404 for ; Fri, 24 May 2013 00:54:26 +0000 (UTC) From: "David Heidelberger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Heidelberger" Message-ID: <1369356848.44fc138b60ad469081423c5b1bed47605462f2c7.okias@gentoo> Subject: [gentoo-commits] proj/x11:master commit in: dev-libs/weston/ X-VCS-Repository: proj/x11 X-VCS-Files: dev-libs/weston/metadata.xml dev-libs/weston/weston-9999.ebuild X-VCS-Directories: dev-libs/weston/ X-VCS-Committer: okias X-VCS-Committer-Name: David Heidelberger X-VCS-Revision: 44fc138b60ad469081423c5b1bed47605462f2c7 X-VCS-Branch: master Date: Fri, 24 May 2013 00:54:26 +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: b50900b1-0918-458b-a5a9-ea1f1e9477b5 X-Archives-Hash: 16d2eaae754375f23baa2ff61e01f30c commit: 44fc138b60ad469081423c5b1bed47605462f2c7 Author: David Heidelberger ixit cz> AuthorDate: Fri May 24 00:54:08 2013 +0000 Commit: David Heidelberger gmail com> CommitDate: Fri May 24 00:54:08 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/x11.git;a=commit;h=44fc138b dev-libs/weston: -9999 more USE flags Package-Manager: portage-2.2.0_alpha176 --- dev-libs/weston/metadata.xml | 2 ++ dev-libs/weston/weston-9999.ebuild | 13 ++++++++++--- 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/dev-libs/weston/metadata.xml b/dev-libs/weston/metadata.xml index 05c9d03..8af4779 100644 --- a/dev-libs/weston/metadata.xml +++ b/dev-libs/weston/metadata.xml @@ -6,7 +6,9 @@ Enable support for clients. Allow setting color managment. Enable drm compositor support. + Enable egl acceleration. Enable fbdev compositor support. + Use GLESv2 cairo instead of full GL. Enable Remote Desktop Protocol compositor support. Increase performance, allocate more RAM. Recommended to disable on Raspberry Pi. Raspberry Pi GPU support. diff --git a/dev-libs/weston/weston-9999.ebuild b/dev-libs/weston/weston-9999.ebuild index c8f47c7..ebdad42 100644 --- a/dev-libs/weston/weston-9999.ebuild +++ b/dev-libs/weston/weston-9999.ebuild @@ -25,12 +25,16 @@ fi LICENSE="MIT CC-BY-SA-3.0" SLOT="0" KEYWORDS="~arm ~amd64 ~x86 ~arm-linux" -IUSE="+clients colord debug +drm fbdev rdp +resize-optimization -rpi +simple-clients static-libs +tablet +wayland-compositor +x11" +IUSE="+clients colord debug +drm +egl fbdev gles2 rdp +resize-optimization -rpi +simple-clients static-libs +tablet +wayland-compositor +x11" + +REQUIRED_USE=" + rpi? ( !drm !egl gles2 ) +" RDEPEND=" >=dev-libs/wayland-1.1.90 gnome-base/librsvg - media-libs/mesa[egl,gles2,wayland] + media-libs/mesa[gles2,wayland] x11-libs/pixman clients? ( >=x11-libs/cairo-1.10.0 x11-libs/gdk-pixbuf @@ -43,6 +47,7 @@ RDEPEND=" drm? ( >=virtual/udev-136 >=x11-libs/libdrm-2.4.30 media-libs/mesa[gbm] ) + egl? ( media-libs/mesa[egl] ) rdp? ( >=net-misc/freerdp-1.1.0_beta1 ) x11? ( x11-libs/libxcb x11-libs/libX11 )" @@ -60,6 +65,7 @@ src_configure() { $(use_enable colord) \ $(use_enable debug libunwind) \ $(use_enable drm drm-compositor) \ + $(use_enable egl) \ $(use_enable fbdev fbdev-compositor) \ $(use_enable rdp rdp-compositor) \ $(use_enable resize-optimization) \ @@ -68,5 +74,6 @@ src_configure() { $(use_enable static-libs static) \ $(use_enable tablet tablet-shell) \ $(use_enable wayland-compositor) \ - $(use_enable x11 x11-compositor) + $(use_enable x11 x11-compositor) \ + $(use_with gles2 cairo-glesv2) }