88 lines
2.4 KiB
Text
88 lines
2.4 KiB
Text
# Template file for 'shadow'
|
|
pkgname=shadow
|
|
version=4.1.5.1
|
|
revision=5
|
|
build_style=gnu-configure
|
|
configure_args="--bindir=/usr/bin --sbindir=/usr/sbin
|
|
--libdir=/usr/lib --enable-shared --disable-static
|
|
--with-libpam --without-selinux --with-acl --with-attr"
|
|
makedepends="acl-devel pam-devel"
|
|
short_desc="Shadow password file utilities"
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
|
license="BSD"
|
|
homepage="http://pkg-shadow.alioth.debian.org"
|
|
distfiles="$homepage/releases/$pkgname-$version.tar.bz2"
|
|
checksum=aa32333748d68b58ed3a83625f0165e0f6b9dc4639e6377c9300c6bf4fe978fb
|
|
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/passwd
|
|
/etc/pam.d/newusers
|
|
/etc/pam.d/groupmod
|
|
/etc/pam.d/groupmems
|
|
/etc/pam.d/groupdel
|
|
/etc/pam.d/groupadd
|
|
/etc/pam.d/chpasswd
|
|
/etc/pam.d/chgpasswd
|
|
/etc/pam.d/chage
|
|
/etc/defaults/useradd
|
|
/etc/pam.d/other
|
|
/etc/login.defs"
|
|
|
|
# Build PIE binaries by default.
|
|
CFLAGS="-fPIE"
|
|
LDFLAGS="-pie"
|
|
|
|
pre_build() {
|
|
# Don't install the groups cmd, we use the one from coreutils.
|
|
sed -i 's/groups$(EXEEXT) //' src/Makefile
|
|
for f in $(find man -name Makefile); do
|
|
sed -i 's/groups\.1 / /' $f
|
|
done
|
|
}
|
|
|
|
post_install() {
|
|
# Install our pam files not the ones supplied with shadow.
|
|
rm -f ${DESTDIR}/etc/pam.d/*
|
|
for f in chage passwd other; do
|
|
install -m644 ${FILESDIR}/${f}.pam ${DESTDIR}/etc/pam.d/${f}
|
|
done
|
|
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
|
|
install -m644 ${FILESDIR}/login.defs ${DESTDIR}/etc
|
|
|
|
# Disable creating mailbox files by default.
|
|
sed -i -e 's/yes/no/' $DESTDIR/etc/default/useradd
|
|
|
|
# Install the cron daily job.
|
|
install -D -m744 ${FILESDIR}/shadow.cron-daily \
|
|
${DESTDIR}/etc/cron.daily/shadow
|
|
|
|
# Remove groups.1 manpages that comes with coreutils.
|
|
rm -f ${DESTDIR}/usr/share/man/man1/groups.1
|
|
|
|
# Remove utilities provided by util-linux
|
|
rm \
|
|
$DESTDIR/usr/bin/{chsh,chfn,sg} \
|
|
$DESTDIR/usr/bin/{newgrp,login,su} \
|
|
$DESTDIR/usr/sbin/{vipw,vigr}
|
|
|
|
# ...and their many man pages
|
|
find $DESTDIR/usr/share/man \
|
|
'(' -name 'chsh.1' -o \
|
|
-name 'chfn.1' -o \
|
|
-name 'su.1' -o \
|
|
-name 'login.1' -o \
|
|
-name 'vipw.8' -o \
|
|
-name 'vigr.8' -o \
|
|
-name 'newgrp.1' ')' \
|
|
-delete
|
|
|
|
vinstall $FILESDIR/LICENSE 644 usr/share/licenses/shadow
|
|
}
|