summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2017-09-12 16:00:57 +0200
committerAndreas Sturmlechner <asturm@gentoo.org>2017-09-12 22:32:55 +0200
commitcba4842d33143287b9db93e426c80c45f416e43d (patch)
treee095de2cfcd9bad1d18e691a2f8984f0c1f93746 /kde-plasma/kwallet-pam
parentkde-frameworks: Drop KDE Frameworks 5.34.0 (diff)
downloadgentoo-cba4842d33143287b9db93e426c80c45f416e43d.tar.gz
gentoo-cba4842d33143287b9db93e426c80c45f416e43d.tar.bz2
gentoo-cba4842d33143287b9db93e426c80c45f416e43d.zip
kde-plasma: Drop KDE Plasma 5.10.4
Package-Manager: Portage-2.3.6, Repoman-2.3.1
Diffstat (limited to 'kde-plasma/kwallet-pam')
-rw-r--r--kde-plasma/kwallet-pam/Manifest1
-rw-r--r--kde-plasma/kwallet-pam/kwallet-pam-5.10.4.ebuild53
2 files changed, 0 insertions, 54 deletions
diff --git a/kde-plasma/kwallet-pam/Manifest b/kde-plasma/kwallet-pam/Manifest
index b5a955c96fd6..6a0878fb8ce4 100644
--- a/kde-plasma/kwallet-pam/Manifest
+++ b/kde-plasma/kwallet-pam/Manifest
@@ -1,2 +1 @@
-DIST kwallet-pam-5.10.4.tar.xz 17912 SHA256 0227751c8f68970e184c2e723796bf11966ae045b904e7a6b07d1e4b9e7729ea SHA512 e6a7cfa743410ea6def35e9b8c81880e9627a4035dddc1d5d269a63451e1852e0d1f0f9bc516a39ce5778222df79286d807f039842d5557e5d36daf368320d46 WHIRLPOOL b762f2e36429810d91a11e8a5b448fda7c776e8cbe3f43fb359cc48ce924ab4456832f26a11005a3042a294d3c85aa4b47f4f4cc41868e7f18a60de987c18f81
DIST kwallet-pam-5.10.5.tar.xz 17908 SHA256 c42e444c9c85dc5bbc60bbd666d20ea72162ddd38dc18254c47c48a0ca404073 SHA512 7a2e1a0a85ffc7d9dfd6a1dc8a16d7117f30fc3b983756e28fc11a19bddf99a273842a1774ccf93c5c879a1d899212f6b6d0808fa14eb17260396f5c207e3dc5 WHIRLPOOL d0db78bc52855b700242079d423fbdb1089796f40be994ad1b9109570e7be46eada006ea62dda8181afdf52f834510121b6fc00c1af3e36bbff7512a32e463f0
diff --git a/kde-plasma/kwallet-pam/kwallet-pam-5.10.4.ebuild b/kde-plasma/kwallet-pam/kwallet-pam-5.10.4.ebuild
deleted file mode 100644
index 91c46aa30042..000000000000
--- a/kde-plasma/kwallet-pam/kwallet-pam-5.10.4.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"
-}