diff options
author | Takeshi Ito <85nrdzgv@gmail.com> | 2019-07-20 16:16:50 +0900 |
---|---|---|
committer | Lars Wendler <polynomial-c@gentoo.org> | 2019-07-26 10:26:09 +0200 |
commit | 20d156c15dd4deaf4976c21eda27eb3fc4e63a5e (patch) | |
tree | e01c0b8e3200b07c70259d07c06391a0abe7356d /sys-apps | |
parent | mail-client/thunderbird: amd64 stable wrt bug #690664 (diff) | |
download | gentoo-20d156c15dd4deaf4976c21eda27eb3fc4e63a5e.tar.gz gentoo-20d156c15dd4deaf4976c21eda27eb3fc4e63a5e.tar.bz2 gentoo-20d156c15dd4deaf4976c21eda27eb3fc4e63a5e.zip |
sys-apps/kbd: fix pam config to be created for vlock
Added pam eclass and create pam config file when `pam` flag is enabled.
`vlock` command needs it to work correctly.
Package-Manager: Portage-2.3.69, Repoman-2.3.16
Closes: https://bugs.gentoo.org/690746
Signed-off-by: Takeshi Ito <85nrdzgv@gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/12480
Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
Diffstat (limited to 'sys-apps')
-rw-r--r-- | sys-apps/kbd/kbd-2.1.0.ebuild | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sys-apps/kbd/kbd-2.1.0.ebuild b/sys-apps/kbd/kbd-2.1.0.ebuild index 12711a24eca6..5c0afcf48a51 100644 --- a/sys-apps/kbd/kbd-2.1.0.ebuild +++ b/sys-apps/kbd/kbd-2.1.0.ebuild @@ -3,6 +3,8 @@ EAPI=7 +inherit pam + if [[ ${PV} == "9999" ]] ; then inherit autotools git-r3 EGIT_REPO_URI="https://git.kernel.org/pub/scm/linux/kernel/git/legion/kbd.git" @@ -67,4 +69,5 @@ src_install() { default docinto html dodoc docs/doc/*.html + use pam && pamd_mimic_system vlock auth account } |