sys-auth/pam_krb5: add 4.11

Closes: https://bugs.gentoo.org/835605
Signed-off-by: Eray Aslan <eras@gentoo.org>
This commit is contained in:
Eray Aslan
2022-03-19 11:23:13 +03:00
parent 6f45cd188c
commit bae49e0d79
2 changed files with 36 additions and 0 deletions

View File

@@ -1,2 +1,3 @@
DIST pam-krb5-4.10.tar.gz 619678 BLAKE2B c69e77c0a9f2c96b73af21d95ceb0f8e35e01d6886a2de6b9fb845d0236c4abba30e68f343166bc2c37eaac5bea11d0f1a6d64bfcd481792150bb93ae8ef8eb5 SHA512 6c05352726bdb1463509e6ff4746460ee4f9c6302241dfda94c35b218198f38e40d409cc81e7c8ee8cdcd5291b1ee121f79ae32bd63ea8871462beec70076448
DIST pam-krb5-4.11.tar.gz 625522 BLAKE2B 304cf596f9044de80d56fcc15ee4354180b2309bc89eba2a9c8904bbbd09b2871a8186255a701fd605a04b8bdff4fabfc0e7914337d51b0c2e3460e018157a8e SHA512 a48ff063227b77c7487b8afa50a7365e919c276ef829de1ed9f77c32f2cfdffb234fc156bb60e05d9b3b4f51bc1daff90e28f0256746923ea169cb1bd2821c2e
DIST pam-krb5-4.9.tar.gz 630425 BLAKE2B dc4a539c25c72c50c07ca3359d1dcdcb58b36ec48fc8fa40600c2fece2de8f3cc6af583fce2640ef2d515c342487f9398ed9153abb734ee2dd73b3d440bd00ab SHA512 0e93fbfacf56f9935902ead000dc46732c8a11cc2689c00b68cbaaf6519108a4ce53bb943479d01e439fb92bcc5c1a219d2b816a5ade2af54ea093bb78907201

View File

@@ -0,0 +1,35 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="Kerberos V PAM Authentication Module"
HOMEPAGE="https://www.eyrie.org/~eagle/software/pam-krb5/"
SRC_URI="https://archives.eyrie.org/software/kerberos/pam-krb5-${PV}.tar.gz"
LICENSE="|| ( BSD-2 GPL-2 )"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
IUSE=""
# tests fail without a /etc/krb5.conf
#RESTRICT="test"
DEPEND="virtual/krb5
virtual/libcrypt:=
sys-libs/pam"
RDEPEND="${DEPEND}"
S="${WORKDIR}/${P/_/-}"
src_configure() {
econf \
--libdir=/$(get_libdir)
}
src_install() {
emake DESTDIR="${D}" install
dodoc NEWS README TODO
rm "${D}/$(get_libdir)/security/pam_krb5.la"
}