summaryrefslogtreecommitdiffstats
path: root/linux-pam/Pkgfile
blob: 30f0985d79b900ae8160c9e68fdd0b3025f53022 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# Description: Permet à l'administateur locale de choisir comment les applications identifie les utilisateurs
# URL: http://www.kernel.org/pub/libs/pam
# Maintainer: NuTyX core team 
# Packager: thierryn1 at hispeed dot ch
# Depends on:
# Run on:

name=linux-pam
version=1.1.5
release=2
source=(https://fedorahosted.org/releases/l/i/linux-pam/Linux-PAM-$version.tar.bz2
	pam.conf
	other)

build() {
	mkdir -p $PKG/etc/pam.d
	install -m644 other $PKG/etc/pam.d/other
	install -m644 pam.conf $PKG/etc/pam.conf
	cd Linux-PAM-$version
	./configure --sysconfdir=/etc \
		--libdir=/usr/lib \
		--sbindir=/lib/security \
		--enable-securedir=/lib/security \
		--docdir=/usr/share/doc/Linux-PAM-$version \
		--enable-read-both-confs    \
		--with-xauth=/usr/X11R6/bin/xauth \
		--disable-nis
	make
	make DESTDIR=$PKG install
	chmod -v 4755 $PKG/lib/security/unix_chkpwd
        mkdir -p $PKG/{sbin,usr/lib}
	mv -v $PKG/lib/security/pam_tally $PKG/sbin
#	mv -v $PKG/lib/libpam{,c,_misc}.la $PKG/usr/lib
	sed -i 's| /lib| /usr/lib|' $PKG/usr/lib/libpam_misc.la
	if [ -L $PKG/lib/libpam.so ]; then
   		for LINK in libpam{,c,_misc}.so; do
       			ln -v -sf ../../lib/$(readlink /lib/${LINK}) \
		$PKG/usr/lib/${LINK} &&
			rm -v $PKG/lib/${LINK}
		done
	fi
}