core/pam/PKGBUILD

72 lines
2.2 KiB
Bash
Raw Normal View History

2011-05-23 11:35:28 +08:00
#
# Core Packages for Chakra, part of chakra-project.org
#
2012-06-04 06:12:02 +08:00
# maintainer abveritas[at]chakra-project[dog]org>
# maintainer Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
2010-03-13 23:25:19 +08:00
pkgname=pam
pkgver=1.1.6
2012-06-04 06:12:02 +08:00
pkgrel=1
2010-03-13 23:25:19 +08:00
pkgdesc="PAM (Pluggable Authentication Modules) library"
arch=('x86_64')
2010-03-13 23:25:19 +08:00
license=('GPL2')
url="http://www.kernel.org/pub/linux/libs/pam/"
2012-06-04 06:12:02 +08:00
depends=('glibc' 'db' 'cracklib' 'libtirpc')
makedepends=('flex' 'w3m' 'docbook-xml>=4.4' 'docbook-xsl')
2010-03-13 23:25:19 +08:00
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"
2012-06-04 06:12:02 +08:00
#http://www.kernel.org/pub/linux/libs/pam/library/Linux-PAM-$pkgver.tar.bz2
"ftp://ftp.suse.com/pub/people/kukuk/pam/pam_unix2/pam_unix2-2.6.tar.bz2"
'other'
'pam_namespace.patch')
2010-03-13 23:25:19 +08:00
options=('!libtool' '!emptydirs')
md5sums=('7b73e58b7ce79ffa321d408de06db2c4'
2010-03-13 23:25:19 +08:00
'e2788389a6c59224110a45fcff30e02b'
'ac4900287a767654a3e8d9251a43f5e4'
'd2f510a2f3a5505a11c51d46e615c7cb')
2010-03-13 23:25:19 +08:00
build() {
cd $srcdir/Linux-PAM-$pkgver
2012-06-04 06:12:02 +08:00
./configure --libdir=/usr/lib
patch -p0 -i ../pam_namespace.patch
2012-06-04 06:12:02 +08:00
make
cd $srcdir/pam_unix2-2.6
2012-06-04 06:12:02 +08:00
./configure --libdir=/usr/lib
make
}
package() {
cd $srcdir/Linux-PAM-$pkgver
make DESTDIR=$pkgdir install
2010-03-13 23:25:19 +08:00
install -D -m644 ../other $pkgdir/etc/pam.d/other
2012-06-04 06:12:02 +08:00
2010-03-13 23:25:19 +08:00
# build pam_unix2 module
# source ftp://ftp.suse.com/pub/people/kukuk/pam/pam_unix2
cd $srcdir/pam_unix2-2.6
make DESTDIR=$pkgdir install
2012-06-04 06:12:02 +08:00
2010-03-13 23:25:19 +08:00
# 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
2012-06-04 06:12:02 +08:00
2010-03-13 23:25:19 +08:00
# fix some missing symlinks from old pam for compatibility
2012-06-04 06:12:02 +08:00
cd $pkgdir/usr/lib/security
2010-03-13 23:25:19 +08:00
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
2012-06-04 06:12:02 +08:00
2010-03-13 23:25:19 +08:00
# set unix_chkpwd uid
chmod +s $pkgdir/sbin/unix_chkpwd
}
2012-06-04 06:12:02 +08:00