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 53595138359 for ; Wed, 11 Nov 2020 17:03:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6B94DE0BC4; Wed, 11 Nov 2020 17:03:28 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 5681DE0BC4 for ; Wed, 11 Nov 2020 17:03:28 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 19A12340D31 for ; Wed, 11 Nov 2020 17:03:27 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5D63A439 for ; Wed, 11 Nov 2020 17:03:25 +0000 (UTC) From: "Aaron Bauman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Aaron Bauman" Message-ID: <1605114192.1a5bd9887d55435b50f1d427ccdd14a08a6e458f.bman@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: gui-libs/wlroots/ X-VCS-Repository: repo/gentoo X-VCS-Files: gui-libs/wlroots/metadata.xml gui-libs/wlroots/wlroots-9999.ebuild X-VCS-Directories: gui-libs/wlroots/ X-VCS-Committer: bman X-VCS-Committer-Name: Aaron Bauman X-VCS-Revision: 1a5bd9887d55435b50f1d427ccdd14a08a6e458f X-VCS-Branch: master Date: Wed, 11 Nov 2020 17:03:25 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: b2e8490f-0b55-4843-bf77-165876629d44 X-Archives-Hash: 5710a87e1ed87a7afbcf9df7f16b5d9a commit: 1a5bd9887d55435b50f1d427ccdd14a08a6e458f Author: Haelwenn (lanodan) Monnier hacktivis me> AuthorDate: Sun Sep 13 12:27:57 2020 +0000 Commit: Aaron Bauman gentoo org> CommitDate: Wed Nov 11 17:03:12 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1a5bd988 gui-libs/wlroots: Add support for seatd Signed-off-by: Haelwenn (lanodan) Monnier hacktivis.me> Signed-off-by: Aaron Bauman gentoo.org> gui-libs/wlroots/metadata.xml | 1 + gui-libs/wlroots/wlroots-9999.ebuild | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/gui-libs/wlroots/metadata.xml b/gui-libs/wlroots/metadata.xml index 25975bbdb15..07149597df5 100644 --- a/gui-libs/wlroots/metadata.xml +++ b/gui-libs/wlroots/metadata.xml @@ -23,6 +23,7 @@ Enable support for rootless session via elogind Use xcb-icccm (from x11-libs/xcb-util-wm) util library for improved Xwayland introspection + Enable support for rootless session via sys-auth/seatd Enable support for handling input/output devices through x11-libs/libxcb Enable support for X11 applications (XWayland) diff --git a/gui-libs/wlroots/wlroots-9999.ebuild b/gui-libs/wlroots/wlroots-9999.ebuild index 6496ad0a75a..72a4c104e4a 100644 --- a/gui-libs/wlroots/wlroots-9999.ebuild +++ b/gui-libs/wlroots/wlroots-9999.ebuild @@ -18,7 +18,7 @@ fi LICENSE="MIT" SLOT="0/9999" -IUSE="elogind icccm systemd x11-backend X" +IUSE="elogind icccm seatd systemd x11-backend X" REQUIRED_USE="?? ( elogind systemd )" DEPEND=" @@ -32,6 +32,7 @@ DEPEND=" x11-libs/pixman elogind? ( >=sys-auth/elogind-237 ) icccm? ( x11-libs/xcb-util-wm ) + seatd? ( sys-auth/seatd:= ) systemd? ( >=sys-apps/systemd-237 ) x11-backend? ( x11-libs/libxcb:0= ) X? ( @@ -58,6 +59,7 @@ src_configure() { -Dx11-backend=$(usex x11-backend enabled disabled) "-Dexamples=false" "-Dwerror=false" + -Dlibseat=$(usex seatd enabled disabled) ) if use systemd; then emesonargs+=("-Dlogind=enabled" "-Dlogind-provider=systemd")