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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id EF3E5158020 for ; Fri, 23 Dec 2022 03:54:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 15F2BE0769; Fri, 23 Dec 2022 03:54:39 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id EC3CEE07C7 for ; Fri, 23 Dec 2022 03:54:38 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 891303413E3 for ; Fri, 23 Dec 2022 03:54:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AE1DD621 for ; Fri, 23 Dec 2022 03:54:35 +0000 (UTC) From: "Hayley Hughes" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Hayley Hughes" Message-ID: <1671767642.259d24e99b16ee45a4a755671244cf91c6770b06.hayley@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: gui-wm/dwl/ X-VCS-Repository: repo/proj/guru X-VCS-Files: gui-wm/dwl/dwl-0.4_rc2.ebuild X-VCS-Directories: gui-wm/dwl/ X-VCS-Committer: hayley X-VCS-Committer-Name: Hayley Hughes X-VCS-Revision: 259d24e99b16ee45a4a755671244cf91c6770b06 X-VCS-Branch: dev Date: Fri, 23 Dec 2022 03:54: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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 4d12665c-8a39-4af7-ae29-c1b024e6673a X-Archives-Hash: f746ea725e4beaf7fbcf394fbadc3b30 commit: 259d24e99b16ee45a4a755671244cf91c6770b06 Author: Hayley Hughes foxes systems> AuthorDate: Fri Dec 23 03:40:04 2022 +0000 Commit: Hayley Hughes foxes systems> CommitDate: Fri Dec 23 03:54:02 2022 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=259d24e9 gui-wm/dwl: add missing libs for XWayland Currently fails to build with the X flag as the xcb and xcb-iccm libs are missing Signed-off-by: Hayley Hughes foxes.systems> gui-wm/dwl/dwl-0.4_rc2.ebuild | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/gui-wm/dwl/dwl-0.4_rc2.ebuild b/gui-wm/dwl/dwl-0.4_rc2.ebuild index 6f79a1c44..24aa85cf0 100644 --- a/gui-wm/dwl/dwl-0.4_rc2.ebuild +++ b/gui-wm/dwl/dwl-0.4_rc2.ebuild @@ -20,7 +20,10 @@ RDEPEND=" dev-libs/wayland gui-libs/wlroots:0/16[X(-)?] x11-libs/libxkbcommon - X? ( x11-libs/libxcb ) + X? ( + x11-libs/libxcb + x11-libs/xcb-util-wm + ) " DEPEND="${RDEPEND}" BDEPEND=" @@ -36,7 +39,11 @@ src_prepare() { } src_configure() { - use X && append-cppflags -DXWAYLAND + if use X; then + append-cppflags '-DXWAYLAND' + append-libs '-lxcb' '-lxcb-icccm' + fi + tc-export CC }