diff options
author | Johannes Huber <johu@gentoo.org> | 2016-03-12 19:28:01 +0100 |
---|---|---|
committer | Johannes Huber <johu@gentoo.org> | 2016-03-12 19:28:14 +0100 |
commit | 3bd4fa27da72755f8bb36aa0425bb8987e548cac (patch) | |
tree | 460fd7a6a00ad133ded5d2775151dd60e19d816c /kde-plasma/kwallet-pam | |
parent | sys-fs/s3ql: version bump to 2.17.1 (diff) | |
download | gentoo-3bd4fa27da72755f8bb36aa0425bb8987e548cac.tar.gz gentoo-3bd4fa27da72755f8bb36aa0425bb8987e548cac.tar.bz2 gentoo-3bd4fa27da72755f8bb36aa0425bb8987e548cac.zip |
kde-plasma: Remove KDE Plasma 5.5.4
Package-Manager: portage-2.2.28
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.5.4.ebuild | 54 |
2 files changed, 0 insertions, 55 deletions
diff --git a/kde-plasma/kwallet-pam/Manifest b/kde-plasma/kwallet-pam/Manifest index 03c0143e9abb..48196c770bd2 100644 --- a/kde-plasma/kwallet-pam/Manifest +++ b/kde-plasma/kwallet-pam/Manifest @@ -1,2 +1 @@ -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.5.4.ebuild b/kde-plasma/kwallet-pam/kwallet-pam-5.5.4.ebuild deleted file mode 100644 index 50ad31edcf76..000000000000 --- a/kde-plasma/kwallet-pam/kwallet-pam-5.5.4.ebuild +++ /dev/null @@ -1,54 +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}" ]] && \ - [[ -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 -} |