CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
Merged changes from noeabi (72cbd18e791bd2edff0e8d23873136187f0cd936)
[crossrootfs.git] / shadow / Pkgfile
CommitLineData
6dca1d21
JB
1# Description: Shadow password file utilities
2# URL: http://pkg-shadow.alioth.debian.org/
3# Maintainer: CRUX System Team, core-ports at crux dot nu
83e7e2d0 4# Arch Maintainer: CRUX-ARM System Team, devel@crux-arm.nu
6dca1d21
JB
5# Depends on:
6
7name=shadow
fe1073fc 8version=4.1.4.2
6dca1d21
JB
9release=1
10source=(ftp://pkg-shadow.alioth.debian.org/pub/pkg-shadow/$name-$version.tar.bz2 \
11 pwck login.defs)
12
13build() {
14 cd $name-$version
15 cat > config.cache << EOF
16ac_cv_func_setpgrp_void=yes
17EOF
18 ./configure --build=$CHOST \
19 --host=$CTARGET \
20 --prefix=/usr \
21 --mandir=/usr/man \
22 --sysconfdir=/etc \
23 --disable-shared \
24 --disable-shadowgrp \
25 --disable-nls \
26 --without-selinux \
27 --without-libpam \
28 --without-audit \
29 --cache-file=config.cache
30
31 make
32 make DESTDIR=$PKG install
33
34 install -d $PKG/etc/cron/daily $PKG/var/log
35 install -m 644 $SRC/login.defs $PKG/etc
36 install -m 755 $SRC/pwck $PKG/etc/cron/daily
37 mv $PKG/bin/{su,groups} $PKG/usr/bin
38 touch $PKG/var/log/{lastlog,faillog}
39
40 rm -r $PKG/usr/bin/gpasswd \
41 $PKG/usr/man/man1/gpasswd.1 \
42 $PKG/usr/sbin/{chpasswd,grpconv,grpunconv,logoutd} \
43 $PKG/usr/sbin/{newusers,pwconv,pwunconv} \
44 $PKG/usr/man/man8/{chpasswd.8,grpconv.8,grpunconv.8,logoutd.8} \
45 $PKG/usr/man/man8/{newusers.8,pwconv.8,pwunconv.8} \
46 $PKG/usr/man/man5/gshadow.5 \
47 $PKG/usr/man/man3 \
48 $PKG/etc/{login.access,limits,default}
49}