wok view mgetty/receipt @ rev 13429

partclone: add btrfs & hfsplus support
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Oct 04 11:53:21 2012 +0200 (2012-10-04)
parents 9cbcdb219b50
children 7896f0694ef6
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=$DESTDIR/usr|" \
29 -e "s|^spool=/var/spool|spool=$DESTDIR/var/spool|" \
30 -e "s|^CONFDIR=.*|CONFDIR=$DESTDIR/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 $DESTDIR/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 $install/usr/lib $fs/usr
44 cp -a $install/usr/sbin $fs/usr
45 cp -a $install/etc $fs
46 cp -a $install/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 chroot $1/ deluser fax
65 }