From: Michał Górny Date: Tue, 5 Nov 2019 22:18:47 +0000 (+0100) Subject: sys-auth/pam_chroot: Remove last-rited pkg X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=fbb3d738f2819deb1d7010015226b07ddd2ba12e;p=gentoo.git sys-auth/pam_chroot: Remove last-rited pkg Bug: https://bugs.gentoo.org/696252 Signed-off-by: Michał Górny --- diff --git a/profiles/package.mask b/profiles/package.mask index c06b69dd237b..b57d8acec6a2 100644 --- a/profiles/package.mask +++ b/profiles/package.mask @@ -424,7 +424,6 @@ net-proxy/ratproxy net-wireless/airsnort sys-apps/hwdata-redhat sys-auth/pam-afs-session -sys-auth/pam_chroot sys-auth/pam_require # Michał Górny (2019-10-04) diff --git a/sys-auth/pam_chroot/Manifest b/sys-auth/pam_chroot/Manifest deleted file mode 100644 index fd77f0395506..000000000000 --- a/sys-auth/pam_chroot/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST pam_chroot-0.9.2.tar.bz2 15657 BLAKE2B 50c8ea57f4f634cb387411ef9233b0b3912f292896f3fe7d2df5b5d5e18aeabef228bc1c26312832d5f95de6d2c037075c7ef327c93da6c0b71378bb9974239d SHA512 5aaabb7ed64944885bb2fd3b8a5f641b1ae3c4fbd0e1e5f130abf298f4089b780a53caf60af86e1082a00fb53ff6f9cae5d2838a740919f65152201bae2bee55 diff --git a/sys-auth/pam_chroot/metadata.xml b/sys-auth/pam_chroot/metadata.xml deleted file mode 100644 index 6e4231058385..000000000000 --- a/sys-auth/pam_chroot/metadata.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - pam-chroot - - diff --git a/sys-auth/pam_chroot/pam_chroot-0.9.2.ebuild b/sys-auth/pam_chroot/pam_chroot-0.9.2.ebuild deleted file mode 100644 index 988186234719..000000000000 --- a/sys-auth/pam_chroot/pam_chroot-0.9.2.ebuild +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=0 - -inherit toolchain-funcs pam flag-o-matic eutils - -DESCRIPTION="Linux-PAM module that allows a user to be chrooted in auth, account, or session" -HOMEPAGE="https://sourceforge.net/projects/pam-chroot/" -SRC_URI="mirror://sourceforge/pam-chroot/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" -IUSE="" - -DEPEND="sys-libs/pam" -RDEPEND="${DEPEND}" - -doecho() { - echo "$@" - "$@" || die -} - -src_compile() { - # using the Makefile would require patching it to work properly, so - # rather simply re-create it here. - doecho $(tc-getCC) ${LDFLAGS} -shared -fPIC ${CFLAGS} ${PN}.c -o ${PN}.so -lpam -} - -src_install() { - dopammod pam_chroot.so - dopamsecurity . chroot.conf - - dodoc CREDITS README.history TROUBLESHOOTING options || die "dodoc failed" -}