wok-6.x view mgetty/receipt @ rev 10721

postfix: Fixed uid for postdrop group and postfix user. We should use uid 75 for postfix user and uid 73 for postdrop. Postdrop group was seting itself to 1000 uid before.
author Christopher Rogers <slaxemulator@gmail.com>
date Sat May 28 18:20:04 2011 +0000 (2011-05-28)
parents aecd84e2599a
children 1ca78f12a7f1
line source
1 # SliTaz package receipt.
3 PACKAGE="mgetty"
4 VERSION="1.1.37"
5 CATEGORY="network"
6 SHORT_DESC="reliable and proven fax send and receive solution."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 TARBALL="$PACKAGE$VERSION-Jun05.tar.gz"
9 WEB_SITE="http://mgetty.greenie.net/"
10 WGET_URL="ftp://mgetty.greenie.net/pub/$PACKAGE/source/1.1/$TARBALL"
11 DEPENDS="slitaz-base-files"
12 CONFIG_FILES="/etc/mgetty+sendfax"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
18 cd $src
19 [ -f Makefile.dist ] && mv -f Makefile.dist Makefile
20 cp Makefile Makefile.dist
21 cp Makefile Makefile.install
22 cp policy.h-dist policy.h
23 sed -i -e 's|/* #define AUTO_PPP */|#define AUTO_PPP|' policy.h
24 sed -i -e "s|^prefix=/usr/local|prefix=/usr|" \
25 -e "s|^spool=/var/spool|spool=/var/spool|" \
26 -e "s|^CONFDIR=.*|CONFDIR=/etc/mgetty+sendfax|" \
27 Makefile
28 sed -i -e "s|^prefix=/usr/local|prefix=$PWD/_pkg/usr|" \
29 -e "s|^spool=/var/spool|spool=$PWD/_pkg/var/spool|" \
30 -e "s|^CONFDIR=.*|CONFDIR=$PWD/_pkg/etc/mgetty+sendfax|" \
31 -e 's|^INSTALL=install .*|INSTALL=install -c -o root -g root|' \
32 Makefile.install
33 make bin-all vgetty
34 mkdir -p _pkg/var/spool
35 mv -f Makefile.install Makefile
36 make -k install.bin vgetty-install || true
37 }
39 # Rules to gen a SliTaz package suitable for Tazpkg.
40 genpkg_rules()
41 {
42 mkdir -p $fs/usr
43 cp -a $_pkg/usr/lib $fs/usr
44 cp -a $_pkg/usr/sbin $fs/usr
45 cp -a $_pkg/etc $fs
46 cp -a $_pkg/var $fs
47 chmod 755 $fs/var/spool/fax
48 }
50 # Pre and post install commands for Tazpkg.
51 post_install()
52 {
53 # adduser fax if needed
54 if ! grep -q fax $1/etc/passwd; then
55 echo -n "Adding user fax..."
56 chroot $1/ adduser fax -D -H -S
57 status
58 fi
59 chroot $1/ chown fax /var/spool/fax
60 }
62 post_remove()
63 {
64 deluser fax
65 }