mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-21 21:17:37 -08:00
Package-Manager: Portage-2.3.76, Repoman-2.3.16 Signed-off-by: Mikle Kolyada <zlogene@gentoo.org>
47 lines
918 B
Bash
47 lines
918 B
Bash
# Copyright 1999-2019 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
inherit autotools
|
|
|
|
MY_PN=${PN/-/_}
|
|
MY_P=${MY_PN}-${PV}
|
|
|
|
DESCRIPTION="PAM module for running scripts during authorization, password change and session"
|
|
HOMEPAGE="https://github.com/jeroennijhof/pam_script/"
|
|
SRC_URI="https://github.com/jeroennijhof/${MY_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
IUSE="examples"
|
|
|
|
RDEPEND="sys-libs/pam"
|
|
DEPEND="${RDEPEND}"
|
|
|
|
S=${WORKDIR}/${MY_P}
|
|
|
|
src_prepare() {
|
|
default
|
|
eautoreconf
|
|
}
|
|
|
|
src_configure() {
|
|
econf \
|
|
--libdir=/$(get_libdir)/security \
|
|
--sysconfdir=/etc/security/${PN}
|
|
}
|
|
|
|
src_install() {
|
|
default
|
|
|
|
if use examples ; then
|
|
docinto examples
|
|
dodoc etc/README.examples
|
|
exeinto /usr/share/doc/${PF}/examples
|
|
doexe etc/{logscript,tally}
|
|
docompress -x /usr/share/doc/${PF}/examples/{logscript,tally}
|
|
fi
|
|
}
|