mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-20 19:41:34 +01:00
network/squid: Updated for version 3.1.6.
Signed-off-by: Michiel van Wessem <michiel@slackbuilds.org>
This commit is contained in:
parent
177eba3894
commit
ebd1d1551a
5 changed files with 1746 additions and 830 deletions
|
@ -7,6 +7,6 @@ Squid supports SSL, extensive access controls, and full request logging.
|
||||||
By using the lightweight Internet Cache Protocol, squid caches can be
|
By using the lightweight Internet Cache Protocol, squid caches can be
|
||||||
arranged in a hierarchy or mesh for additional bandwidth savings.
|
arranged in a hierarchy or mesh for additional bandwidth savings.
|
||||||
|
|
||||||
See /usr/doc/squid-3.0.STABLE21/README.SBo for configuration help.
|
See /usr/doc/squid-3.1.6/README.SBo for configuration help.
|
||||||
Note that the default squid.conf and /etc/logrotate.d/squid files have
|
Note that the default squid.conf and /etc/logrotate.d/squid files have
|
||||||
changed in this release, so be sure to merge the changes into place.
|
changed in this release, so be sure to merge the changes into place.
|
||||||
|
|
|
@ -32,8 +32,8 @@ squid_start() {
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
echo "Starting Squid: $SQUIDCMD -DF"
|
echo "Starting Squid: $SQUIDCMD -F"
|
||||||
$SQUIDCMD -DF
|
$SQUIDCMD -F
|
||||||
}
|
}
|
||||||
|
|
||||||
squid_stop() {
|
squid_stop() {
|
||||||
|
|
|
@ -24,7 +24,7 @@
|
||||||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
PRGNAM=squid
|
PRGNAM=squid
|
||||||
VERSION=3.0.STABLE24
|
VERSION=3.1.6
|
||||||
BUILD=${BUILD:-1}
|
BUILD=${BUILD:-1}
|
||||||
TAG=${TAG:-_SBo}
|
TAG=${TAG:-_SBo}
|
||||||
|
|
||||||
|
@ -83,7 +83,9 @@ CXXFLAGS="$SLKCFLAGS" \
|
||||||
--sysconfdir=/etc/squid \
|
--sysconfdir=/etc/squid \
|
||||||
--localstatedir=/var/log/squid \
|
--localstatedir=/var/log/squid \
|
||||||
--datadir=/usr/share/squid \
|
--datadir=/usr/share/squid \
|
||||||
|
--with-pidfile=/var/run/squid \
|
||||||
--mandir=/usr/man \
|
--mandir=/usr/man \
|
||||||
|
--with-logdir=/var/log/squid \
|
||||||
--enable-snmp \
|
--enable-snmp \
|
||||||
--enable-auth="basic" \
|
--enable-auth="basic" \
|
||||||
--enable-basic-auth-helpers="NCSA" \
|
--enable-basic-auth-helpers="NCSA" \
|
||||||
|
@ -97,10 +99,8 @@ make install DESTDIR=$PKG
|
||||||
find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \
|
find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \
|
||||||
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
|
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
|
||||||
|
|
||||||
( cd $PKG/usr/man
|
find $PKG/usr/man -type f -exec gzip -9 {} \;
|
||||||
find . -type f -exec gzip -9 {} \;
|
for i in $(find $PKG/usr/man -type l); do ln -s $(readlink $i).gz $i.gz; rm $i; done
|
||||||
for i in $( find . -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done
|
|
||||||
)
|
|
||||||
|
|
||||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||||
cp -a \
|
cp -a \
|
||||||
|
@ -124,7 +124,6 @@ rm $PKG/etc/squid/squid.conf
|
||||||
cat $CWD/squid.conf > $PKG/etc/squid/squid.conf.new
|
cat $CWD/squid.conf > $PKG/etc/squid/squid.conf.new
|
||||||
|
|
||||||
mkdir -p $PKG/var/{cache,run}/squid
|
mkdir -p $PKG/var/{cache,run}/squid
|
||||||
rmdir $PKG/var/log/squid/logs
|
|
||||||
chown $SQUIDUSER:$SQUIDGROUP $PKG/var/{cache,log,run}/squid
|
chown $SQUIDUSER:$SQUIDGROUP $PKG/var/{cache,log,run}/squid
|
||||||
|
|
||||||
## Edit the config file to set the user and group to run as
|
## Edit the config file to set the user and group to run as
|
||||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -1,10 +1,10 @@
|
||||||
PRGNAM="squid"
|
PRGNAM="squid"
|
||||||
VERSION="3.0.STABLE24"
|
VERSION="3.1.6"
|
||||||
HOMEPAGE="http://www.squid-cache.org/"
|
HOMEPAGE="http://www.squid-cache.org/"
|
||||||
DOWNLOAD="http://www.squid-cache.org/Versions/v3/3.0/squid-3.0.STABLE24.tar.bz2"
|
DOWNLOAD="http://www.squid-cache.org/Versions/v3/3.1/squid-3.1.6.tar.bz2"
|
||||||
MD5SUM="325c8977b64397666bf538d54bb6f128"
|
MD5SUM="e9e2e9a9b5a305ba717be93ebb85f245"
|
||||||
DOWNLOAD_x86_64=""
|
DOWNLOAD_x86_64=""
|
||||||
MD5SUM_x86_64=""
|
MD5SUM_x86_64=""
|
||||||
MAINTAINER="David Somero"
|
MAINTAINER="David Somero"
|
||||||
EMAIL="dsomero@hotmail.com"
|
EMAIL="dsomero@hotmail.com"
|
||||||
APPROVED="Erik Hanson"
|
APPROVED="Michiel"
|
||||||
|
|
Loading…
Reference in a new issue