From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id CD7F9138334 for ; Fri, 26 Jul 2019 08:30:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AA3C8E079E; Fri, 26 Jul 2019 08:30:23 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 8C48DE079E for ; Fri, 26 Jul 2019 08:30:23 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C6C97348B8F for ; Fri, 26 Jul 2019 08:30:15 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 158FC608 for ; Fri, 26 Jul 2019 08:30:13 +0000 (UTC) From: "Lars Wendler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Lars Wendler" Message-ID: <1564129569.20d156c15dd4deaf4976c21eda27eb3fc4e63a5e.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/kbd/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/kbd/kbd-2.1.0.ebuild X-VCS-Directories: sys-apps/kbd/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: 20d156c15dd4deaf4976c21eda27eb3fc4e63a5e X-VCS-Branch: master Date: Fri, 26 Jul 2019 08:30:13 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 9fb2c8a3-9274-44d5-9b37-64322966b8df X-Archives-Hash: 0d0ae6afc877e0733817089ccf0d701a commit: 20d156c15dd4deaf4976c21eda27eb3fc4e63a5e Author: Takeshi Ito <85nrdzgv gmail com> AuthorDate: Sat Jul 20 07:16:50 2019 +0000 Commit: Lars Wendler gentoo org> CommitDate: Fri Jul 26 08:26:09 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=20d156c1 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 gentoo.org> sys-apps/kbd/kbd-2.1.0.ebuild | 3 +++ 1 file changed, 3 insertions(+) diff --git a/sys-apps/kbd/kbd-2.1.0.ebuild b/sys-apps/kbd/kbd-2.1.0.ebuild index 12711a24eca..5c0afcf48a5 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 }