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 020AA158089 for ; Sun, 10 Sep 2023 11:11:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2FDA72BC016; Sun, 10 Sep 2023 11:11:43 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 175442BC015 for ; Sun, 10 Sep 2023 11:11:43 +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 3EC85335CEA for ; Sun, 10 Sep 2023 11:11:42 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8E7AD1166 for ; Sun, 10 Sep 2023 11:11:40 +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: <1694344114.4f0d6bb82c48f8fc283102f9f1f56b927b3426f0.asturm@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: kde-frameworks/kdelibs4support/ X-VCS-Repository: proj/kde X-VCS-Files: kde-frameworks/kdelibs4support/kdelibs4support-5.9999.ebuild X-VCS-Directories: kde-frameworks/kdelibs4support/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 4f0d6bb82c48f8fc283102f9f1f56b927b3426f0 X-VCS-Branch: master Date: Sun, 10 Sep 2023 11:11:40 +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: 0ab8087a-a9e2-4219-8d68-4cf146e64790 X-Archives-Hash: 4cc5caa0072ba3a06dbd9c34853bdc58 commit: 4f0d6bb82c48f8fc283102f9f1f56b927b3426f0 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Sep 10 10:56:30 2023 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Sep 10 11:08:34 2023 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=4f0d6bb8 kde-frameworks/kdelibs4support: Add IUSE networkmanager Even if there is no linking with libnm.so, the service will be required at runtime if we build with this feature enabled. See also: https://github.com/gentoo/gentoo/pull/32487 Signed-off-by: Andreas Sturmlechner gentoo.org> kde-frameworks/kdelibs4support/kdelibs4support-5.9999.ebuild | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/kde-frameworks/kdelibs4support/kdelibs4support-5.9999.ebuild b/kde-frameworks/kdelibs4support/kdelibs4support-5.9999.ebuild index 9245316023..769e3be731 100644 --- a/kde-frameworks/kdelibs4support/kdelibs4support-5.9999.ebuild +++ b/kde-frameworks/kdelibs4support/kdelibs4support-5.9999.ebuild @@ -14,7 +14,7 @@ DESCRIPTION="Framework easing the development transition from KDELibs 4 to KF 5" LICENSE="LGPL-2+" KEYWORDS="" -IUSE="X" +IUSE="networkmanager X" RESTRICT="test" @@ -56,6 +56,7 @@ COMMON_DEPEND=" =kde-frameworks/kxmlgui-${PVCUT}*:5 =kde-frameworks/solid-${PVCUT}*:5 virtual/libintl + networkmanager? ( net-misc/networkmanager ) X? ( >=dev-qt/qtx11extras-${QTMIN}:5 x11-libs/libICE @@ -98,6 +99,7 @@ src_prepare() { src_configure() { local mycmakeargs=( -DWITH_X11=$(usex X) + $(cmake_use_find_package networkmanager NetworkManager) ) ecm_src_configure