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 0F5B6158013 for ; Fri, 15 Dec 2023 22:36:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 28F662BC017; Fri, 15 Dec 2023 22:36:27 +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 08D8B2BC017 for ; Fri, 15 Dec 2023 22:36:27 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id EF59E335DEB for ; Fri, 15 Dec 2023 22:36:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5D753ACA for ; Fri, 15 Dec 2023 22:36:24 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1702679359.04c8f8003cab067581c5a85428af3ef3ff46ac1f.asturm@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: kde-plasma/libksysguard/ X-VCS-Repository: proj/kde X-VCS-Files: kde-plasma/libksysguard/libksysguard-9999.ebuild X-VCS-Directories: kde-plasma/libksysguard/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 04c8f8003cab067581c5a85428af3ef3ff46ac1f X-VCS-Branch: master Date: Fri, 15 Dec 2023 22:36:24 +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: 19324573-79d1-495c-aa25-0cd57481a70d X-Archives-Hash: ba832418de876ce2c4b26f28f583edc0 commit: 04c8f8003cab067581c5a85428af3ef3ff46ac1f Author: Andreas Sturmlechner gentoo org> AuthorDate: Fri Dec 15 22:29:19 2023 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Fri Dec 15 22:29:19 2023 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=04c8f800 kde-plasma/libksysguard: Add IUSE X Upstream commit 0da59aaffa1f21976090142cea869e72550f582c Signed-off-by: Andreas Sturmlechner gentoo.org> kde-plasma/libksysguard/libksysguard-9999.ebuild | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/kde-plasma/libksysguard/libksysguard-9999.ebuild b/kde-plasma/libksysguard/libksysguard-9999.ebuild index 6ad180d6e5..ce233f7cc5 100644 --- a/kde-plasma/libksysguard/libksysguard-9999.ebuild +++ b/kde-plasma/libksysguard/libksysguard-9999.ebuild @@ -14,7 +14,7 @@ DESCRIPTION="Task management and system monitoring library" LICENSE="LGPL-2+" SLOT="6/9" KEYWORDS="" -IUSE="webengine" +IUSE="webengine X" # kde-frameworks/kwindowsystem[X]: Unconditional use of KX11Extras RDEPEND=" @@ -38,16 +38,18 @@ RDEPEND=" net-libs/libpcap sys-apps/lm-sensors:= sys-libs/zlib - x11-libs/libX11 - x11-libs/libXres webengine? ( >=dev-qt/qtwebchannel-${QTMIN}:6 >=dev-qt/qtwebengine-${QTMIN}:6 ) + X? ( + x11-libs/libX11 + x11-libs/libXres + ) " DEPEND="${RDEPEND} >=kde-frameworks/kiconthemes-${KFMIN}:6 - x11-base/xorg-proto + X? ( x11-base/xorg-proto ) " BDEPEND="sys-libs/libcap" @@ -58,6 +60,7 @@ src_configure() { local mycmakeargs=( $(cmake_use_find_package webengine Qt6WebChannel) $(cmake_use_find_package webengine Qt6WebEngineWidgets) + -DWITH_X11=$(usex X) ) ecm_src_configure