summaryrefslogtreecommitdiff
path: root/libre/pam
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@lukeshu.com>2018-10-09 21:14:03 -0400
committerLuke Shumaker <lukeshu@lukeshu.com>2018-10-09 21:14:03 -0400
commit61da553103205ed0ea432def3cdafbe9d09f0ab7 (patch)
tree9b747b72b5f0fc8dfd376dec43f4158ca69842a4 /libre/pam
parentb7a1f811bf9e3ef00caeb8228a64e480a1520841 (diff)
downloadabslibre-61da553103205ed0ea432def3cdafbe9d09f0ab7.tar.gz
abslibre-61da553103205ed0ea432def3cdafbe9d09f0ab7.tar.bz2
abslibre-61da553103205ed0ea432def3cdafbe9d09f0ab7.zip
libre/pam: Import from Arch Linux 32
Diffstat (limited to 'libre/pam')
-rw-r--r--libre/pam/PKGBUILD44
-rw-r--r--libre/pam/other5
-rw-r--r--libre/pam/pam_unix2-glibc216.patch20
3 files changed, 69 insertions, 0 deletions
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 <tpowa@archlinux.org>
+# Contributor: judd <jvinet@zeroflux.org>
+
+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 <errno.h>
+ #include <fcntl.h>
+ #include <nss.h>
+-#include <bits/libc-lock.h>
++#include <pthread.h>
+ #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"
+