0b7cdfa1d0
--HG-- extra : convert_revision : 151da3637a2745b786251e067bb924c3fd98118b
43 lines
1.5 KiB
Text
43 lines
1.5 KiB
Text
# 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"
|
|
|
|
Add_dependency full glibc
|
|
Add_dependency full pam
|
|
|
|
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
|
|
}
|