summaryrefslogtreecommitdiffstats
path: root/network/bozohttpd/bozohttpd.SlackBuild
blob: 04dff90c52e6e76f2ad62ff852b098ace9aa82fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
#!/bin/bash

# Slackware build script for bozohttpd

# Copyright 2015-2017 Leonard Schmidt <email removed>
# 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 <yalhcru@gmail.com>.

# 20201102 bkw: Update for v20201014.
# 20191201 bkw: Update for v20190228.

# 20181203 bkw:
# - Update for v20181125.
# - Lua-5.1 (plain lua build) is no longer supported. Add a mess o' logic
#   to autodetect lua52 or lua53, and allow the user to override it.
# - When built with lua support, add lua version number to slack-desc.
# - Allow users to selectively disable unneeded features, see defines.default.

# 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:-20201014}
BUILD=${BUILD:-1}
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 /111 -a \! -perm 755 -a -exec chmod 755 {} \+ -o \
        \! -perm /111 -a \! -perm 644 -a -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.

# 20181203 bkw: bozohttpd-20170201 was the last version that worked
# with lua 5.1 (SBo's lua build). Starting with 20181125, at least
# lua 5.2 is required (5.3 also works). This is more complex than I'd
# like it to be, but it does work.
LUA="${LUA:-yes}"

case "$LUA" in
  # LUA=yes: autodetect
  yes) if lua5.3 -v &> /dev/null; then
          LUA=5.3
       elif lua5.2 -v &> /dev/null; then
          LUA=5.2
       else
          LUA=no
       fi
       ;;

  # LUA=<version>: use that version, or die
  5.2|5.3) if ! lua$LUA -v &> /dev/null; then
              echo "!!! lua v$LUA support requested, but lua${LUA/./} not installed" 2>&1
              exit 1
           fi
           ;;

  # LUA=no: accept and do nothing
  no) ;;

  # Anything else is a fail
  *)  echo "Invalid LUA value '$LUA'. Supported values are: yes no 5.2 5.3" 2>&1
      exit 1
      ;;
esac

echo "=== LUA='$LUA'"
if [ "$LUA" != "no" ] && lua$LUA -v &>/dev/null; then
  LUAOPT="-I/usr/include/lua$LUA"
  WITHLUA="with lua $LUA"
  EXTRADOC="printenv.lua"
  sed -i '/^CRYPTOLIBS/s,$, -llua'"$LUA"',' Makefile.boot
  sed -i 's,/usr/libexec/httpd,bozohttpd,' printenv.lua
else
  LUAOPT="-DNO_LUA_SUPPORT"
  WITHLUA="without lua"
  EXTRADOC=""
fi

# 20181203 bkw: Support local compile options, to selectively disable
# unneeded features.
if [ -e "$CWD/defines.local" ]; then
  DEFFILE=$CWD/defines.local
elif [ -e $CWD/defines.default ]; then
  DEFFILE=$CWD/defines.default
fi

if [ -n "$DEFFILE" ]; then
  DEFINES="$( echo $( sed 's,#.*$,,' "$DEFFILE" ) )"
  echo "=== using defines from $DEFFILE: '$DEFINES'"
else
  DEFINES="-DDO_HTPASSWD"
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,\<httpd ,bozohttpd ,g' \
    -e 's,libexec,sbin,g' \
    -e 's,_httpd,nobody,g' \
    -e 's,/var/www,/var/www/htdocs,g' \
    -e 's, *-v */var/vroot,,g' \
    -e 's,/usr/pkg,/usr,g' \
    $PRGNAM.8

# 20180629 bkw: warning: implicit declaration of function vasprintf().
# Probably doesn't hurt anything, but might cause problems later.
# More worrisome is missing crypt() prototype (causes implicit pointer
# to int casts, baaaaad, especially on 64-bit).
patch -p1 < $CWD/fix_warnings.diff

# Fix build (from Arch Linux' AUR).
sed -i 's/d_namlen/d_reclen/g' bozohttpd.c

make -f Makefile.boot OPT="$SLKCFLAGS -Wall" LOCAL_CFLAGS="$DEFINES $LUAOPT"

mkdir -p $PKG/usr/bin $PKG/usr/sbin $PKG/usr/man/man8
install -s -m755 $PRGNAM $PKG/usr/sbin
ln -s ../sbin/$PRGNAM $PKG/usr/bin/$PRGNAM
gzip -9c < $PRGNAM.8 > $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
[ -n "$DEFFILE" ] && cat "$DEFFILE" > $PKG/usr/doc/$PRGNAM-$VERSION/defines.local

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}