Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: kde-plasma/plasma-nm/
Date: Thu, 13 Sep 2018 16:57:44
Message-Id: 1536857830.99e39c67bc3ee80dfc2d32fd18da338bc357b136.asturm@gentoo
1 commit: 99e39c67bc3ee80dfc2d32fd18da338bc357b136
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Thu Sep 13 16:55:12 2018 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Thu Sep 13 16:57:10 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=99e39c67
7
8 kde-plasma/plasma-nm: Drop 5.13.5 (r0)
9
10 Package-Manager: Portage-2.3.49, Repoman-2.3.10
11
12 kde-plasma/plasma-nm/plasma-nm-5.13.5.ebuild | 75 ----------------------------
13 1 file changed, 75 deletions(-)
14
15 diff --git a/kde-plasma/plasma-nm/plasma-nm-5.13.5.ebuild b/kde-plasma/plasma-nm/plasma-nm-5.13.5.ebuild
16 deleted file mode 100644
17 index 8c18a229c47..00000000000
18 --- a/kde-plasma/plasma-nm/plasma-nm-5.13.5.ebuild
19 +++ /dev/null
20 @@ -1,75 +0,0 @@
21 -# Copyright 1999-2018 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=6
25 -
26 -inherit kde5
27 -
28 -DESCRIPTION="KDE Plasma applet for NetworkManager"
29 -LICENSE="GPL-2 LGPL-2.1"
30 -KEYWORDS="~amd64 ~arm ~x86"
31 -IUSE="modemmanager openconnect teamd"
32 -
33 -DEPEND="
34 - $(add_frameworks_dep kcompletion)
35 - $(add_frameworks_dep kconfig)
36 - $(add_frameworks_dep kconfigwidgets)
37 - $(add_frameworks_dep kcoreaddons)
38 - $(add_frameworks_dep kdbusaddons)
39 - $(add_frameworks_dep kdeclarative)
40 - $(add_frameworks_dep kdelibs4support)
41 - $(add_frameworks_dep ki18n)
42 - $(add_frameworks_dep kiconthemes)
43 - $(add_frameworks_dep kio)
44 - $(add_frameworks_dep kitemviews)
45 - $(add_frameworks_dep knotifications)
46 - $(add_frameworks_dep kservice)
47 - $(add_frameworks_dep kwallet)
48 - $(add_frameworks_dep kwidgetsaddons)
49 - $(add_frameworks_dep kwindowsystem)
50 - $(add_frameworks_dep kxmlgui)
51 - $(add_frameworks_dep networkmanager-qt 'teamd=')
52 - $(add_frameworks_dep plasma)
53 - $(add_frameworks_dep solid)
54 - $(add_qt_dep qtdbus)
55 - $(add_qt_dep qtdeclarative)
56 - $(add_qt_dep qtgui)
57 - $(add_qt_dep qtnetwork)
58 - $(add_qt_dep qtwidgets)
59 - >=app-crypt/qca-2.1.1:2[qt5(+)]
60 - net-misc/networkmanager[teamd=]
61 - modemmanager? (
62 - $(add_frameworks_dep modemmanager-qt)
63 - $(add_qt_dep qtxml)
64 - net-misc/mobile-broadband-provider-info
65 - )
66 - openconnect? (
67 - $(add_qt_dep qtxml)
68 - net-misc/networkmanager-openconnect
69 - net-vpn/openconnect:=
70 - )
71 -"
72 -RDEPEND="${DEPEND}
73 - $(add_plasma_dep kde-cli-tools)
74 - !kde-plasma/plasma-nm:4
75 -"
76 -
77 -src_configure() {
78 - local mycmakeargs=(
79 - -DDISABLE_MODEMMANAGER_SUPPORT=$(usex !modemmanager)
80 - $(cmake-utils_use_find_package modemmanager KF5ModemManagerQt)
81 - $(cmake-utils_use_find_package openconnect OpenConnect)
82 - )
83 -
84 - kde5_src_configure
85 -}
86 -
87 -pkg_postinst() {
88 - kde5_pkg_postinst
89 -
90 - if ! has_version "kde-plasma/plasma-workspace:5"; then
91 - elog "${PN} is not terribly useful without kde-plasma/plasma-workspace:5."
92 - elog "However, the networkmanagement KCM can be called from either systemsettings"
93 - elog "or manually: $ kcmshell5 kcm_networkmanagement"
94 - fi
95 -}