wok view privoxy/receipt @ rev 2581

openssl: basename bug workaround (again)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Apr 07 12:51:52 2009 +0000 (2009-04-07)
parents 7e4ad89b0f0f
children 8083c3b9be4f
line source
1 # SliTaz package receipt.
3 PACKAGE="privoxy"
4 VERSION="3.0.11-stable"
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 $CONFIGURE_ARGS &&
32 make &&
33 make DESTDIR=$PWD/_pkg install
34 }
36 # Rules to gen a SliTaz package suitable for Tazpkg.
37 genpkg_rules()
38 {
39 mkdir -p $fs/usr/var $fs/etc/init.d
40 cp -a $_pkg/usr/sbin $fs/usr
41 cp -a $_pkg/usr/var/* $fs/usr/var
42 cp -a $_pkg/etc $fs
44 # Copy daemon from /stuff
45 cp stuff/daemon-privoxy $fs/etc/init.d/privoxy
46 }
48 post_install()
49 {
50 # adduser privoxy if needed
51 if ! grep -q privoxy $1/etc/passwd; then
52 echo -n "Adding user privoxy..."
53 chroot $1/ adduser privoxy -s /bin/false -H -D -S
54 status
55 fi
57 # And change file permissions
58 echo -n "Changing file permissions..."
59 chown -R root.privoxy /etc/privoxy
60 chown -R root.root /etc/privoxy/templates
61 chown -R root.privoxy /usr/var/log/privoxy
62 status
63 }
65 # Del user privoxy when pkg is removed.
66 post_remove()
67 {
68 deluser privoxy
69 }