2009-02-25 05:15:20 +00:00
|
|
|
# Template file for 'pam'
|
|
|
|
pkgname=pam
|
2010-11-23 14:18:10 +00:00
|
|
|
version=1.1.3
|
2008-10-26 05:55:05 +00:00
|
|
|
wrksrc="Linux-PAM-$version"
|
2009-04-18 22:31:39 +00:00
|
|
|
distfiles="${KERNEL_SITE}/libs/pam/library/Linux-PAM-$version.tar.bz2"
|
2008-10-26 05:55:05 +00:00
|
|
|
build_style=gnu_configure
|
2009-03-18 09:02:43 +00:00
|
|
|
configure_args="--disable-selinux --libdir=/lib --disable-rpath
|
2009-04-21 15:56:06 +00:00
|
|
|
--docdir=/usr/share/doc/pam --enable-read-both-confs
|
|
|
|
DESTDIR=$XBPS_DESTDIR/$pkgname-$version"
|
2008-10-26 05:55:05 +00:00
|
|
|
short_desc="A flexible mechanism for authenticating users"
|
|
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
2010-11-23 14:18:10 +00:00
|
|
|
checksum=17b268789b935a76e736a1150210dd12f156972973e79347668f828d43632652
|
2008-10-26 05:55:05 +00:00
|
|
|
long_desc="
|
|
|
|
Linux-PAM provides a flexible mechanism for authenticating users.
|
|
|
|
PAM was invented by SUN Microsystems."
|
|
|
|
|
2010-01-08 23:09:45 +00:00
|
|
|
conf_files="
|
2010-01-17 21:48:29 +00:00
|
|
|
/etc/environment
|
2010-01-08 23:09:45 +00:00
|
|
|
/etc/security/access.conf
|
|
|
|
/etc/security/group.conf
|
|
|
|
/etc/security/limits.conf
|
|
|
|
/etc/security/namespace.conf
|
|
|
|
/etc/security/pam_env.conf
|
|
|
|
/etc/security/time.conf"
|
|
|
|
subpackages="pam-devel pam-userdb"
|
2009-10-15 14:34:31 +00:00
|
|
|
|
2009-12-31 21:37:40 +00:00
|
|
|
Add_dependency run glibc
|
|
|
|
Add_dependency run cracklib
|
2009-02-25 05:15:20 +00:00
|
|
|
Add_dependency build flex
|
2009-10-30 21:14:09 +00:00
|
|
|
Add_dependency build gettext
|
2009-12-31 21:37:40 +00:00
|
|
|
Add_dependency build cracklib-devel
|
2010-01-07 20:38:12 +00:00
|
|
|
Add_dependency build db-devel
|
2009-04-21 15:56:06 +00:00
|
|
|
|
|
|
|
post_install()
|
|
|
|
{
|
|
|
|
rm -rf ${DESTDIR}/var
|
2009-04-21 16:07:01 +00:00
|
|
|
# Fix unix_chkpwd perms.
|
|
|
|
chmod 4755 ${DESTDIR}/sbin/unix_chkpwd
|
2010-01-17 21:48:29 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# Fix a syntax error in namespace.init, -p flag is unknown
|
|
|
|
# at least to dash and bash.
|
|
|
|
#
|
|
|
|
sed -i -e "s|^#!/bin/sh -p$|#!/bin/sh|" \
|
|
|
|
${DESTDIR}/etc/security/namespace.init || return 1
|
|
|
|
chmod 755 ${DESTDIR}/etc/security/namespace.init || return 1
|
2009-04-21 15:56:06 +00:00
|
|
|
}
|