diff options
author | rhatto <rhatto@370017ae-e619-0410-ac65-c121f96126d4> | 2006-09-13 23:43:18 +0000 |
---|---|---|
committer | rhatto <rhatto@370017ae-e619-0410-ac65-c121f96126d4> | 2006-09-13 23:43:18 +0000 |
commit | 39de61f46f05e7f71ee261af3e7657589174b78a (patch) | |
tree | 03d6507b7a65340614a2b5ce4362ece33a44bfce /privoxy | |
parent | ed3b15afe97ae81aa3403fd016023c5f32c80c0e (diff) | |
download | slackbuilds-39de61f46f05e7f71ee261af3e7657589174b78a.tar.gz slackbuilds-39de61f46f05e7f71ee261af3e7657589174b78a.tar.bz2 |
privoxy and tor fixes
git-svn-id: svn+slack://slack.fluxo.info/var/svn/slackbuilds@191 370017ae-e619-0410-ac65-c121f96126d4
Diffstat (limited to 'privoxy')
-rwxr-xr-x | privoxy/privoxy.SlackBuild | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/privoxy/privoxy.SlackBuild b/privoxy/privoxy.SlackBuild index 61dc346a..c5492821 100755 --- a/privoxy/privoxy.SlackBuild +++ b/privoxy/privoxy.SlackBuild @@ -66,25 +66,26 @@ autoconf ./configure --prefix=/usr --sysconfdir=/etc/$PACKAGE --libdir=$LIBDIR make -CWD="`pwd`" - # for VERSION=0.3.3, privoxy Makefile doesnt respect DESTDIR correctly, # so beyond the patch we still need to do some nasty stuff... if [ "$VERSION" == "3.0.3" ]; then make DESTDIR=install install + mkdir -p install/etc/rc.d + cp $CWD/rc.privoxy.new install/etc/rc.d + CWD="`pwd`" cd install else make DESTDIR=$TMP/package-$PACKAGE install + mkdir -p $TMP/package-$PACKAGE/etc/rc.d + cp $CWD/rc.privoxy.new $TMP/package-$PACKAGE/etc/rc.d + CWD="`pwd`" cd $TMP/package-$PACKAGE fi find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null -mkdir -p etc/rc.d -cp $CWD/rc.privoxy.new etc/rc.d - mkdir install cat << EOF > install/slack-desc # HOW TO EDIT THIS FILE: |