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 466221381F3 for ; Fri, 24 May 2013 01:03:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DFDB1E0809; Fri, 24 May 2013 01:03:38 +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 666FEE0809 for ; Fri, 24 May 2013 01:03:38 +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 1431033E11B for ; Fri, 24 May 2013 01:03:37 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 9F37DE4404 for ; Fri, 24 May 2013 01:03:35 +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: <1369357392.c1ff1e892eec4da78b9b691e66133b4cd439ee3b.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: c1ff1e892eec4da78b9b691e66133b4cd439ee3b X-VCS-Branch: master Date: Fri, 24 May 2013 01:03:35 +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: 00f0ddbf-f5f3-47aa-b6aa-4f31a495deb0 X-Archives-Hash: 46d657ce8aa7bec12e71228d86d87ecc commit: c1ff1e892eec4da78b9b691e66133b4cd439ee3b Author: David Heidelberger ixit cz> AuthorDate: Fri May 24 01:03:12 2013 +0000 Commit: David Heidelberger gmail com> CommitDate: Fri May 24 01:03:12 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/x11.git;a=commit;h=c1ff1e89 dev-libs/weston: -9999 USE for disabling xwayland and headless Package-Manager: portage-2.2.0_alpha176 --- dev-libs/weston/metadata.xml | 2 ++ dev-libs/weston/weston-9999.ebuild | 4 +++- 2 files changed, 5 insertions(+), 1 deletions(-) diff --git a/dev-libs/weston/metadata.xml b/dev-libs/weston/metadata.xml index 8af4779..d466899 100644 --- a/dev-libs/weston/metadata.xml +++ b/dev-libs/weston/metadata.xml @@ -9,12 +9,14 @@ Enable egl acceleration. Enable fbdev compositor support. Use GLESv2 cairo instead of full GL. + Headless backend and a noop renderer, mainly for testing purposes. Enable Remote Desktop Protocol compositor support. Increase performance, allocate more RAM. Recommended to disable on Raspberry Pi. Raspberry Pi GPU support. Enable simple-clients?. Enable interface for tablets. Enable Wayland compositor support. + Enable ability support native X11 applications. Enable X11 compositor support. diff --git a/dev-libs/weston/weston-9999.ebuild b/dev-libs/weston/weston-9999.ebuild index ebdad42..cde62dd 100644 --- a/dev-libs/weston/weston-9999.ebuild +++ b/dev-libs/weston/weston-9999.ebuild @@ -25,7 +25,7 @@ fi LICENSE="MIT CC-BY-SA-3.0" SLOT="0" KEYWORDS="~arm ~amd64 ~x86 ~arm-linux" -IUSE="+clients colord debug +drm +egl fbdev gles2 rdp +resize-optimization -rpi +simple-clients static-libs +tablet +wayland-compositor +x11" +IUSE="+clients colord debug +drm +egl headless fbdev gles2 rdp +resize-optimization -rpi +simple-clients static-libs +tablet +wayland-compositor +xwayland +x11" REQUIRED_USE=" rpi? ( !drm !egl gles2 ) @@ -67,6 +67,7 @@ src_configure() { $(use_enable drm drm-compositor) \ $(use_enable egl) \ $(use_enable fbdev fbdev-compositor) \ + $(use_enable headless headless-compositor) \ $(use_enable rdp rdp-compositor) \ $(use_enable resize-optimization) \ $(use_enable rpi rpi-compositor) \ @@ -74,6 +75,7 @@ src_configure() { $(use_enable static-libs static) \ $(use_enable tablet tablet-shell) \ $(use_enable wayland-compositor) \ + $(use_enable xwayland xwayland-compositor) \ $(use_enable x11 x11-compositor) \ $(use_with gles2 cairo-glesv2) }