void-packages/templates/shadow.tmpl
Juan RP 8532ba38c8 Added shadow-4.1.2.2 with pam support.
Config files were modified as specified by LFS.

--HG--
extra : convert_revision : c3648afe3114004f6e0c9afbacf1cf337cb39232
2008-12-16 03:52:12 +01:00

43 lines
1.5 KiB
Cheetah

# Template file for 'shadow'
pkgname=shadow
version=4.1.2.2
patch_files="$pkgname-enable-pam.diff"
distfiles="ftp://pkg-shadow.alioth.debian.org/pub/pkg-shadow/$pkgname-$version.tar.bz2"
build_style=gnu_configure
configure_args="--libdir=/lib --mandir=/usr/share/man --enable-shared
--disable-static --with-libpam --without-selinux"
make_install_target="DESTDIR=$XBPS_DESTDIR/$pkgname-$version install"
short_desc="Shadow password file utilities"
maintainer="Juan RP <xtraeme@gmail.com>"
checksum=378fbfb0e8bb8c87be239fccd692818871f763206bb7d881744f4fa72dc6b491
long_desc="
Shadow password file utilities for GNU/Linux."
conf_files="/etc/pam.d/usermod /etc/pam.d/userdel /etc/pam.d/useradd
/etc/pam.d/su /etc/pam.d/passwd /etc/pam.d/newusers /etc/pam.d/login
/etc/pam.d/groupmod /etc/pam.d/groupmems /etc/pam.d/groupdel
/etc/pam.d/groupadd /etc/pam.d/chsh /etc/pam.d/chpasswd
/etc/pam.d/chgpasswd /etc/pam.d/chfn /etc/pam.d/chage /etc/defaults/useradd
/etc/login.defs"
build_depends="linux-pam-1.0.2"
run_depends="glibc-2.8 $build_depends"
pre_build()
{
# Don't install the groups cmd, we use the one from coreutils.
cd $wrksrc && \
sed -i 's/groups$(EXEEXT) //' src/Makefile && \
find man -name Makefile -exec sed -i 's/groups\.1 / /' {}
}
post_install()
{
local destdir=$XBPS_DESTDIR/$pkgname-$version
# Use the same auth file for all these cmds.
for f in chpasswd chgpasswd groupadd groupdel groupmems \
groupmod newusers useradd userdel usermod; do
install -m644 $destdir/etc/pam.d/chage $destdir/etc/pam.d/${f}
done
}