summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohannes Huber <johu@gentoo.org>2016-03-12 18:55:16 +0100
committerJohannes Huber <johu@gentoo.org>2016-03-12 19:05:32 +0100
commit714a8865521d686ca52e497a6079a485c174def7 (patch)
treeb77549f373fb7b84b3bff0f8197aca3e175141dc /kde-plasma/kwallet-pam
parentsys-fs/f2fs-tools: version 1.6.0 stable on ppc and ppc64, bug #577186 (diff)
downloadgentoo-714a8865521d686ca52e497a6079a485c174def7.tar.gz
gentoo-714a8865521d686ca52e497a6079a485c174def7.tar.bz2
gentoo-714a8865521d686ca52e497a6079a485c174def7.zip
kde-plasma: Remove KDE Plasma 5.4.3
Package-Manager: portage-2.2.28
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.4.3-r1.ebuild47
2 files changed, 0 insertions, 48 deletions
diff --git a/kde-plasma/kwallet-pam/Manifest b/kde-plasma/kwallet-pam/Manifest
index 4ea1ef57ecbf..03c0143e9abb 100644
--- a/kde-plasma/kwallet-pam/Manifest
+++ b/kde-plasma/kwallet-pam/Manifest
@@ -1,3 +1,2 @@
-DIST kwallet-pam-5.4.3.tar.xz 15540 SHA256 a15c1fe1f8b9dc3be2600b93876bbb15cb28cf65a935c066065c516518fabe54 SHA512 2bc79bce836d565aca07e7689d98cd44a20096991e1e57b6d6bf766fa518340421de7d7b47e6c8e8ae749a93af682a4722b6d5b1ce6167cf73248bc4d0795ef3 WHIRLPOOL d0a74950f94f7109ef4cef76726dc3f248795062da712832e69ed620c2df395e938112b9818ad0ff3d337bd68b005c25c08a9e2a53f86ec008a6a85b834fee25
DIST kwallet-pam-5.5.4.tar.xz 16276 SHA256 14367f03fdb3f1d828747090ef07a7a3b27592ba8ec0211f639408b50e8e4932 SHA512 124fa38fd0b70f98003cf2ede556b0776adc5a97a34c708dda5dc7f117c5a102000ed5395eca9a6fd7013a8aaae29ee75c42ace69b7084d8c199a03852c4c0d7 WHIRLPOOL fc7849b36bd601eb05fd4be37f5e4da8e0345b0e1ae83cdf584baa5960c7ae37d82064bc5da313dbeda58556a1c6044530ab7e7272df3a3aa74a7a150292aa50
DIST kwallet-pam-5.5.5.tar.xz 16280 SHA256 19c153a0593232767b370a1310f16d13673caba13842571bb7cb01535ba89336 SHA512 7daf595c110df7277a609590bb48da8a038c8516ed3bd6a6f55cdb73df850ef6989f248e5ed7b7128abd5fda0b358b4d695043c974d49451a0037b8a3280c92a WHIRLPOOL 7601debd5eed6baf4bddf98fff424280999e95bc30000663254b391e673df7b191f112689d3914d9dfec3f0bf3142fbe88b8d30b159563be659c9cc91a65ea49
diff --git a/kde-plasma/kwallet-pam/kwallet-pam-5.4.3-r1.ebuild b/kde-plasma/kwallet-pam/kwallet-pam-5.4.3-r1.ebuild
deleted file mode 100644
index 42f80332a989..000000000000
--- a/kde-plasma/kwallet-pam/kwallet-pam-5.4.3-r1.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-KDE_AUTODEPS="false"
-inherit kde5
-
-DESCRIPTION="KWallet PAM module to not enter password again"
-
-LICENSE="LGPL-2.1"
-KEYWORDS=" ~amd64 ~x86"
-IUSE=""
-
-DEPEND="
- dev-libs/libgcrypt:0=
- virtual/pam
-"
-RDEPEND="${DEPEND}
- net-misc/socat
-"
-
-pkg_postinst() {
- check_dm() {
- if [[ -e "${ROOT}${2}" ]] && \
- [[ -n $(egrep "auth\s+optional\s+pam_kwallet5.so" "${ROOT}${2}") ]] && \
- [[ -n $(egrep "session\s+optional\s+pam_kwallet5.so" "${ROOT}${2}") ]]; then
- elog " ${1} - ${2} ...GOOD"
- else
- ewarn " ${1} - ${2} ...BAD"
- fi
- }
- elog
- elog "This package enables auto-unlocking of kde-frameworks/kwallet:5."
- elog "List of things to make it work:"
- elog "1. Use same password for login and kwallet"
- elog "2. A display manager with support for PAM"
- elog "3.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 "3.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"
- has_version "kde-base/kdm" && check_dm "KDM" "/etc/pam.d/kde"
- elog
-}