core/pam/PKGBUILD

70 lines
2.0 KiB
Bash
Raw Normal View History

2011-05-23 11:35:28 +08:00
#
# Core Packages for Chakra, part of chakralinux.org
2011-05-23 11:35:28 +08:00
#
2010-03-13 23:25:19 +08:00
pkgname=pam
pkgver=1.3.0
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://linux-pam.org"
depends=('glibc' 'cracklib' 'libtirpc' 'pambase')
2012-06-04 06:12:02 +08:00
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=(http://linux-pam.org/library/Linux-PAM-$pkgver.tar.bz2
https://sources.archlinux.org/other/pam_unix2/pam_unix2-2.9.1.tar.bz2
pam_unix2-glibc216.patch)
md5sums=('da4b2289b7cfb19583d54e9eaaef1c3a'
'da6a46e5f8cd3eaa7cbc4fc3a7e2b555'
'dac109f68e04a4df37575fda6001ea17')
2014-02-27 04:02:05 +08:00
options=('!emptydirs')
prepare () {
2014-07-03 06:21:05 +08:00
cd $srcdir/Linux-PAM-$pkgver
2014-09-27 12:12:32 +08:00
# fix pam_unix2 building
2014-02-27 04:02:05 +08:00
cd $srcdir/pam_unix2-2.9.1
2014-09-27 12:12:32 +08:00
patch -Np1 -i "../pam_unix2-glibc216.patch"
2014-02-27 04:02:05 +08:00
}
2010-03-13 23:25:19 +08:00
build() {
cd $srcdir/Linux-PAM-$pkgver
./configure --libdir=/usr/lib --sbindir=/usr/sbin --disable-db
2012-06-04 06:12:02 +08:00
make
cd $srcdir/pam_unix2-2.9.1
2014-09-27 12:12:32 +08:00
# modify flags to build against the pam compiled here, not a system lib.
2014-02-27 04:02:05 +08:00
./configure \
2014-09-27 12:12:32 +08:00
CFLAGS="$CFLAGS -I$srcdir/Linux-PAM-$pkgver/libpam/include/" \
LDFLAGS="$LDFLAGS -L$srcdir/Linux-PAM-$pkgver/libpam/.libs/" \
--libdir=/usr/lib \
--sbindir=/usr/sbin
2012-06-04 06:12:02 +08:00
make
}
package() {
cd $srcdir/Linux-PAM-$pkgver
2014-09-27 12:12:32 +08:00
make DESTDIR=$pkgdir SCONFIGDIR=/etc/security install
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.9.1
2010-03-13 23:25:19 +08:00
make DESTDIR=$pkgdir install
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
2014-09-27 12:12:32 +08:00
chmod +s $pkgdir/usr/sbin/unix_chkpwd
# remove doc which is not used anymore
# FS #40749
rm $pkgdir/usr/share/doc/Linux-PAM/sag-pam_userdb.html
2010-03-13 23:25:19 +08:00
}