#!/bin/sh # Slackware build script for bozohttpd # Copyright 2015-2017 Leonard Schmidt # All rights reserved. # # Redistribution and use of this script, with or without modification, 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. # Now maintained by B. Watson . # 20180629 bkw: # - Take over maintenance. # - Move binary to /usr/sbin (to match the section 8 man page). But # leave compatibility symlink in /usr/bin to avoid breaking everyone's # rc.local or other scripts. BUILD=2. # - Fix a couple of compiler warnings. # - Add .htpasswd support. It's enabled by default in upstream's BSD-only # Makefile. # - Optional Lua support. # - Tweak man page, de-NetBSDify the pathnames. # - Simplify script a bit. PRGNAM=bozohttpd VERSION=${VERSION:-20170201} BUILD=${BUILD:-2} TAG=${TAG:-_SBo} if [ -z "$ARCH" ]; then case "$( uname -m )" in i?86) ARCH=i586 ;; arm*) ARCH=arm ;; *) ARCH=$( uname -m ) ;; esac fi CWD=$(pwd) TMP=${TMP:-/tmp/SBo} PKG=$TMP/package-$PRGNAM OUTPUT=${OUTPUT:-/tmp} if [ "$ARCH" = "i586" ]; then SLKCFLAGS="-O2 -march=i586 -mtune=i686" LIBDIRSUFFIX="" elif [ "$ARCH" = "i686" ]; then SLKCFLAGS="-O2 -march=i686 -mtune=i686" LIBDIRSUFFIX="" elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-O2 -fPIC" LIBDIRSUFFIX="64" else SLKCFLAGS="-O2" LIBDIRSUFFIX="" fi set -e rm -rf $PKG mkdir -p $TMP $PKG $OUTPUT cd $TMP rm -rf $PRGNAM-$VERSION tar xjvf $CWD/$PRGNAM-$VERSION.tar.bz2 cd $PRGNAM-$VERSION chown -R root:root . find -L . \ \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \ -o -perm 511 \) -exec chmod 755 {} \+ -o \ \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \+ # 20180629 bkw: Note to self: Ignore Makefile. It's BSD-specific. # In theory maybe it could be massaged into working with bmake or # (*shudder*) pmake. Makefile.boot is a stripped-down generic Makefile # that does work with GNU make... but it's a bit too stripped down, # have to add a couple of features that were removed. sed -i '/^CRYPTOLIBS/s,$, -lcrypt,' Makefile.boot # 20180629 bkw: support lua (-L option) if lua is installed and user # doesn't disable it. I've tested this with the printenv.lua script # and it seems to work fine. if [ "${LUA:-yes}" = "yes" ] && lua -v &>/dev/null; then LUAOPT="" WITHLUA="with" EXTRADOC="printenv.lua" sed -i '/^CRYPTOLIBS/s,$, -llua,' Makefile.boot sed -i 's,/usr/libexec/httpd,bozohttpd,' printenv.lua else LUAOPT="-DNO_LUA_SUPPORT" WITHLUA="without" EXTRADOC="" fi # 20180629 bkw: The man page was written for NetBSD, where I guess # bozohttpd is installed as "httpd". On Slackware this is Apache. The # man page shows example commands referring to "httpd", which will # confuse everyone who tries to run them... also the paths are weird. # Note to the SBo admin who reviews this: if you really hate the mega-sed # command below, I wouldn't mind making this a patch instead. Six of one, # half a dozen of the other. sed -i \ -e 's,\ $PKG/usr/man/man8/$PRGNAM.8.gz mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION cp -a CHANGES $EXTRADOC $PKG/usr/doc/$PRGNAM-$VERSION cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild mkdir -p $PKG/install sed "s,@WITHLUA@,$WITHLUA," $CWD/slack-desc > $PKG/install/slack-desc cd $PKG /sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}