From 4983db092396673fed441990796aa79961d6b824 Mon Sep 17 00:00:00 2001 From: Damien Goutte-Gattat Date: Thu, 22 Jan 2009 14:09:47 +0100 Subject: [PATCH] n/squid: Added. --- n/squid/doinst.sh | 14 +++ n/squid/rc.squid | 33 ++++++ n/squid/slack-desc | 12 +++ n/squid/squid-3.0.STABLE7.tar.gz.sha1 | 1 + n/squid/squid.SlackBuild | 148 ++++++++++++++++++++++++++ 5 files changed, 208 insertions(+) create mode 100644 n/squid/doinst.sh create mode 100644 n/squid/rc.squid create mode 100644 n/squid/slack-desc create mode 100644 n/squid/squid-3.0.STABLE7.tar.gz.sha1 create mode 100755 n/squid/squid.SlackBuild diff --git a/n/squid/doinst.sh b/n/squid/doinst.sh new file mode 100644 index 00000000..25601d8e --- /dev/null +++ b/n/squid/doinst.sh @@ -0,0 +1,14 @@ +#!/bin/sh +config() +{ + NEW="$1" + OLD="`dirname $NEW`/`basename $NEW .new`" + if [ ! -r $OLD ]; then + mv $NEW $OLD + elif [ "`cat $OLD | md5sum`" = "`cat $NEW | md5sum`" ]; then + rm $NEW + fi +} +config /etc/squid/squid.conf.new +config /etc/squid/cachemgr.conf.new +config /etc/squid/mime.conf.new diff --git a/n/squid/rc.squid b/n/squid/rc.squid new file mode 100644 index 00000000..1ca22b47 --- /dev/null +++ b/n/squid/rc.squid @@ -0,0 +1,33 @@ +#!/bin/sh + +DAEMON=/usr/sbin/squid +PIDFILE=/var/run/squid.pid +CACHEDIR=/var/spool/squid + +case "$1" in + start) + if [ -d "$CACHEDIR" -a ! -d "$CACHEDIR/00" ]; then + $DAEMON -z + fi + $DAEMON -s -D -C + ;; + + stop) + $DAEMON -k shutdown + ;; + + restart) + $DAEMON -k reconfigure + ;; + + status) + if [ -f $PIDFILE ]; then + echo "squid is running (`cat $PIDFILE`)" + fi + ;; + + *) + echo "Usage: `basename $0` {start|stop|restart|status}" 1>&2 + exit 1 + ;; +esac diff --git a/n/squid/slack-desc b/n/squid/slack-desc new file mode 100644 index 00000000..29c01635 --- /dev/null +++ b/n/squid/slack-desc @@ -0,0 +1,12 @@ + |-----handy-ruler------------------------------------------------------| +squid: squid (proxy server) +squid: +squid: Squid is a caching proxy for the Web supporting HTTP, HTTPS, FTP, and +squid: more. It reduces bandwith and improves response times by caching and +squid: reusing frequently-requested web pages. Squid has extensive access +squid: controls and makes a great server accelerator. It is licensed under +squid: the GNU GPL. +squid: +squid: +squid: +squid: diff --git a/n/squid/squid-3.0.STABLE7.tar.gz.sha1 b/n/squid/squid-3.0.STABLE7.tar.gz.sha1 new file mode 100644 index 00000000..ee7c07cf --- /dev/null +++ b/n/squid/squid-3.0.STABLE7.tar.gz.sha1 @@ -0,0 +1 @@ +de280b991c6ef241fd8896dea17e6a6ebc617dc9 squid-3.0.STABLE7.tar.gz diff --git a/n/squid/squid.SlackBuild b/n/squid/squid.SlackBuild new file mode 100755 index 00000000..baf3bbb3 --- /dev/null +++ b/n/squid/squid.SlackBuild @@ -0,0 +1,148 @@ +#!/bin/bash +# Build script for Slackware +# Copyright (C) 2008 Damien Goutte-Gattat +# +# Redistribution and use of this script, with or without modifications, +# is permitted provided that the following conditions are met: +# +# 1. Redistributions of this script must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# +# 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. +# +# Contact: Damien Goutte-Gattat +# +# Latest squid sourcecode is available at: +# . + +# Source package infos +NAMESRC=${NAMESRC:-squid} +VERSION=${VERSION:-3.0.STABLE7} +ARCHIVE=${ARCHIVE:-$NAMESRC-$VERSION.tar.gz} +WGET=${WGET:-http://www.squid-cache.org/Versions/v3/3.0/$ARCHIVE} + +# Built package infos +NAMETGZ=${NAMETGZ:-squid} +BUILD=${BUILD:-1GGD} +ARCH=${ARCH:-i486} +TARGET=${TARGET:-i486} + +# Directories +TMP=${TMP:-/tmp} +OUT=${OUT:-$TMP/build} +PKG=${PKG:-$OUT/$NAMETGZ} +CWD=$(pwd) + +set -e # Quit if a command returns non-zero + +# Sanity checks +if [ $UID -eq 0 ]; then + echo "You should NOT run this script as ROOT!" + exit 1 +fi +if [ ! -d $TMP ]; then + echo "$TMP does not exist or is not a directory!" + exit 1 +fi + +# Compilation flags +case "$ARCH" in +i?86) + CPUOPT="-O2 -march=$ARCH -mtune=i686" + ;; +*) + CPUOPT="-O2" + ;; +esac + +# Get and verify the source archive +if [ ! -r $ARCHIVE ]; then + wget "$WGET" +fi +sha1sum -c $ARCHIVE.sha1 +NAME=$(tar ft $ARCHIVE | head -1 | cut -d / -f 1) + +# Extract +cd $TMP +echo "Building $ARCHIVE..." +tar xf $CWD/$ARCHIVE +cd $NAME + +# Fix some runtime directories +sed -i -e ' + s|$(localstatedir)/logs|$(localstatedir)/log/squid| + s|$(DEFAULT_LOG_PREFIX)/squid.pid|$(localstatedir)/run/squid.pid| + s|$(localstatedir)/cache|$(localstatedir)/spool/squid| + ' src/Makefile.in + +# Compile +CFLAGS=$CPUOPT \ +CXXFLAGS=$CPUOPT \ +./configure \ + --prefix=/usr \ + --sysconfdir=/etc/squid \ + --localstatedir=/var \ + --mandir=/usr/man \ + --enable-default-err-language=English \ + --enable-err-languages=English \ + --enable-linux-netfilter +make -j 3 +make install DESTDIR=$PKG + +# Don't erase already installed config files +mv $PKG/etc/squid/squid.conf $PKG/etc/squid/squid.conf.new +mv $PKG/etc/squid/cachemgr.conf $PKG/etc/squid/cachemgr.conf.new +mv $PKG/etc/squid/mime.conf $PKG/etc/squid/mime.conf.new + +# Install control script +mkdir -p $PKG/etc/rc.d +install -m 644 $CWD/rc.squid $PKG/etc/rc.d/rc.squid + +# Create cache directory +mkdir -p $PKG/var/spool/squid + +# Strip binaries +find $PKG | xargs file | grep "ELF 32-bit LSB" | cut -d : -f 1 | \ + xargs strip --strip-unneeded 2> /dev/null + +# Compress man and info pages +find $(find $PKG -type d -name man -o -name info) -type f | \ + xargs gzip -9 2> /dev/null + +# Install the documentation +mkdir -p $PKG/usr/doc/$NAME +install -m 644 \ + CONTRIBUTORS COPYING COPYRIGHT CREDITS ChangeLog INSTALL QUICKSTART \ + README RELEASENOTES.html SPONSORS TODO \ + $PKG/usr/doc/$NAME + +# Copy slack-desc and doinst.sh files +mkdir -p $PKG/install +install -m 644 $CWD/slack-desc $PKG/install/slack-desc +install -m 755 $CWD/doinst.sh $PKG/install/doinst.sh + +# Package the tree +cd $PKG +mkdir -p $OUT +PACKAGING=" +chown root:root . -R +chown nobody:nobody var/log/squid var/spool/squid +/sbin/makepkg -l y -c n $OUT/$NAMETGZ-$VERSION-$ARCH-$BUILD.tgz +rm -rf $PKG +rm -rf $TMP/$NAME +" +if type -p fakeroot ; then + echo "$PACKAGING" | fakeroot +else + su -c "$PACKAGING" +fi