From 61da553103205ed0ea432def3cdafbe9d09f0ab7 Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Tue, 9 Oct 2018 21:14:03 -0400 Subject: libre/pam: Import from Arch Linux 32 --- libre/pam/PKGBUILD | 44 ++++++++++++++++++++++++++++++++++++++ libre/pam/other | 5 +++++ libre/pam/pam_unix2-glibc216.patch | 20 +++++++++++++++++ 3 files changed, 69 insertions(+) create mode 100644 libre/pam/PKGBUILD create mode 100644 libre/pam/other create mode 100644 libre/pam/pam_unix2-glibc216.patch diff --git a/libre/pam/PKGBUILD b/libre/pam/PKGBUILD new file mode 100644 index 000000000..7e1540038 --- /dev/null +++ b/libre/pam/PKGBUILD @@ -0,0 +1,44 @@ +# $Id$ +# Maintainer: Tobias Powalowski +# Contributor: judd + +pkgname=pam +pkgver=1.3.1 +pkgrel="1.3" +pkgdesc="PAM (Pluggable Authentication Modules) library" +arch=(i486 i686 pentium3 'x86_64') +license=('GPL2') +url="http://linux-pam.org" +depends=('glibc' 'cracklib' 'libtirpc' 'pambase') +makedepends=('flex' 'w3m' 'docbook-xml>=4.4' 'docbook-xsl') +backup=(etc/security/{access.conf,group.conf,limits.conf,namespace.conf,namespace.init,pam_env.conf,time.conf} etc/default/passwd etc/environment) +source=(https://github.com/linux-pam/linux-pam/releases/download/v$pkgver/Linux-PAM-$pkgver.tar.xz + https://github.com/linux-pam/linux-pam/releases/download/v$pkgver/Linux-PAM-$pkgver.tar.xz.asc) +validpgpkeys=( + '8C6BFD92EE0F42EDF91A6A736D1A7F052E5924BB' # Thorsten Kukuk +) + +md5sums=('558ff53b0fc0563ca97f79e911822165' + 'SKIP') + +options=('!emptydirs') + +build() { + cd $srcdir/Linux-PAM-$pkgver + ./configure --libdir=/usr/lib --sbindir=/usr/bin --disable-db + make +} + +package() { + cd $srcdir/Linux-PAM-$pkgver + make DESTDIR=$pkgdir SCONFIGDIR=/etc/security install + + # set unix_chkpwd uid + chmod +s $pkgdir/usr/bin/unix_chkpwd + + # remove doc which is not used anymore + # FS #40749 + rm $pkgdir/usr/share/doc/Linux-PAM/sag-pam_userdb.html +} + +unset -f pkgver diff --git a/libre/pam/other b/libre/pam/other new file mode 100644 index 000000000..08498b423 --- /dev/null +++ b/libre/pam/other @@ -0,0 +1,5 @@ +#%PAM-1.0 +auth required pam_unix.so +account required pam_unix.so +password required pam_unix.so +session required pam_unix.so diff --git a/libre/pam/pam_unix2-glibc216.patch b/libre/pam/pam_unix2-glibc216.patch new file mode 100644 index 000000000..faa6a235f --- /dev/null +++ b/libre/pam/pam_unix2-glibc216.patch @@ -0,0 +1,20 @@ +Index: pam_unix2-2.9.1/src/read-files.c +=================================================================== +--- pam_unix2-2.9.1.orig/src/read-files.c ++++ pam_unix2-2.9.1/src/read-files.c +@@ -30,8 +30,14 @@ + #include + #include + #include +-#include ++#include + #define __libc_lock_t pthread_mutex_t ++#define __libc_lock_define_initialized(CLASS,NAME) \ ++ CLASS __libc_lock_t NAME = PTHREAD_MUTEX_INITIALIZER; ++#define __libc_lock_lock(NAME) \ ++ pthread_mutex_lock, (&(NAME)) ++#define __libc_lock_unlock(NAME) \ ++ pthread_mutex_unlock, (&(NAME)) + + #include "read-files.h" + -- cgit v1.2.3