summaryrefslogtreecommitdiffstats
path: root/abs/core/shadow/PKGBUILD
blob: f8afc520f5bb5e34274d6c29aaaefeb21cb5a89f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
# $Id: PKGBUILD 81313 2010-05-28 01:29:23Z ibiru $
# Maintainer: Aaron Griffin <aaron@archlinux.org>

pkgname=shadow
pkgver=4.1.4.2
pkgrel=3
pkgdesc="Shadow password file utilities"
arch=('i686' 'x86_64')
url='http://pkg-shadow.alioth.debian.org/'
license=('custom')
groups=('base')
depends=('bash')
backup=(etc/login.defs
        etc/pam.d/{chage,login,passwd,shadow,useradd,usermod,userdel}
        etc/pam.d/{chpasswd,newusers,groupadd,groupdel,groupmod}
        etc/pam.d/{chfn,chgpasswd,groupmems,chsh}
        etc/default/useradd)
depends=('pam')
source=(ftp://pkg-shadow.alioth.debian.org/pub/pkg-shadow/shadow-$pkgver.tar.bz2
        useradd.defaults login passwd chgpasswd chpasswd newusers defaults.pam
	login.defs adduser shadow.cron.daily xstrdup.patch shadow-4.1.4.2-groupmod-pam-check.patch)
options=(!libtool)
install=shadow.install
md5sums=('d593a9cab93c48ee0a6ba056db8c1997'
         'beb64d09256ea46a4d96a783f096447f'
         'a7597cb2f60d7544d8d0ba6e49f6d937'
         'b84204ab731bd02dca49d0637d44ebec'
         '65e9ebce249a5b9ed021e2790452b9e1'
         '453a98456b297d2a69ca7e9b5f40d10b'
         '453a98456b297d2a69ca7e9b5f40d10b'
         'a31374fef2cba0ca34dfc7078e2969e4'
         'fad9a7116366f7775b1099290be840da'
         '6ce67e423ee19c87ae64f661310b2408'
         '1d64b4113e1d402746d9dd65f28a2c6f'
         '0eebe9d13065bec4b5d7ccf3bf46c509'
         '7b747f7dca38b0b6e8ee56434378baae')

build() {
  cd $srcdir/$pkgname-$pkgver

  #Ugh, force this to build shared libraries, for god's sake
  sed -i "s/noinst_LTLIBRARIES/lib_LTLIBRARIES/g" lib/Makefile.am
  libtoolize
  autoreconf
  export LDFLAGS="$LDFLAGS -lcrypt"

  patch -Np1 -i $srcdir/xstrdup.patch || return 1
  patch -Np1 -i $srcdir/shadow-4.1.4.2-groupmod-pam-check.patch || return 1

  # supress etc/pam.d/*, we provide our own
  sed -i '/^SUBDIRS/s/pam.d//' etc/Makefile.in

  ./configure \
    --prefix=/usr --libdir=/lib \
    --mandir=/usr/share/man --sysconfdir=/etc \
    --enable-shared --disable-static \
    --with-libpam --without-selinux
  make || return 1
}
package() {
  cd $srcdir/$pkgname-$pkgver
  make DESTDIR=$pkgdir install

  # license
  install -Dm644 COPYING $pkgdir/usr/share/licenses/shadow/COPYING

  # interactive useradd
  install -Dm755 $srcdir/adduser $pkgdir/usr/sbin/adduser

  # useradd defaults
  install -Dm644 $srcdir/useradd.defaults $pkgdir/etc/default/useradd

  # cron job
  install -Dm744 $srcdir/shadow.cron.daily $pkgdir/etc/cron.daily/shadow

  # login.defs
  install -Dm644 $srcdir/login.defs $pkgdir/etc/login.defs

  # PAM config - cutsom
  install -Dm644 $srcdir/login $pkgdir/etc/pam.d/login
  install -Dm644 $srcdir/passwd $pkgdir/etc/pam.d/passwd
  install -Dm644 $srcdir/chgpasswd $pkgdir/etc/pam.d/chgpasswd
  install -Dm644 $srcdir/chpasswd $pkgdir/etc/pam.d/chpasswd
  install -Dm644 $srcdir/newusers $pkgdir/etc/pam.d/newusers
  # PAM config - from tarball
  install -Dm644 etc/pam.d/groupmems $pkgdir/etc/pam.d/groupmems

  # we use the 'useradd' PAM file for other similar utilities
  for file in chage chfn chsh groupadd groupdel groupmod shadow \
      useradd usermod userdel; do
    install -Dm644 $srcdir/defaults.pam $pkgdir/etc/pam.d/$file
  done

  # Remove su - using su from coreutils instead
  rm -v $pkgdir/bin/su
  find $pkgdir/usr/share/man -name 'su.1' -exec rm -v {} \;
}