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