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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id CC3DE138334 for ; Wed, 13 Jun 2018 21:49:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 94E11E07F1; Wed, 13 Jun 2018 21:49:36 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 645CDE07F1 for ; Wed, 13 Jun 2018 21:49:36 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6F335335C2E for ; Wed, 13 Jun 2018 21:49:33 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DE1562C5 for ; Wed, 13 Jun 2018 21:49:31 +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: <1528926524.1192c81956c023c50d2ab0bf8a36e66158f0a852.asturm@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: kde-plasma/plasma-vault/ X-VCS-Repository: proj/kde X-VCS-Files: kde-plasma/plasma-vault/plasma-vault-9999.ebuild X-VCS-Directories: kde-plasma/plasma-vault/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 1192c81956c023c50d2ab0bf8a36e66158f0a852 X-VCS-Branch: master Date: Wed, 13 Jun 2018 21:49:31 +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-Archives-Salt: 3f11a6af-4714-46c5-8f2f-970366498ab0 X-Archives-Hash: 9df686406ff0e899b81ad6d9ba363a2c commit: 1192c81956c023c50d2ab0bf8a36e66158f0a852 Author: Andreas Sturmlechner gentoo org> AuthorDate: Wed Jun 13 21:45:09 2018 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Wed Jun 13 21:48:44 2018 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=1192c819 kde-plasma/plasma-vault: Add USE=networkmanager Thanks-to: Arfrever Frehtes Taifersar Arahesis Apache.Org> Bug: https://bugs.gentoo.org/656940 Package-Manager: Portage-2.3.40, Repoman-2.3.9 kde-plasma/plasma-vault/plasma-vault-9999.ebuild | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/kde-plasma/plasma-vault/plasma-vault-9999.ebuild b/kde-plasma/plasma-vault/plasma-vault-9999.ebuild index e50a5f832f..a169963861 100644 --- a/kde-plasma/plasma-vault/plasma-vault-9999.ebuild +++ b/kde-plasma/plasma-vault/plasma-vault-9999.ebuild @@ -10,7 +10,7 @@ HOMEPAGE+=" https://cukic.co/2017/02/03/vaults-encryption-in-plasma/" LICENSE="LGPL-3" KEYWORDS="" -IUSE="" +IUSE="networkmanager" DEPEND=" $(add_frameworks_dep kactivities) @@ -21,7 +21,6 @@ DEPEND=" $(add_frameworks_dep kdbusaddons) $(add_frameworks_dep ki18n) $(add_frameworks_dep kio) - $(add_frameworks_dep networkmanager-qt) $(add_frameworks_dep plasma) $(add_frameworks_dep kwidgetsaddons) $(add_plasma_dep libksysguard) @@ -29,7 +28,16 @@ DEPEND=" $(add_qt_dep qtdeclarative) $(add_qt_dep qtgui) $(add_qt_dep qtwidgets) + networkmanager? ( $(add_frameworks_dep networkmanager-qt) ) " RDEPEND="${DEPEND} || ( >=sys-fs/cryfs-0.9.9 >=sys-fs/encfs-1.9.2 ) " + +src_configure() { + local mycmakeargs=( + $(cmake-utils_use_find_package networkmanager KF5NetworkManagerQt) + ) + + kde5_src_configure +}