n/squid: Removed.

slackware-14.2
Damien Goutte-Gattat 2013-06-20 15:00:00 +02:00
parent 3eb7f30056
commit 20d6e1aa76
5 changed files with 0 additions and 208 deletions

View File

@ -1,14 +0,0 @@
#!/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

View File

@ -1,33 +0,0 @@
#!/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

View File

@ -1,12 +0,0 @@
|-----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:

View File

@ -1 +0,0 @@
de280b991c6ef241fd8896dea17e6a6ebc617dc9 squid-3.0.STABLE7.tar.gz

View File

@ -1,148 +0,0 @@
#!/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 <dgouttegattat@incenp.org>
#
# Latest squid sourcecode is available at:
# <http://www.squid-cache.org/>.
# 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