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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 2B3BC158013 for ; Sun, 13 Oct 2024 20:59:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7B67DE0837; Sun, 13 Oct 2024 20:59:02 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 pigeon.gentoo.org (Postfix) with ESMTPS id 65A36E0837 for ; Sun, 13 Oct 2024 20:59:02 +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 ACEB4342F9B for ; Sun, 13 Oct 2024 20:59:01 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4B8941D0A for ; Sun, 13 Oct 2024 20:59:00 +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: <1728852738.0831e1515372e4c27a7ad48a911d3f516cae4422.asturm@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: kde-plasma/plasma5support/ X-VCS-Repository: proj/kde X-VCS-Files: kde-plasma/plasma5support/plasma5support-9999.ebuild X-VCS-Directories: kde-plasma/plasma5support/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 0831e1515372e4c27a7ad48a911d3f516cae4422 X-VCS-Branch: master Date: Sun, 13 Oct 2024 20:59:00 +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: 2dfe0eca-8ce5-4211-bf0e-a6a48bb128a7 X-Archives-Hash: fe446e3175b32d169b83bf6e4ea6e773 commit: 0831e1515372e4c27a7ad48a911d3f516cae4422 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Oct 13 20:52:18 2024 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Oct 13 20:52:18 2024 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=0831e151 kde-plasma/plasma5support: Add IUSE X mouse dataengine moved from plasma-workspace Upstream commit db8e58ad4e91f562ae7e9f7348ae480d4771d669 Signed-off-by: Andreas Sturmlechner gentoo.org> kde-plasma/plasma5support/plasma5support-9999.ebuild | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/kde-plasma/plasma5support/plasma5support-9999.ebuild b/kde-plasma/plasma5support/plasma5support-9999.ebuild index 4bec1d3012..617e6b8f89 100644 --- a/kde-plasma/plasma5support/plasma5support-9999.ebuild +++ b/kde-plasma/plasma5support/plasma5support-9999.ebuild @@ -15,7 +15,7 @@ DESCRIPTION="Support components for porting from KF5/Qt5 to KF6/Qt6" LICENSE="GPL-2+ LGPL-2+" SLOT="6" KEYWORDS="" -IUSE="geolocation" +IUSE="geolocation X" RESTRICT="test" # bug 926347 @@ -33,6 +33,7 @@ DEPEND=" >=kde-frameworks/solid-${KFMIN}:6 >=kde-plasma/libksysguard-${PVCUT}:6 geolocation? ( >=kde-frameworks/networkmanager-qt-${KFMIN}:6 ) + X? ( x11-libs/libX11 ) " RDEPEND="${DEPEND} !kde-plasma/plasma-workspace:5 @@ -42,6 +43,7 @@ RDEPEND="${DEPEND} src_configure() { local mycmakeargs=( $(cmake_use_find_package geolocation KF6NetworkManagerQt) + $(cmake_use_find_package X X11) ) ecm_src_configure }