wok view privoxy/receipt @ rev 4504

linux: add floppy boot support
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Nov 22 12:46:40 2009 +0100 (2009-11-22)
parents 8fdb3bb3dff8
children d1985df8c1b2
line source
1 # SliTaz package receipt.
3 PACKAGE="privoxy"
4 VERSION="3.0.14-beta"
5 CATEGORY="network"
6 SHORT_DESC="Non-caching web privacy proxy."
7 MAINTAINER="paul@slitaz.org"
8 DEPENDS="zlib pcre"
9 BUILD_DEPENDS="zlib-dev autoconf perl m4 coreutils"
10 TARBALL="$PACKAGE-$VERSION-src.tar.gz"
11 WEB_SITE="http://www.privoxy.org/"
12 WGET_URL="http://downloads.sourceforge.net/ijbswa/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 # Have to create privoxy user/group to be able to compile
18 adduser privoxy -s /bin/false -H -D -S
20 cd $src
22 # Needs autoconf
23 autoheader
24 autoconf
26 ./configure \
27 --prefix=/usr \
28 --sysconfdir=/etc/privoxy \
29 --infodir=/usr/share/info \
30 --mandir=/usr/share/man \
31 --localstatedir=/var \
32 $CONFIGURE_ARGS &&
33 make &&
34 make DESTDIR=$PWD/_pkg install
35 }
37 # Rules to gen a SliTaz package suitable for Tazpkg.
38 genpkg_rules()
39 {
40 mkdir -p $fs/etc/init.d $fs/usr $fs/var
41 cp -a $_pkg/usr/sbin $fs/usr
42 cp -a $_pkg/var/* $fs/var
43 cp -a $_pkg/etc/* $fs/etc
45 # Copy daemon from /stuff
46 cp stuff/daemon-privoxy $fs/etc/init.d/privoxy
47 }
49 post_install()
50 {
51 # adduser privoxy if needed
52 if ! grep -q privoxy $1/etc/passwd; then
53 echo -n "Adding user privoxy..."
54 chroot $1/ adduser privoxy -s /bin/false -H -D -S
55 status
56 fi
58 # And change file permissions
59 echo -n "Changing file permissions..."
60 chown -R root.privoxy /etc/privoxy
61 chown -R root.root /etc/privoxy/templates
62 chown -R root.privoxy /var/log/privoxy
63 status
64 }
66 # Del user privoxy when pkg is removed.
67 post_remove()
68 {
69 deluser privoxy
70 }