diff options
author | Michael Palimaka <kensington@gentoo.org> | 2016-03-02 03:33:46 +1100 |
---|---|---|
committer | Michael Palimaka <kensington@gentoo.org> | 2016-03-02 03:37:34 +1100 |
commit | af29e6da29eaa68ab7405582b99137194c80de5a (patch) | |
tree | 28d6d946ed0b04314d3e1a763315d10a58d07f62 /kde-plasma/kwallet-pam | |
parent | kde-apps: version bump kdeadmin 15.12.2 (diff) | |
download | gentoo-af29e6da29eaa68ab7405582b99137194c80de5a.tar.gz gentoo-af29e6da29eaa68ab7405582b99137194c80de5a.tar.bz2 gentoo-af29e6da29eaa68ab7405582b99137194c80de5a.zip |
kde-plasma: version bump 5.5.5
Package-Manager: portage-2.2.27
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.5.ebuild | 54 |
2 files changed, 55 insertions, 0 deletions
diff --git a/kde-plasma/kwallet-pam/Manifest b/kde-plasma/kwallet-pam/Manifest index 5d3fb78d9001..4ea1ef57ecbf 100644 --- a/kde-plasma/kwallet-pam/Manifest +++ b/kde-plasma/kwallet-pam/Manifest @@ -1,2 +1,3 @@ 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.5.5.ebuild b/kde-plasma/kwallet-pam/kwallet-pam-5.5.5.ebuild new file mode 100644 index 000000000000..50ad31edcf76 --- /dev/null +++ b/kde-plasma/kwallet-pam/kwallet-pam-5.5.5.ebuild @@ -0,0 +1,54 @@ +# 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 +} |