commit:     c32ff3fd3d55c96086f38245f365f94eb135da7e
Author:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Sat Jan 23 11:30:43 2021 +0000
Commit:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Sat Jan 23 11:31:13 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c32ff3fd

sys-apps/openrc: install pam files conditionally

Package-Manager: Portage-3.0.13, Repoman-3.0.2
Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>

 .../openrc/{openrc-0.42.1.ebuild => openrc-0.42.1-r1.ebuild}   | 10 ++++++----
 sys-apps/openrc/openrc-9999.ebuild                             | 10 ++++++----
 2 files changed, 12 insertions(+), 8 deletions(-)

diff --git a/sys-apps/openrc/openrc-0.42.1.ebuild 
b/sys-apps/openrc/openrc-0.42.1-r1.ebuild
similarity index 96%
rename from sys-apps/openrc/openrc-0.42.1.ebuild
rename to sys-apps/openrc/openrc-0.42.1-r1.ebuild
index a10ce3384c6..14135968508 100644
--- a/sys-apps/openrc/openrc-0.42.1.ebuild
+++ b/sys-apps/openrc/openrc-0.42.1-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -135,9 +135,11 @@ src_install() {
        insinto /etc/logrotate.d
        newins "${FILESDIR}"/openrc.logrotate openrc
 
-       # install gentoo pam.d files
-       newpamd "${FILESDIR}"/start-stop-daemon.pam start-stop-daemon
-       newpamd "${FILESDIR}"/start-stop-daemon.pam supervise-daemon
+       if use pam; then
+               # install gentoo pam.d files
+               newpamd "${FILESDIR}"/start-stop-daemon.pam start-stop-daemon
+               newpamd "${FILESDIR}"/start-stop-daemon.pam supervise-daemon
+       fi
 
        # install documentation
        dodoc ChangeLog *.md

diff --git a/sys-apps/openrc/openrc-9999.ebuild 
b/sys-apps/openrc/openrc-9999.ebuild
index c159c6cdce2..da6d7d50ca1 100644
--- a/sys-apps/openrc/openrc-9999.ebuild
+++ b/sys-apps/openrc/openrc-9999.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -125,9 +125,11 @@ src_install() {
        insinto /etc/logrotate.d
        newins "${FILESDIR}"/openrc.logrotate openrc
 
-       # install gentoo pam.d files
-       newpamd "${FILESDIR}"/start-stop-daemon.pam start-stop-daemon
-       newpamd "${FILESDIR}"/start-stop-daemon.pam supervise-daemon
+       if use pam; then
+               # install gentoo pam.d files
+               newpamd "${FILESDIR}"/start-stop-daemon.pam start-stop-daemon
+               newpamd "${FILESDIR}"/start-stop-daemon.pam supervise-daemon
+       fi
 
        # install documentation
        dodoc ChangeLog *.md

Reply via email to