2010-05-11 15:18:35 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
# Slackware build script for Conserver
|
|
|
|
# Written by Menno Duursma <druiloor@zonnet.nl>
|
|
|
|
|
2010-05-13 00:39:58 +02:00
|
|
|
# This program is free software. It comes without any warranty.
|
|
|
|
# Granted WTFPL, Version 2, as published by Sam Hocevar. See
|
|
|
|
# http://sam.zoy.org/wtfpl/COPYING for more details.
|
|
|
|
|
2010-05-11 15:18:35 +02:00
|
|
|
PRGNAM=conserver
|
2010-05-13 00:39:58 +02:00
|
|
|
VERSION=8.1.17
|
2010-05-11 15:18:35 +02:00
|
|
|
BUILD=${BUILD:-1}
|
|
|
|
TAG=${TAG:-_SBo}
|
2010-05-11 19:46:24 +02:00
|
|
|
|
2010-06-04 07:15:23 +02:00
|
|
|
# Automatically determine the architecture we're building on:
|
|
|
|
if [ -z "$ARCH" ]; then
|
|
|
|
case "$( uname -m )" in
|
|
|
|
i?86) ARCH=i486 ;;
|
|
|
|
arm*) ARCH=arm ;;
|
|
|
|
# Unless $ARCH is already set, use uname -m for all other archs:
|
|
|
|
*) ARCH=$( uname -m ) ;;
|
|
|
|
esac
|
|
|
|
fi
|
|
|
|
|
2010-05-11 19:46:24 +02:00
|
|
|
CWD=$(pwd)
|
2010-05-11 15:18:35 +02:00
|
|
|
TMP=${TMP:-/tmp/SBo}
|
|
|
|
PKG=$TMP/package-$PRGNAM
|
|
|
|
OUTPUT=${OUTPUT:-/tmp}
|
|
|
|
|
|
|
|
if [ "$ARCH" = "i486" ]; then
|
|
|
|
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
|
2010-05-13 00:39:58 +02:00
|
|
|
LIBDIRSUFFIX=""
|
2010-05-11 15:18:35 +02:00
|
|
|
elif [ "$ARCH" = "i686" ]; then
|
|
|
|
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
|
2010-05-13 00:39:58 +02:00
|
|
|
LIBDIRSUFFIX=""
|
|
|
|
elif [ "$ARCH" = "x86_64" ]; then
|
|
|
|
SLKCFLAGS="-O2 -fPIC"
|
|
|
|
LIBDIRSUFFIX="64"
|
2010-06-04 07:15:23 +02:00
|
|
|
else
|
|
|
|
SLKCFLAGS="-O2"
|
|
|
|
LIBDIRSUFFIX=""
|
2010-05-11 15:18:35 +02:00
|
|
|
fi
|
|
|
|
|
2010-05-11 19:46:24 +02:00
|
|
|
set -e # Bail out if we have a problem
|
|
|
|
|
2010-05-11 15:18:35 +02:00
|
|
|
rm -rf $PKG
|
|
|
|
mkdir -p $TMP $PKG $OUTPUT
|
|
|
|
cd $TMP
|
|
|
|
rm -rf $PRGNAM-$VERSION
|
2010-05-13 00:39:58 +02:00
|
|
|
tar xvf $CWD/$PRGNAM-$VERSION.tar.gz
|
2010-05-11 15:18:35 +02:00
|
|
|
cd $PRGNAM-$VERSION
|
|
|
|
chown -R root:root .
|
|
|
|
find . -type d -exec chmod 0755 {} \;
|
|
|
|
chmod -R a-s,u+w,go+r-w .
|
|
|
|
|
|
|
|
CFLAGS="$SLKCFLAGS" \
|
|
|
|
CXXFLAGS="$SLKCFLAGS" \
|
|
|
|
./configure \
|
|
|
|
--prefix=/usr \
|
2010-05-13 00:39:58 +02:00
|
|
|
--libdir=/usr/lib${LIBDIRSUFFIX} \
|
2010-05-11 15:18:35 +02:00
|
|
|
--sysconfdir=/etc \
|
|
|
|
--localstatedir=/var \
|
|
|
|
--mandir=/usr/man \
|
|
|
|
--with-libwrap \
|
|
|
|
--with-openssl \
|
2010-05-13 00:39:58 +02:00
|
|
|
--build=$ARCH-slackware-linux
|
2010-05-11 15:18:35 +02:00
|
|
|
|
2010-05-13 00:39:58 +02:00
|
|
|
make
|
|
|
|
make install DESTDIR=$PKG
|
2010-05-11 15:18:35 +02:00
|
|
|
|
2010-05-19 08:48:14 +02:00
|
|
|
find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \
|
|
|
|
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
|
2010-05-11 15:18:35 +02:00
|
|
|
|
2010-05-13 00:39:58 +02:00
|
|
|
( cd $PKG/usr/man
|
|
|
|
find . -type f -exec gzip -9 {} \;
|
|
|
|
for i in $( find . -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done
|
|
|
|
)
|
|
|
|
|
|
|
|
# Include dist config files as documentation
|
|
|
|
install -D -m 0644 $PKG/usr/share/examples/conserver/conserver.cf $PKG/usr/doc/$PRGNAM-$VERSION/examples/conserver.cf
|
|
|
|
install -D -m 0644 $PKG/usr/share/examples/conserver/conserver.passwd $PKG/usr/doc/$PRGNAM-$VERSION/examples/conserver.passwd
|
|
|
|
install -D -m 0644 $PKG/usr/share/examples/conserver/conserver.rc $PKG/usr/doc/$PRGNAM-$VERSION/examples/conserver.rc
|
|
|
|
|
|
|
|
# Toss redundant dir included with source
|
|
|
|
rm -rf $PKG/usr/share
|
2010-05-11 15:18:35 +02:00
|
|
|
|
2010-05-11 19:46:24 +02:00
|
|
|
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION/contrib
|
|
|
|
cp [A-Z][A-Z]* conserver.html $PKG/usr/doc/$PRGNAM-$VERSION
|
2010-05-11 15:18:35 +02:00
|
|
|
cp -a autologin $PKG/usr/doc/$PRGNAM-$VERSION
|
|
|
|
|
|
|
|
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION/conserver.cf
|
|
|
|
cd conserver.cf
|
2010-05-11 19:46:24 +02:00
|
|
|
cp INSTALL conserver.cf conserver.passwd label.ps test.cf \
|
|
|
|
$PKG/usr/doc/$PRGNAM-$VERSION/conserver.cf
|
|
|
|
cp -a samples $PKG/usr/doc/$PRGNAM-$VERSION/conserver.cf
|
2010-05-11 15:18:35 +02:00
|
|
|
cd ../conserver
|
2010-05-11 19:46:24 +02:00
|
|
|
cp Sun-serial $PKG/usr/doc/$PRGNAM-$VERSION
|
2010-05-11 15:18:35 +02:00
|
|
|
cd ../contrib
|
2010-05-11 19:46:24 +02:00
|
|
|
cp README maketestcerts $PKG/usr/doc/$PRGNAM-$VERSION/contrib
|
|
|
|
# We'll consider this a documentation here too
|
|
|
|
cp -a chat $PKG/usr/doc/$PRGNAM-$VERSION/contrib
|
|
|
|
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
|
|
|
cat $CWD/README > $PKG/usr/doc/$PRGNAM-$VERSION/README$TAG
|
|
|
|
cd -
|
2010-05-11 15:18:35 +02:00
|
|
|
|
|
|
|
## Sample configuration files
|
|
|
|
mkdir -p $PKG/etc
|
2010-05-13 00:39:58 +02:00
|
|
|
cat $CWD/config/conserver.cf > $PKG/etc/conserver.cf.new
|
|
|
|
cat $CWD/config/conserver.passwd > $PKG/etc/conserver.passwd.new
|
|
|
|
cat $CWD/config/console.cf > $PKG/etc/console.cf.new
|
2010-05-11 15:18:35 +02:00
|
|
|
|
|
|
|
# Include sample rc file
|
2010-05-13 00:39:58 +02:00
|
|
|
install -D -m 0755 $CWD/config/rc.conserver $PKG/etc/rc.d/rc.conserver.new
|
2010-05-11 15:18:35 +02:00
|
|
|
|
2010-05-13 00:39:58 +02:00
|
|
|
# Pre-create the default directory console messages get logged to
|
2010-05-11 15:18:35 +02:00
|
|
|
mkdir -p $PKG/var/consoles
|
|
|
|
|
|
|
|
mkdir -p $PKG/install
|
|
|
|
cat $CWD/slack-desc > $PKG/install/slack-desc
|
|
|
|
cat $CWD/doinst.sh > $PKG/install/doinst.sh
|
|
|
|
|
|
|
|
cd $PKG
|
2010-05-13 00:39:58 +02:00
|
|
|
/sbin/makepkg -l y -c n -p $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}
|