diff options
Diffstat (limited to 'kde-frameworks')
| -rw-r--r-- | kde-frameworks/kwallet-runtime/Manifest | 1 | ||||
| -rw-r--r-- | kde-frameworks/kwallet-runtime/kwallet-runtime-6.18.0.ebuild | 66 |
2 files changed, 67 insertions, 0 deletions
diff --git a/kde-frameworks/kwallet-runtime/Manifest b/kde-frameworks/kwallet-runtime/Manifest new file mode 100644 index 00000000000..b2a67c9cd6f --- /dev/null +++ b/kde-frameworks/kwallet-runtime/Manifest @@ -0,0 +1 @@ +DIST kwallet-6.18.0.tar.xz 364524 BLAKE2B 6156c804f1bc7025f7fe9f35f15f693a611765404224e9c9be1d13cb667c4dbf041f02916b5a3b76657175ec28bfe74ed0984d8064543f38044c7e04518cba36 SHA512 3a5a57a5f9a0dea3d1ef7944868b4e784a1eb11943f4dc2fc7246ca5f9eed7351eaa4760bbfe96c118d64b905c6ec3efe7822fbc05fe144e5ae433e06af2a550 diff --git a/kde-frameworks/kwallet-runtime/kwallet-runtime-6.18.0.ebuild b/kde-frameworks/kwallet-runtime/kwallet-runtime-6.18.0.ebuild new file mode 100644 index 00000000000..add67cc4219 --- /dev/null +++ b/kde-frameworks/kwallet-runtime/kwallet-runtime-6.18.0.ebuild @@ -0,0 +1,66 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +KDE_ORG_NAME="kwallet" +QTMIN=6.7.2 +inherit ecm frameworks.kde.org optfeature + +DESCRIPTION="Framework providing desktop-wide storage for passwords" + +LICENSE="LGPL-2+" +KEYWORDS="~amd64 ~arm64 ~loong ~ppc64 ~riscv ~x86" +IUSE="gpg +man +keyring +legacy-kwallet X" + +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/kwallet-${KDE_CATV}*:6 + =kde-frameworks/kwidgetsaddons-${KDE_CATV}*:6 + =kde-frameworks/kwindowsystem-${KDE_CATV}*:6[X?] + gpg? ( dev-libs/qgpgme:= ) + legacy-kwallet? ( app-crypt/libsecret ) +" +RDEPEND="${DEPEND} + !<kde-frameworks/kwallet-5.116.0-r2:5[-kf6compat(-)] + !<kde-frameworks/kwallet-6.14.0:6 +" +BDEPEND="man? ( >=kde-frameworks/kdoctools-${KDE_CATV}:6 )" + +PATCHES=( "${FILESDIR}/${PN}-6.14.0-stdalone.patch" ) + +src_prepare() { + ecm_src_prepare + cmake_run_in src cmake_comment_add_subdirectory api +} + +src_configure() { + local mycmakeargs=( + -DBUILD_KWALLET_QUERY=ON # could be split easily together w/ docs + $(cmake_use_find_package gpg Gpgmepp) + -DBUILD_KSECRETD=$(usex keyring) + -DBUILD_KWALLETD=$(usex legacy-kwallet) + $(cmake_use_find_package man KF6DocTools) + -DWITH_X11=$(usex X) + ) + + 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 +} |
