summaryrefslogtreecommitdiff
path: root/kde-frameworks/kwallet/kwallet-9999.ebuild
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2025-04-30 18:29:00 +0200
committerAndreas Sturmlechner <asturm@gentoo.org>2025-05-03 11:11:00 +0200
commit7e9882575fa5feb57bb424d17250e0f2ccf26d6c (patch)
tree9e2a2d818d6353f760a3da95f950f37ffa9221b9 /kde-frameworks/kwallet/kwallet-9999.ebuild
parent8e92cc0020ab5562fcbb024dd18904cac6d1631c (diff)
downloadkde-7e9882575fa5feb57bb424d17250e0f2ccf26d6c.tar.gz
kde-7e9882575fa5feb57bb424d17250e0f2ccf26d6c.tar.bz2
kde-7e9882575fa5feb57bb424d17250e0f2ccf26d6c.zip
kde-frameworks/kwallet: Split out the runtime to make this library only
Set ECM_QTHELP="true" See also: https://invent.kde.org/frameworks/kwallet/-/blob/master/README.md https://invent.kde.org/plasma/plasma-desktop/-/issues/138 https://invent.kde.org/frameworks/kwallet/-/merge_requests/97 Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'kde-frameworks/kwallet/kwallet-9999.ebuild')
-rw-r--r--kde-frameworks/kwallet/kwallet-9999.ebuild42
1 files changed, 11 insertions, 31 deletions
diff --git a/kde-frameworks/kwallet/kwallet-9999.ebuild b/kde-frameworks/kwallet/kwallet-9999.ebuild
index b704058fe99..cd8524c17d8 100644
--- a/kde-frameworks/kwallet/kwallet-9999.ebuild
+++ b/kde-frameworks/kwallet/kwallet-9999.ebuild
@@ -3,50 +3,30 @@
EAPI=8
+ECM_QTHELP="true"
QTMIN=6.7.2
-inherit ecm frameworks.kde.org optfeature
+inherit ecm frameworks.kde.org
-DESCRIPTION="Framework providing desktop-wide storage for passwords"
+DESCRIPTION="Interface to KWallet Framework providing desktop-wide storage for passwords"
LICENSE="LGPL-2+"
KEYWORDS=""
-IUSE="gpg +man X"
+IUSE="minimal"
DEPEND="
- >=app-crypt/qca-2.3.9:2[qt6(+)]
- dev-libs/libgcrypt:0=
>=dev-qt/qtbase-${QTMIN}:6[dbus,gui,widgets]
- =kde-frameworks/kcolorscheme-${KDE_CATV}*:6
=kde-frameworks/kconfig-${KDE_CATV}*:6
- =kde-frameworks/kcoreaddons-${KDE_CATV}*:6
- =kde-frameworks/kcrash-${KDE_CATV}*:6
- =kde-frameworks/kdbusaddons-${KDE_CATV}*:6
- =kde-frameworks/ki18n-${KDE_CATV}*:6
- =kde-frameworks/knotifications-${KDE_CATV}*:6
- =kde-frameworks/kservice-${KDE_CATV}*:6
- =kde-frameworks/kwidgetsaddons-${KDE_CATV}*:6
- =kde-frameworks/kwindowsystem-${KDE_CATV}*:6[X?]
- gpg? ( app-crypt/gpgme:=[qt6(-)] )
"
-RDEPEND="${DEPEND}
- !<kde-frameworks/kwallet-5.116.0-r2:5[-kf6compat(-)]
-"
-BDEPEND="man? ( >=kde-frameworks/kdoctools-${KDE_CATV}:6 )"
+RDEPEND="${DEPEND}"
+PDEPEND="!minimal? ( =kde-frameworks/kwallet-runtime-${KDE_CATV}* )"
+
+PATCHES=( "${FILESDIR}/${PN}-6.14.0-deps.patch" )
src_configure() {
local mycmakeargs=(
- $(cmake_use_find_package gpg Gpgmepp)
- $(cmake_use_find_package man KF6DocTools)
- -DWITH_X11=$(usex X)
+ -DBUILD_KSECRETD=OFF
+ -DBUILD_KWALLETD=OFF
+ -DBUILD_KWALLET_QUERY=OFF
)
-
ecm_src_configure
}
-
-pkg_postinst() {
- if [[ -z "${REPLACING_VERSIONS}" ]]; then
- optfeature "Auto-unlocking after Plasma login" "kde-plasma/kwallet-pam"
- optfeature "KWallet management" "kde-apps/kwalletmanager"
- elog "For more information, read https://wiki.gentoo.org/wiki/KDE#KWallet"
- fi
-}