diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2019-07-13 16:43:45 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2019-07-15 07:36:12 +0200 |
commit | 75dd10c7d9dc7f20e73445bf31cce819ae962cb2 (patch) | |
tree | 683855d5c9ea0c6c30bc35bff7803a4990b31290 /kde-frameworks/kwallet | |
parent | kde5.eclass: kde-frameworks/kdewebkit moved to portingAids (diff) | |
download | gentoo-75dd10c7d9dc7f20e73445bf31cce819ae962cb2.tar.gz gentoo-75dd10c7d9dc7f20e73445bf31cce819ae962cb2.tar.bz2 gentoo-75dd10c7d9dc7f20e73445bf31cce819ae962cb2.zip |
kde-frameworks: Add KDE Frameworks 5.60.0
Package-Manager: Portage-2.3.69, Repoman-2.3.16
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'kde-frameworks/kwallet')
-rw-r--r-- | kde-frameworks/kwallet/Manifest | 1 | ||||
-rw-r--r-- | kde-frameworks/kwallet/kwallet-5.60.0.ebuild | 57 |
2 files changed, 58 insertions, 0 deletions
diff --git a/kde-frameworks/kwallet/Manifest b/kde-frameworks/kwallet/Manifest index 648bd6b31e7c..aa1baa84e376 100644 --- a/kde-frameworks/kwallet/Manifest +++ b/kde-frameworks/kwallet/Manifest @@ -1,2 +1,3 @@ DIST kwallet-5.57.0.tar.xz 308036 BLAKE2B d2da2e0bf99b455946973dd7ec00008affdf31abd03d5eae0509383c2309ce3d5d86ec65d8a9757d15ea04269525296ce9ffc505ba3f669a012e33463465fac3 SHA512 7a3809d6563dbd46c1a8de6f9fe7f1665ede884430ac83782cfed4e02f4fc9ecd275293f8c09463a42054d071a545308c8353ddb447e8b0acab5a9c6e47966f2 DIST kwallet-5.59.0.tar.xz 306796 BLAKE2B 505f623c4f571b98dc75fe8af84d4bab3cc58c0709b09a8212117c54510d162ef29763a1f04ead0c04671f243c5a237cd7169859b9d41e2e114581af0d88cd8c SHA512 5f7094c914ad37c634758826d878f5cc204e853722d2555e20ff4f8fb5471311d1ad43d3aad5ca05df0e7b60b6febc243f4205d9c68919d62cbe2f0e9d4f2d04 +DIST kwallet-5.60.0.tar.xz 308420 BLAKE2B 93eafec141e01c9d77a7ea43cc9e6f7c445717b02ae5a1cea7c7f3bd1e54878c539b674b2ad4ba24fc7b3731b118ed6c71b56b5fadcdc18e1afc4a9ad1fd1ac7 SHA512 8e0d1dbf9d54deaffd1d06394f0e609e4a2dadc12f3aa92f181949bca9a37b48e70414674aef5287576d986d27f58940157d618dd3f8ec24a7a003a3c31d3858 diff --git a/kde-frameworks/kwallet/kwallet-5.60.0.ebuild b/kde-frameworks/kwallet/kwallet-5.60.0.ebuild new file mode 100644 index 000000000000..817d760a27ff --- /dev/null +++ b/kde-frameworks/kwallet/kwallet-5.60.0.ebuild @@ -0,0 +1,57 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit kde5 + +DESCRIPTION="Framework providing desktop-wide storage for passwords" +LICENSE="LGPL-2+" +KEYWORDS="~amd64 ~arm ~arm64 ~x86" +IUSE="gpg +man" + +BDEPEND=" + man? ( $(add_frameworks_dep kdoctools) ) +" +DEPEND=" + $(add_frameworks_dep kconfig) + $(add_frameworks_dep kconfigwidgets) + $(add_frameworks_dep kcoreaddons) + $(add_frameworks_dep kdbusaddons) + $(add_frameworks_dep ki18n) + $(add_frameworks_dep kiconthemes) + $(add_frameworks_dep knotifications) + $(add_frameworks_dep kservice) + $(add_frameworks_dep kwidgetsaddons) + $(add_frameworks_dep kwindowsystem) + $(add_qt_dep qtdbus) + $(add_qt_dep qtgui) + $(add_qt_dep qtwidgets) + dev-libs/libgcrypt:0= + gpg? ( >=app-crypt/gpgme-1.7.1[cxx,qt5] ) +" +RDEPEND="${DEPEND}" + +src_configure() { + local mycmakeargs=( + $(cmake-utils_use_find_package gpg Gpgmepp) + $(cmake-utils_use_find_package man KF5DocTools) + ) + + kde5_src_configure +} + +pkg_postinst() { + if ! has_version "kde-plasma/kwallet-pam" || ! has_version "kde-apps/kwalletmanager:5" ; then + elog + elog "Install kde-plasma/kwallet-pam for auto-unlocking after account login." + elog "Install kde-apps/kwalletmanager:5 to manage your kwallet." + elog + fi + if has_version "kde-apps/kwalletd"; then + elog "Starting with 5.34.0-r1, ${PN} is able to serve applications" + elog "that still require old kwalletd4. After migration has finished," + elog "kde-apps/kwalletd can be removed." + fi + elog "For more information, read https://wiki.gentoo.org/wiki/KDE#KWallet" +} |