commit:     185acb067688322b0dbdeaf73cee0a9ac0a9f6a6
Author:     Andreas Sturmlechner <andreas.sturmlechner <AT> gmail <DOT> com>
AuthorDate: Sun Feb 28 01:25:13 2016 +0000
Commit:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Wed Mar  2 19:23:19 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=185acb06

kde-plasma/kwallet-pam: Add pkg_postinst instructions

Package-Manager: portage-2.2.27

 kde-plasma/kwallet-pam/kwallet-pam-5.4.3-r1.ebuild | 27 +++++++++++++++++++++-
 kde-plasma/kwallet-pam/kwallet-pam-5.5.4.ebuild    | 25 ++++++++++++++++++++
 2 files changed, 51 insertions(+), 1 deletion(-)

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
index 26499e6..42f8033 100644
--- a/kde-plasma/kwallet-pam/kwallet-pam-5.4.3-r1.ebuild
+++ b/kde-plasma/kwallet-pam/kwallet-pam-5.4.3-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -20,3 +20,28 @@ DEPEND="
 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
+}

diff --git a/kde-plasma/kwallet-pam/kwallet-pam-5.5.4.ebuild 
b/kde-plasma/kwallet-pam/kwallet-pam-5.5.4.ebuild
index 69759db..50ad31e 100644
--- a/kde-plasma/kwallet-pam/kwallet-pam-5.5.4.ebuild
+++ b/kde-plasma/kwallet-pam/kwallet-pam-5.5.4.ebuild
@@ -27,3 +27,28 @@ src_configure() {
 
        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
+}

Reply via email to