summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohannes Huber <johu@gentoo.org>2016-05-25 09:37:59 +0200
committerJohannes Huber <johu@gentoo.org>2016-05-25 09:38:10 +0200
commit0f0c55f194de0669b69ceea3617ba65d3f9d09bd (patch)
treefaf67c24adf769390edb2c6e2a5c54fb90f851f7 /kde-plasma
parentdev-perl/Net-XMPP: added ~alpha, bug 577020. (diff)
downloadgentoo-0f0c55f194de0669b69ceea3617ba65d3f9d09bd.tar.gz
gentoo-0f0c55f194de0669b69ceea3617ba65d3f9d09bd.tar.bz2
gentoo-0f0c55f194de0669b69ceea3617ba65d3f9d09bd.zip
kde-plasma/kwallet-pam: Remove 5.5.5
Package-Manager: portage-2.3.0_rc1
Diffstat (limited to 'kde-plasma')
-rw-r--r--kde-plasma/kwallet-pam/Manifest1
-rw-r--r--kde-plasma/kwallet-pam/kwallet-pam-5.5.5.ebuild55
2 files changed, 0 insertions, 56 deletions
diff --git a/kde-plasma/kwallet-pam/Manifest b/kde-plasma/kwallet-pam/Manifest
index b3cf442cec3f..0cbe46a8a832 100644
--- a/kde-plasma/kwallet-pam/Manifest
+++ b/kde-plasma/kwallet-pam/Manifest
@@ -1,2 +1 @@
-DIST kwallet-pam-5.5.5.tar.xz 16280 SHA256 19c153a0593232767b370a1310f16d13673caba13842571bb7cb01535ba89336 SHA512 7daf595c110df7277a609590bb48da8a038c8516ed3bd6a6f55cdb73df850ef6989f248e5ed7b7128abd5fda0b358b4d695043c974d49451a0037b8a3280c92a WHIRLPOOL 7601debd5eed6baf4bddf98fff424280999e95bc30000663254b391e673df7b191f112689d3914d9dfec3f0bf3142fbe88b8d30b159563be659c9cc91a65ea49
DIST kwallet-pam-5.6.4.tar.xz 17576 SHA256 b20b2cd55b6f4c5e4c1f1590b783ff346e1ea6a1f8341b2c4ee4cf9c3bb425fb SHA512 42382799960b87b9f2abc69def4ed17485b35c4f33f9b0b7a0f0a64d8e9c2567c405e305b4f5b9060c8b141ee3d7727ca36a5f2a41d999a022bfd52702efe0a6 WHIRLPOOL 16e58985410087ddafd71a3b1dce5d55b963e45d951139b2f7311c1edd8d57b9bf5fa4998bc2ac9534ea2aebab61a487a86cdc495dbf85f01c9a437eb3511824
diff --git a/kde-plasma/kwallet-pam/kwallet-pam-5.5.5.ebuild b/kde-plasma/kwallet-pam/kwallet-pam-5.5.5.ebuild
deleted file mode 100644
index 19156bee619a..000000000000
--- a/kde-plasma/kwallet-pam/kwallet-pam-5.5.5.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=6
-
-KDE_AUTODEPS="false"
-inherit kde5 multilib
-
-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)"
- )
-
- kde5_src_configure
-}
-
-pkg_postinst() {
- check_dm() {
- if [[ -e "${ROOT}${2}" ]] && \
- 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
- }
- elog
- 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"
- has_version "kde-base/kdm" && check_dm "KDM" "/etc/pam.d/kde"
- elog
-}