diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2024-01-10 14:28:19 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2024-01-10 17:46:17 +0100 |
commit | 1587c5031c2e3a9e8567d9096b8b1df8e200809c (patch) | |
tree | f0a22d2940160988dc5df99848877e64cc1e563d /kde-plasma/plasma-nm | |
parent | kde-plasma/plasma-meta: 5.92.0 version bump (diff) | |
download | kde-1587c5031c2e3a9e8567d9096b8b1df8e200809c.tar.gz kde-1587c5031c2e3a9e8567d9096b8b1df8e200809c.tar.bz2 kde-1587c5031c2e3a9e8567d9096b8b1df8e200809c.zip |
kde-plasma/plasma-nm: 5.92.0 version bump
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'kde-plasma/plasma-nm')
-rw-r--r-- | kde-plasma/plasma-nm/Manifest | 1 | ||||
-rw-r--r-- | kde-plasma/plasma-nm/plasma-nm-5.92.0.ebuild | 78 |
2 files changed, 79 insertions, 0 deletions
diff --git a/kde-plasma/plasma-nm/Manifest b/kde-plasma/plasma-nm/Manifest new file mode 100644 index 0000000000..ca47ee4df0 --- /dev/null +++ b/kde-plasma/plasma-nm/Manifest @@ -0,0 +1 @@ +DIST plasma-nm-5.92.0.tar.xz 1176584 BLAKE2B c59faf55afb36e5414616634d31e2833cd900ab0c3a64d4d4fbc979c620302259d861e2dd1525464958a09f423e3400ca02b4134e92bcb2d188ba535a06ec041 SHA512 9a4e28cdf39c48efb16ec2db41600a5a8d8867838a09a66bea0f9fcf0100ff0eb0205329057f2e328bf38ec65fc31d5c0b47030eaafa78901c01d288ee3a3155 diff --git a/kde-plasma/plasma-nm/plasma-nm-5.92.0.ebuild b/kde-plasma/plasma-nm/plasma-nm-5.92.0.ebuild new file mode 100644 index 0000000000..b6302f15d3 --- /dev/null +++ b/kde-plasma/plasma-nm/plasma-nm-5.92.0.ebuild @@ -0,0 +1,78 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +ECM_TEST="true" +KFMIN=9999 +PVCUT=$(ver_cut 1-3) +QTMIN=6.6.0 +inherit ecm plasma.kde.org + +DESCRIPTION="KDE Plasma applet for NetworkManager" + +LICENSE="GPL-2 LGPL-2.1" +SLOT="6" +KEYWORDS="~amd64" +IUSE="openconnect teamd" + +DEPEND=" + >=app-crypt/qca-2.3.7:2[qt6] + dev-libs/qcoro[dbus] + >=dev-qt/qtbase-${QTMIN}:6[dbus,gui,network,widgets,xml] + >=dev-qt/qtdeclarative-${QTMIN}:6[widgets] + >=kde-frameworks/kcompletion-${KFMIN}:6 + >=kde-frameworks/kconfig-${KFMIN}:6 + >=kde-frameworks/kconfigwidgets-${KFMIN}:6 + >=kde-frameworks/kcoreaddons-${KFMIN}:6 + >=kde-frameworks/kdbusaddons-${KFMIN}:6 + >=kde-frameworks/ki18n-${KFMIN}:6 + >=kde-frameworks/kio-${KFMIN}:6 + >=kde-frameworks/kitemviews-${KFMIN}:6 + >=kde-frameworks/knotifications-${KFMIN}:6 + >=kde-frameworks/kservice-${KFMIN}:6 + >=kde-frameworks/ksvg-${KFMIN}:6 + >=kde-frameworks/kwallet-${KFMIN}:6 + >=kde-frameworks/kwidgetsaddons-${KFMIN}:6 + >=kde-frameworks/kwindowsystem-${KFMIN}:6 + >=kde-frameworks/kxmlgui-${KFMIN}:6 + >=kde-frameworks/modemmanager-qt-${KFMIN}:6 + >=kde-frameworks/networkmanager-qt-${KFMIN}:6[teamd=] + >=kde-frameworks/solid-${KFMIN}:6 + >=kde-plasma/libplasma-${PVCUT}:6 + net-misc/mobile-broadband-provider-info + net-misc/networkmanager[teamd=] + openconnect? ( + >=dev-qt/qtwebengine-${QTMIN}:6 + net-vpn/networkmanager-openconnect + net-vpn/openconnect:= + ) +" +RDEPEND="${DEPEND} + >=kde-frameworks/kdeclarative-${KFMIN}:6 + >=kde-frameworks/kirigami-${KFMIN}:6 + >=kde-frameworks/kquickcharts-${KFMIN}:6 + >=kde-plasma/kde-cli-tools-${PVCUT}:* +" +BDEPEND=" + >=kde-frameworks/kcmutils-${KFMIN}:6 + virtual/pkgconfig +" + +src_configure() { + local mycmakeargs=( + -DBUILD_OPENCONNECT=$(usex openconnect) + ) + + ecm_src_configure +} + +pkg_postinst() { + ecm_pkg_postinst + + if ! has_version "kde-frameworks/kcmutils:6"; then + elog "${PN} is not terribly useful without kde-frameworks/kcmutils:6." + elog "However, the networkmanagement KCM can be called from either systemsettings" + elog "or manually: $ kcmshell6 kcm_networkmanagement" + fi +} |