diff options
author | 2016-02-21 19:12:01 +0100 | |
---|---|---|
committer | 2016-03-03 06:23:17 +1100 | |
commit | a2aa97bc2228233f5ab69c437a5f7d6a40cec05b (patch) | |
tree | b8e4121b6a0cec3337c0d085d0a14bcddbfba27d /kde-base/kdebase-pam | |
parent | kde-apps: Remove KDE_SCM="svn" from kde5.eclass inheriting ebuilds (diff) | |
download | gentoo-a2aa97bc2228233f5ab69c437a5f7d6a40cec05b.tar.gz gentoo-a2aa97bc2228233f5ab69c437a5f7d6a40cec05b.tar.bz2 gentoo-a2aa97bc2228233f5ab69c437a5f7d6a40cec05b.zip |
kde-base/kdebase-pam: Add pam_kwallet.so entries
Package-Manager: portage-2.2.27
Diffstat (limited to 'kde-base/kdebase-pam')
-rw-r--r-- | kde-base/kdebase-pam/files/kde.pam-10 | 14 | ||||
-rw-r--r-- | kde-base/kdebase-pam/kdebase-pam-10.ebuild | 25 |
2 files changed, 39 insertions, 0 deletions
diff --git a/kde-base/kdebase-pam/files/kde.pam-10 b/kde-base/kdebase-pam/files/kde.pam-10 new file mode 100644 index 000000000000..d7b2b6499e3e --- /dev/null +++ b/kde-base/kdebase-pam/files/kde.pam-10 @@ -0,0 +1,14 @@ +#%PAM-1.0 + +auth required pam_nologin.so + +auth include system-local-login + +account include system-local-login + +password include system-local-login + +session include system-local-login + +-auth optional pam_kwallet.so kdehome=.kde4 +-session optional pam_kwallet.so diff --git a/kde-base/kdebase-pam/kdebase-pam-10.ebuild b/kde-base/kdebase-pam/kdebase-pam-10.ebuild new file mode 100644 index 000000000000..22ca96515160 --- /dev/null +++ b/kde-base/kdebase-pam/kdebase-pam-10.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +inherit pam + +DESCRIPTION="pam.d files used by several KDE components" +HOMEPAGE="https://www.kde.org" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 ~x86-fbsd" +IUSE="" + +DEPEND="virtual/pam" +RDEPEND="${DEPEND}" + +S=${WORKDIR} + +src_install() { + newpamd "${FILESDIR}/kde.pam-${PV}" kde + newpamd "${FILESDIR}/kde-np.pam-9" kde-np +} |