From a0c5d05b9a0238d365211b11f70994e697686e05 Mon Sep 17 00:00:00 2001 From: tnut Date: Tue, 3 Apr 2012 20:48:19 +0200 Subject: ajout dépendances MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- linux-pam/Pkgfile | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100755 linux-pam/Pkgfile (limited to 'linux-pam/Pkgfile') diff --git a/linux-pam/Pkgfile b/linux-pam/Pkgfile new file mode 100755 index 000000000..1a51d9392 --- /dev/null +++ b/linux-pam/Pkgfile @@ -0,0 +1,43 @@ +# 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.3 +release=1 +source=(http://www.kernel.org/pub/linux/libs/pam/library/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 \ + --enable-fakeroot="$PKG" + 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 +} + -- cgit v1.2.3-54-g00ecf