diff options
| -rw-r--r-- | kde-plasma/plasma-firewall/Manifest | 1 | ||||
| -rw-r--r-- | kde-plasma/plasma-firewall/plasma-firewall-6.4.91.ebuild | 60 |
2 files changed, 61 insertions, 0 deletions
diff --git a/kde-plasma/plasma-firewall/Manifest b/kde-plasma/plasma-firewall/Manifest index d66939e0141..7bfda89ed96 100644 --- a/kde-plasma/plasma-firewall/Manifest +++ b/kde-plasma/plasma-firewall/Manifest @@ -1 +1,2 @@ DIST plasma-firewall-6.4.90.tar.xz 381604 BLAKE2B bbf047739b5932fe38ae463889f3c6350564a6e45821329cb36b9b846a4b329d132aa1f7a67144415ba1a4ad09e55c5cbe49a62eece6832e3cb2c051dbc8f87b SHA512 8dd4c5a84e315cd81083d2efe5aadd927c98c6c435915d01a292df194c61d7eecfaa9ec67089facf839c91e21535b4a1b593f22d2f0244f13c037199c50fbf6c +DIST plasma-firewall-6.4.91.tar.xz 382916 BLAKE2B 648c8db1c368e381310b7f714532e3aa94348e9ce61b418bc9a0bfe1b8d4fe6d558ed09ccae269336f4ce9819cd47d26c1193ffbf63f439cc4c81a21dc3aec4a SHA512 527172b73a83a91440d429646ff84cf09fc36619775feefffdbda0a896edcd7d6cc0a61881eab2b8c2a6912052f702a0d3154ac768438fae7c57f15ca5023d8c diff --git a/kde-plasma/plasma-firewall/plasma-firewall-6.4.91.ebuild b/kde-plasma/plasma-firewall/plasma-firewall-6.4.91.ebuild new file mode 100644 index 00000000000..44fad1aaa6b --- /dev/null +++ b/kde-plasma/plasma-firewall/plasma-firewall-6.4.91.ebuild @@ -0,0 +1,60 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +ECM_TEST="forceoptional" +PYTHON_COMPAT=( python3_{10..13} ) +KFMIN=6.18.0 +QTMIN=6.9.1 +inherit ecm plasma.kde.org python-single-r1 xdg + +DESCRIPTION="Plasma frontend for Firewalld or UFW" +HOMEPAGE="https://invent.kde.org/network/plasma-firewall" + +LICENSE="GPL-2+" +SLOT="6" +KEYWORDS="~amd64 ~arm64 ~loong ~ppc64 ~riscv ~x86" +IUSE="firewalld +ufw" + +REQUIRED_USE="${PYTHON_REQUIRED_USE} || ( firewalld ufw )" + +DEPEND=" + >=dev-qt/qtbase-${QTMIN}:6[dbus,gui,network,xml] + >=dev-qt/qtdeclarative-${QTMIN}:6 + >=kde-frameworks/kauth-${KFMIN}:6 + >=kde-frameworks/kcmutils-${KFMIN}:6 + >=kde-frameworks/kconfig-${KFMIN}:6 + >=kde-frameworks/kcoreaddons-${KFMIN}:6 + >=kde-frameworks/ki18n-${KFMIN}:6 +" +RDEPEND="${DEPEND} + ${PYTHON_DEPS} + firewalld? ( net-firewall/firewalld ) + ufw? ( net-firewall/ufw ) +" +BDEPEND=">=kde-frameworks/kcmutils-${KFMIN}:6" + +src_prepare() { + ecm_src_prepare + # this kind of cmake magic doesn't work for us at all. + sed -e "1 s:^.*$:\#\!/usr/bin/env ${EPYTHON}:" \ + -i kcm/backends/ufw/helper/kcm_ufw_helper.py.cmake || die +} + +src_configure() { + local mycmakeargs=( + -DBUILD_FIREWALLD_BACKEND=$(usex firewalld) + -DBUILD_UFW_BACKEND=$(usex ufw) + ) + ecm_src_configure +} + +pkg_postinst () { + xdg_pkg_postinst + + if ! has_version sys-apps/systemd; then + ewarn "${PN} is not functional without sys-apps/systemd at this point." + ewarn "See also: https://bugs.gentoo.org/778527" + fi +} |
