summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2022-08-29 22:11:40 +0200
committerAndreas Sturmlechner <asturm@gentoo.org>2022-09-02 20:09:57 +0200
commit2053467e31cccb2986e84c7b7317129a2ed10d89 (patch)
tree0e943ff863bd0ef321b57761ccb91893c33eacbd
parentdev-util/vmtouch: drop 1.3.0, EAPI-6-- (diff)
downloadgentoo-2053467e.tar.gz
gentoo-2053467e.tar.bz2
gentoo-2053467e.zip
sys-auth/pam-script: drop 1.1.8, EAPI-6--
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
-rw-r--r--sys-auth/pam-script/Manifest1
-rw-r--r--sys-auth/pam-script/pam-script-1.1.8.ebuild46
2 files changed, 0 insertions, 47 deletions
diff --git a/sys-auth/pam-script/Manifest b/sys-auth/pam-script/Manifest
index 56ab8b2cc102..814d6a65625b 100644
--- a/sys-auth/pam-script/Manifest
+++ b/sys-auth/pam-script/Manifest
@@ -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
diff --git a/sys-auth/pam-script/pam-script-1.1.8.ebuild b/sys-auth/pam-script/pam-script-1.1.8.ebuild
deleted file mode 100644
index 18558310dab8..000000000000
--- a/sys-auth/pam-script/pam-script-1.1.8.ebuild
+++ /dev/null
@@ -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
-}