diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2017-10-24 20:39:11 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2017-10-24 20:39:11 +0200 |
commit | 5d82433e83852eb4d21d18de4b7b79fdcd3bcb84 (patch) | |
tree | 8b73b450c2ef437cbe0f4d6fb5ba2fe515b68c90 /kde-plasma/kwallet-pam | |
parent | kde-plasma: Add KDE Plasma 5.11.2 (diff) | |
download | gentoo-5d82433e83852eb4d21d18de4b7b79fdcd3bcb84.tar.gz gentoo-5d82433e83852eb4d21d18de4b7b79fdcd3bcb84.tar.bz2 gentoo-5d82433e83852eb4d21d18de4b7b79fdcd3bcb84.zip |
kde-plasma: Drop KDE Plasma 5.11.1
Package-Manager: Portage-2.3.12, Repoman-2.3.3
Diffstat (limited to 'kde-plasma/kwallet-pam')
-rw-r--r-- | kde-plasma/kwallet-pam/Manifest | 1 | ||||
-rw-r--r-- | kde-plasma/kwallet-pam/kwallet-pam-5.11.1.ebuild | 53 |
2 files changed, 0 insertions, 54 deletions
diff --git a/kde-plasma/kwallet-pam/Manifest b/kde-plasma/kwallet-pam/Manifest index 0753ee41962c..0b2a401b547e 100644 --- a/kde-plasma/kwallet-pam/Manifest +++ b/kde-plasma/kwallet-pam/Manifest @@ -1,3 +1,2 @@ DIST kwallet-pam-5.10.5.tar.xz 17908 SHA256 c42e444c9c85dc5bbc60bbd666d20ea72162ddd38dc18254c47c48a0ca404073 SHA512 7a2e1a0a85ffc7d9dfd6a1dc8a16d7117f30fc3b983756e28fc11a19bddf99a273842a1774ccf93c5c879a1d899212f6b6d0808fa14eb17260396f5c207e3dc5 WHIRLPOOL d0db78bc52855b700242079d423fbdb1089796f40be994ad1b9109570e7be46eada006ea62dda8181afdf52f834510121b6fc00c1af3e36bbff7512a32e463f0 -DIST kwallet-pam-5.11.1.tar.xz 18584 SHA256 fed02d1a4592f6b0e80e8f1ddc6a3dfd5c7c019b3def2345fdaa8e2771a3377e SHA512 16ec74966dbc333bfa96f5bdc4db9d6e30b8091993c70dc82c3b1e4ae05cb6b0cb34f0c3b293123492cf525d0d4b32f605b47c6b9798c24760e600281144b5bd WHIRLPOOL afb5f7a6b7626c1a501d8531e45a8d688e89cbdcf80c14ef884bd8a5b244c40a9b8eaed7d807135481c1294eefb5a3ee2c2a531f20c06060bdae4314226fcc8c DIST kwallet-pam-5.11.2.tar.xz 18632 SHA256 0e14e17eb02544f4cb4d621420949a06f245ba5f85c6c76a8ad71696dcfe24cb SHA512 2577531c59710ade53cc37963d67ff1eb2e6a5852c7127b03eb2290749609b97f9432588b5d4189d647fb0d446afd3bcc2201c726cccc0701a24bd1743bddda4 WHIRLPOOL a1de5d4a845b935adf7c59f318c6d6c80e8f486e8612c13230fe90c09da5f42cfe7ad4228c36e17cb373de56b960bec86295e9f6f3f06f8759e5bdcbe1dfcc77 diff --git a/kde-plasma/kwallet-pam/kwallet-pam-5.11.1.ebuild b/kde-plasma/kwallet-pam/kwallet-pam-5.11.1.ebuild deleted file mode 100644 index c91205f1557b..000000000000 --- a/kde-plasma/kwallet-pam/kwallet-pam-5.11.1.ebuild +++ /dev/null @@ -1,53 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit kde5 - -DESCRIPTION="KWallet PAM module to not enter password again" -LICENSE="LGPL-2.1" -KEYWORDS="~amd64 ~arm ~x86" -IUSE="" - -DEPEND=" - dev-libs/libgcrypt:0= - virtual/pam -" -RDEPEND="${DEPEND} - net-misc/socat -" - -src_configure() { - local mycmakeargs=( - -DCMAKE_INSTALL_LIBDIR="/$(get_libdir)" - -DKWALLET4=0 - ) - kde5_src_configure -} - -pkg_postinst() { - check_dm() { - if [[ -e "${ROOT}${2}" ]] ; then - if grep -Eq "auth\s+optional\s+pam_kwallet5.so" "${ROOT}${2}" && \ - grep -Eq "session\s+optional\s+pam_kwallet5.so" "${ROOT}${2}" ; then - elog " ${1} - ${2} ...GOOD" - else - ewarn " ${1} - ${2} ...BAD" - fi - fi - } - elog "This package enables auto-unlocking of kde-frameworks/kwallet:5." - elog "List of things to make it work:" - elog "1. Use standard blowfish encryption instead of GPG" - elog "2. Use same password for login and kwallet" - elog "3. A display manager with support for PAM" - elog "4.a Have the following lines in the display manager's pam.d file:" - elog " -auth optional pam_kwallet5.so" - elog " -session optional pam_kwallet5.so auto_start" - elog "4.b Checking installed DMs..." - has_version "x11-misc/sddm" && check_dm "SDDM" "/etc/pam.d/sddm" - has_version "x11-misc/lightdm" && check_dm "LightDM" "/etc/pam.d/lightdm" - elog - elog "See also: https://wiki.gentoo.org/wiki/KDE#KWallet_auto-unlocking" -} |