2021-07-03 19:48:15 +02:00
|
|
|
#!/bin/bash
|
2010-05-11 15:01:34 +02:00
|
|
|
|
2010-05-11 19:46:00 +02:00
|
|
|
# Slackware build script for privoxy
|
2010-05-12 17:44:10 +02:00
|
|
|
|
2010-05-11 19:46:00 +02:00
|
|
|
# Copyright (c) 2007 alkos333 <me@alkos333.net>
|
2022-01-03 00:28:15 +01:00
|
|
|
# Copyright 2014-2022 Kyle Guinn <elyk03@gmail.com>
|
2010-05-11 15:01:34 +02:00
|
|
|
# All rights reserved.
|
|
|
|
#
|
2014-12-18 07:16:27 +01:00
|
|
|
# Redistribution and use of this script, with or without modification, is
|
|
|
|
# permitted provided that the following conditions are met:
|
2010-05-11 15:01:34 +02:00
|
|
|
#
|
2014-12-18 07:16:27 +01:00
|
|
|
# 1. Redistributions of this script must retain the above copyright
|
|
|
|
# notice, this list of conditions and the following disclaimer.
|
2010-05-11 15:01:34 +02:00
|
|
|
#
|
2014-12-18 07:16:27 +01:00
|
|
|
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR IMPLIED
|
|
|
|
# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
|
|
|
# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
|
|
|
|
# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
|
|
|
# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
|
|
|
|
# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
|
|
|
# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
|
|
|
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
|
|
|
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
2010-05-11 15:01:34 +02:00
|
|
|
|
2021-07-04 11:41:06 +02:00
|
|
|
cd $(dirname $0) ; CWD=$(pwd)
|
|
|
|
|
2010-05-11 15:01:34 +02:00
|
|
|
PRGNAM=privoxy
|
2022-01-03 00:28:15 +01:00
|
|
|
VERSION=${VERSION:-3.0.33}
|
2014-12-18 07:16:27 +01:00
|
|
|
BUILD=${BUILD:-1}
|
2010-05-11 15:01:34 +02:00
|
|
|
TAG=${TAG:-_SBo}
|
2021-07-04 12:23:38 +02:00
|
|
|
PKGTYPE=${PKGTYPE:-tgz}
|
2010-05-11 19:46:00 +02:00
|
|
|
|
2010-06-04 07:14:00 +02:00
|
|
|
if [ -z "$ARCH" ]; then
|
2016-07-03 01:54:46 +02:00
|
|
|
case "$(uname -m)" in
|
2016-10-12 07:46:57 +02:00
|
|
|
i?86) ARCH=i586 ;;
|
2010-06-04 07:14:00 +02:00
|
|
|
arm*) ARCH=arm ;;
|
2016-07-03 01:54:46 +02:00
|
|
|
*) ARCH=$(uname -m) ;;
|
2010-06-04 07:14:00 +02:00
|
|
|
esac
|
|
|
|
fi
|
|
|
|
|
2021-07-04 12:23:38 +02:00
|
|
|
if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then
|
|
|
|
echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE"
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
2010-05-11 15:01:34 +02:00
|
|
|
TMP=${TMP:-/tmp/SBo}
|
2019-01-01 08:46:27 +01:00
|
|
|
PKG=$TMP/package-$PRGNAM-$VERSION
|
2010-05-11 15:01:34 +02:00
|
|
|
OUTPUT=${OUTPUT:-/tmp}
|
|
|
|
|
2010-05-11 22:25:40 +02:00
|
|
|
if [ "$ARCH" = "i486" ]; then
|
2010-05-13 00:38:01 +02:00
|
|
|
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
|
|
|
|
LIBDIRSUFFIX=""
|
2016-10-12 07:46:57 +02:00
|
|
|
elif [ "$ARCH" = "i586" ]; then
|
|
|
|
SLKCFLAGS="-O2 -march=i586 -mtune=i686"
|
|
|
|
LIBDIRSUFFIX=""
|
2010-05-11 15:01:34 +02:00
|
|
|
elif [ "$ARCH" = "i686" ]; then
|
2010-05-13 00:38:01 +02:00
|
|
|
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
|
|
|
|
LIBDIRSUFFIX=""
|
2010-05-12 17:44:10 +02:00
|
|
|
elif [ "$ARCH" = "x86_64" ]; then
|
2010-05-13 00:38:01 +02:00
|
|
|
SLKCFLAGS="-O2 -fPIC"
|
|
|
|
LIBDIRSUFFIX="64"
|
2010-06-04 07:14:00 +02:00
|
|
|
else
|
|
|
|
SLKCFLAGS="-O2"
|
|
|
|
LIBDIRSUFFIX=""
|
2010-05-12 17:44:10 +02:00
|
|
|
fi
|
|
|
|
|
2011-10-04 08:05:20 +02:00
|
|
|
# privoxy user & group *MUST* exist before package creation
|
|
|
|
# See http://slackbuilds.org/uid_gid.txt for current recommendations.
|
2010-05-12 17:44:10 +02:00
|
|
|
PRIVOXY_USER=${PRIVOXY_USER:-privoxy}
|
|
|
|
PRIVOXY_GROUP=${PRIVOXY_GROUP:-privoxy}
|
|
|
|
|
2011-10-04 08:05:20 +02:00
|
|
|
set -e
|
|
|
|
|
2010-05-12 17:44:10 +02:00
|
|
|
if ! grep -q ^$PRIVOXY_GROUP: /etc/group 2>/dev/null ; then
|
|
|
|
echo " Error: PRIVOXY group ($PRIVOXY_GROUP) doesn't exist."
|
|
|
|
echo " Try creating one with: groupadd -g 206 $PRIVOXY_GROUP"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
if ! grep -q ^$PRIVOXY_USER: /etc/passwd 2>/dev/null ; then
|
|
|
|
echo " Error: PRIVOXY user ($PRIVOXY_USER) doesn't exist."
|
|
|
|
echo " Try creating one with: useradd -u 206 -g $PRIVOXY_GROUP -d /dev/null -s /bin/false $PRIVOXY_USER"
|
|
|
|
exit 1
|
2010-05-11 15:01:34 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
rm -rf $PKG
|
|
|
|
mkdir -p $TMP $PKG $OUTPUT
|
|
|
|
cd $TMP
|
2010-05-13 00:38:01 +02:00
|
|
|
rm -rf $PRGNAM-$VERSION-stable
|
2010-05-11 19:46:00 +02:00
|
|
|
tar xvf $CWD/$PRGNAM-$VERSION-stable-src.tar.gz
|
2010-05-11 15:01:34 +02:00
|
|
|
cd $PRGNAM-$VERSION-stable
|
|
|
|
chown -R root:root .
|
2014-12-18 07:16:27 +01:00
|
|
|
chmod -R u+w,go-w,a+rX-st .
|
2010-05-11 15:01:34 +02:00
|
|
|
|
2011-12-10 12:12:35 +01:00
|
|
|
# Put the docs where we tell them to go.
|
2013-04-24 19:50:39 +02:00
|
|
|
sed -i "/^DOC_DEST/s/= .*/= @docdir@/" GNUmakefile.in
|
2011-12-10 12:12:35 +01:00
|
|
|
|
2016-10-12 07:46:57 +02:00
|
|
|
# rc.privoxy generation doesn't work well with $(DESTDIR). Help it along.
|
|
|
|
sed -i "s/ \/etc\/rc.d\// \$(DESTDIR)\/etc\/rc.d\//g" GNUmakefile.in
|
|
|
|
mkdir -p $PKG/etc/rc.d
|
|
|
|
|
2021-04-10 07:35:56 +02:00
|
|
|
# Let AC_CHECK_LIB do the brotli autodetection, don't link to it if missing.
|
|
|
|
sed -i "/-lbrotlidec/d" configure.in
|
|
|
|
|
2021-01-02 01:16:26 +01:00
|
|
|
autoreconf -vif
|
2010-05-11 15:01:34 +02:00
|
|
|
./configure \
|
2011-12-10 12:12:35 +01:00
|
|
|
--prefix=/usr \
|
|
|
|
--libdir=/usr/lib${LIBDIRSUFFIX} \
|
|
|
|
--sysconfdir=/etc/$PRGNAM \
|
|
|
|
--localstatedir=/var \
|
|
|
|
--mandir=/usr/man \
|
|
|
|
--infodir=/usr/info \
|
|
|
|
--docdir=/usr/doc/$PRGNAM-$VERSION \
|
|
|
|
--build=$ARCH-slackware-linux \
|
2010-05-11 15:01:34 +02:00
|
|
|
--with-docbook=no \
|
2010-05-12 17:44:10 +02:00
|
|
|
--with-user=$PRIVOXY_USER \
|
|
|
|
--with-group=$PRIVOXY_GROUP \
|
2021-01-02 01:16:26 +01:00
|
|
|
--with-openssl \
|
2021-04-10 07:35:56 +02:00
|
|
|
--with-brotli \
|
2011-12-10 12:12:35 +01:00
|
|
|
--enable-no-gifs \
|
2016-07-03 01:54:46 +02:00
|
|
|
--enable-compression \
|
2021-01-02 01:16:26 +01:00
|
|
|
--enable-large-file-support \
|
|
|
|
--enable-extended-statistics \
|
|
|
|
--enable-pcre-host-patterns \
|
|
|
|
CFLAGS="$SLKCFLAGS" \
|
2010-05-11 15:01:34 +02:00
|
|
|
|
2011-10-04 08:05:20 +02:00
|
|
|
make
|
2011-12-10 12:12:35 +01:00
|
|
|
make install-strip DESTDIR=$PKG
|
2010-05-11 15:01:34 +02:00
|
|
|
|
2014-12-18 07:16:27 +01:00
|
|
|
find $PKG/usr/man -type f -exec gzip -9 {} +
|
2010-05-11 15:01:34 +02:00
|
|
|
|
|
|
|
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
|
|
|
|
2011-12-10 12:12:35 +01:00
|
|
|
# Make .new files so we don't clobber the existing configuration.
|
2016-10-12 07:46:57 +02:00
|
|
|
for i in config match-all.action regression-tests.action trust user.action user.filter; do
|
2013-11-12 07:05:17 +01:00
|
|
|
mv $PKG/etc/privoxy/$i $PKG/etc/privoxy/$i.new
|
|
|
|
done
|
2013-04-24 19:50:39 +02:00
|
|
|
# Others are not intended to be user-editable and will be overwritten.
|
|
|
|
# To disregard, uncomment this and the corresponding lines in doinst.sh.
|
|
|
|
#find $PKG/etc/privoxy -name '*.new' -prune -o -type f -exec mv {} {}.new \;
|
|
|
|
|
2016-10-12 07:46:57 +02:00
|
|
|
# Don't clobber the init script or logfile either.
|
|
|
|
mv $PKG/etc/rc.d/rc.privoxy $PKG/etc/rc.d/rc.privoxy.new
|
2010-05-12 17:44:10 +02:00
|
|
|
mv $PKG/var/log/privoxy/logfile $PKG/var/log/privoxy/logfile.new
|
2013-11-22 08:34:22 +01:00
|
|
|
|
2011-12-10 12:12:35 +01:00
|
|
|
# Remove empty directories that are part of Slackware base.
|
|
|
|
rmdir $PKG/usr/share
|
2010-05-11 19:46:00 +02:00
|
|
|
rmdir $PKG/var/run
|
|
|
|
|
2010-05-11 15:01:34 +02:00
|
|
|
mkdir -p $PKG/install
|
|
|
|
cat $CWD/slack-desc > $PKG/install/slack-desc
|
2010-05-11 19:46:00 +02:00
|
|
|
cat $CWD/doinst.sh > $PKG/install/doinst.sh
|
2010-05-11 15:01:34 +02:00
|
|
|
|
|
|
|
cd $PKG
|
2021-07-04 12:23:38 +02:00
|
|
|
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE
|