sys-auth/pam-script: drop 1.1.8, EAPI-6--

Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
This commit is contained in:
Andreas Sturmlechner 2022-08-29 22:11:40 +02:00
parent 18979e2fc1
commit 2053467e31
No known key found for this signature in database
GPG Key ID: 14644BCDD1535109
2 changed files with 0 additions and 47 deletions

View File

@ -1,2 +1 @@
DIST pam-script-1.1.8.tar.gz 36442 BLAKE2B 29ea87d694deb5483d34dd60fd4192d8d2050f6c5291fe5d2e7fa90408e7d8ce07b5b987a58142e43893d352d13d002604958b70565827d720e0ee89c6d8eb48 SHA512 c4b99c69a759b6422189707c52439a6afe59e32fca6238acf00116ed104b625920fb36b3e1f0aaf5edc77325b1f7b10d52ac2530d85cec53d941ae906e077543
DIST pam-script-1.1.9.tar.gz 34890 BLAKE2B 0cb1c978cf335039185d34ea9d9a6a5363d73c86e05b24735d3a13d88c2eb03734831ee1fe80a87ca9d89c5b793cdc498b7fb2890a2e09209adfdd43784c2fd8 SHA512 319dff52923f7f895ff123bd6258bc83668b41da1172961e1747cb12fbdd260c6907b73f9881f5c3a50d4e2c4074b66747d7d6bbe1e0d7ab0411251705b59537

View File

@ -1,46 +0,0 @@
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
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
}