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 (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 7D409158042 for ; Mon, 28 Oct 2024 17:34:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B0C6EE0891; Mon, 28 Oct 2024 17:34:33 +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 9688BE0891 for ; Mon, 28 Oct 2024 17:34:33 +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 9BA453430DE for ; Mon, 28 Oct 2024 17:34:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DA316AE7 for ; Mon, 28 Oct 2024 17:34:30 +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: <1730136835.00fd5f81dc60c1ce3de711786513b3b936b8febc.asturm@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: kde-frameworks/kglobalaccel/ X-VCS-Repository: proj/kde X-VCS-Files: kde-frameworks/kglobalaccel/kglobalaccel-9999.ebuild X-VCS-Directories: kde-frameworks/kglobalaccel/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 00fd5f81dc60c1ce3de711786513b3b936b8febc X-VCS-Branch: master Date: Mon, 28 Oct 2024 17:34:30 +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: 53b1be97-8b75-4530-919e-aff25b7492a5 X-Archives-Hash: 0932816207e8bb85ef1d60d1ce479a14 commit: 00fd5f81dc60c1ce3de711786513b3b936b8febc Author: Andreas Sturmlechner gentoo org> AuthorDate: Mon Oct 28 17:33:55 2024 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Mon Oct 28 17:33:55 2024 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=00fd5f81 kde-frameworks/kglobalaccel: Add IUSE X Upstream commit 2747cd4c451c8b8badf0a4b109cb98b8e71341ec Signed-off-by: Andreas Sturmlechner gentoo.org> kde-frameworks/kglobalaccel/kglobalaccel-9999.ebuild | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/kde-frameworks/kglobalaccel/kglobalaccel-9999.ebuild b/kde-frameworks/kglobalaccel/kglobalaccel-9999.ebuild index eb9a43aac7..fa824f624a 100644 --- a/kde-frameworks/kglobalaccel/kglobalaccel-9999.ebuild +++ b/kde-frameworks/kglobalaccel/kglobalaccel-9999.ebuild @@ -10,8 +10,19 @@ DESCRIPTION="Framework to handle global shortcuts" LICENSE="LGPL-2+" KEYWORDS="" -IUSE="" +IUSE="X" -RDEPEND=">=dev-qt/qtbase-${QTMIN}:6[dbus,gui,widgets]" +# slot op: WITH_X11 uses Qt6::GuiPrivate for qtx11extras_p.h +RDEPEND=" + >=dev-qt/qtbase-${QTMIN}:6[dbus,gui,widgets] + X? ( >=dev-qt/qtbase-${QTMIN}:6=[X] ) +" DEPEND="${RDEPEND}" BDEPEND=">=dev-qt/qttools-${QTMIN}:6[linguist]" + +src_configure() { + local mycmakeargs=( + -DWITH_X11=$(usex X) + ) + ecm_src_configure +}