summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <andreas.sturmlechner@gmail.com>2016-04-07 16:31:25 +0200
committerMichael Palimaka <kensington@gentoo.org>2016-04-08 02:12:43 +1000
commit852cae2a459ef75b6e5265df6372f552897f5ed1 (patch)
tree3981fe3a14fd3146344b79195429ae54b1da3197 /kde-plasma
parentkde-plasma/kwallet-pam: Add USE=oldwallet, block kde-apps/kwalletd-pam (diff)
downloadgentoo-852cae2a459ef75b6e5265df6372f552897f5ed1.tar.gz
gentoo-852cae2a459ef75b6e5265df6372f552897f5ed1.tar.bz2
gentoo-852cae2a459ef75b6e5265df6372f552897f5ed1.zip
kde-plasma/kwallet-pam: Drop old
Package-Manager: portage-2.2.27
Diffstat (limited to 'kde-plasma')
-rw-r--r--kde-plasma/kwallet-pam/kwallet-pam-5.6.2.ebuild57
1 files changed, 0 insertions, 57 deletions
diff --git a/kde-plasma/kwallet-pam/kwallet-pam-5.6.2.ebuild b/kde-plasma/kwallet-pam/kwallet-pam-5.6.2.ebuild
deleted file mode 100644
index e16b8a3384f3..000000000000
--- a/kde-plasma/kwallet-pam/kwallet-pam-5.6.2.ebuild
+++ /dev/null
@@ -1,57 +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=""
-
-COMMON_DEPEND="
- dev-libs/libgcrypt:0=
- virtual/pam
-"
-DEPEND="${COMMON_DEPEND}
- $(add_frameworks_dep extra-cmake-modules)
-"
-RDEPEND="${COMMON_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
-}