core/pam/PKGBUILD

77 lines
2.6 KiB
Bash

#
# Core Packages for Chakra, part of chakra-project.org
#
# maintainer abveritas[at]chakra-project[dog]org>
# maintainer Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
pkgname=pam
pkgver=1.1.6
pkgrel=2
pkgdesc="PAM (Pluggable Authentication Modules) library"
arch=('x86_64')
license=('GPL2')
url="http://www.kernel.org/pub/linux/libs/pam/"
depends=('glibc' 'db' 'cracklib' 'libtirpc')
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/pam.d/other etc/default/passwd etc/environment)
source=("https://fedorahosted.org/releases/l/i/linux-pam/Linux-PAM-$pkgver.tar.bz2"
#http://www.kernel.org/pub/linux/libs/pam/library/Linux-PAM-$pkgver.tar.bz2
"pam_unix2-glibc216.patch"
# file below should have been at https://build.opensuse.org/package/show/Linux-PAM/pam-modules
"pam_unix2-2.9.1.tar.bz2" # actually now from Arch ftp://ftp.archlinux.org/other/pam_unix2/pam_unix2-2.9.1.tar.bz2
'other'
'pam_namespace.patch')
md5sums=('7b73e58b7ce79ffa321d408de06db2c4'
'dac109f68e04a4df37575fda6001ea17'
'da6a46e5f8cd3eaa7cbc4fc3a7e2b555'
'59981f79765a38cda7386bd8db22ba5b'
'ac4900287a767654a3e8d9251a43f5e4'
'd2f510a2f3a5505a11c51d46e615c7cb')
options=('!libtool' '!emptydirs')
build() {
cd $srcdir/Linux-PAM-$pkgver
./configure --libdir=/usr/lib
patch -p0 -i ../pam_namespace.patch
make
cd $srcdir/pam_unix2-2.9.1
# compile fix
patch -Np1 -i ../pam_unix2-glibc216.patch
#patch -Np1 -i ../pam-fix-includes.patch
./configure --libdir=/usr/lib
make
}
package() {
cd $srcdir/Linux-PAM-$pkgver
make DESTDIR=$pkgdir install
install -D -m644 ../other $pkgdir/etc/pam.d/other
# build pam_unix2 module
# source ftp://ftp.suse.com/pub/people/kukuk/pam/pam_unix2
cd $srcdir/pam_unix2-2.9.1
make DESTDIR=$pkgdir install
# add the realtime permissions for audio users
sed -i 's|# End of file||' $pkgdir/etc/security/limits.conf
cat >>$pkgdir/etc/security/limits.conf <<_EOT
* - rtprio 0
* - nice 0
@audio - rtprio 65
@audio - nice -10
@audio - memlock 40000
_EOT
# fix some missing symlinks from old pam for compatibility
cd $pkgdir/usr/lib/security
ln -s pam_unix.so pam_unix_acct.so
ln -s pam_unix.so pam_unix_auth.so
ln -s pam_unix.so pam_unix_passwd.so
ln -s pam_unix.so pam_unix_session.so
# set unix_chkpwd uid
chmod +s $pkgdir/sbin/unix_chkpwd
}