summaryrefslogtreecommitdiffstats
path: root/network/mod_auth_kerb/mod_auth_kerb.SlackBuild
diff options
context:
space:
mode:
author Robby Workman <rworkman@slackbuilds.org>2012-09-21 21:10:45 -0500
committer Robby Workman <rworkman@slackbuilds.org>2012-09-28 21:36:00 -0500
commit1154b8fc6f7c59a72c5bc90eb5e50d9cee9ed1f5 (patch)
tree481d98b304aee6e39f4cdaa3650e5136074afe84 /network/mod_auth_kerb/mod_auth_kerb.SlackBuild
parent89719373d13a0b8c713133c47bb97788ae0f8d60 (diff)
downloadslackbuilds-1154b8fc6f7c59a72c5bc90eb5e50d9cee9ed1f5.tar.gz
slackbuilds-1154b8fc6f7c59a72c5bc90eb5e50d9cee9ed1f5.tar.xz
network/mod_auth_kerb: Removed (build failure)
This is likely related to httpd-2.4.x, but I did a cursory search for patches via Google and was not successful, so... Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'network/mod_auth_kerb/mod_auth_kerb.SlackBuild')
-rw-r--r--network/mod_auth_kerb/mod_auth_kerb.SlackBuild85
1 files changed, 0 insertions, 85 deletions
diff --git a/network/mod_auth_kerb/mod_auth_kerb.SlackBuild b/network/mod_auth_kerb/mod_auth_kerb.SlackBuild
deleted file mode 100644
index 60adb3f377..0000000000
--- a/network/mod_auth_kerb/mod_auth_kerb.SlackBuild
+++ /dev/null
@@ -1,85 +0,0 @@
-#!/bin/sh
-
-# Slackware build script for mod_auth_kerb
-# Written by Thibaut Notteboom (tib at tibux dot org)
-
-PRGNAM=mod_auth_kerb
-VERSION=${VERSION:-5.4}
-BUILD=${BUILD:-1}
-TAG=${TAG:-_SBo}
-
-if [ -z "$ARCH" ]; then
- case "$( uname -m )" in
- i?86) ARCH=i486 ;;
- arm*) ARCH=arm ;;
- *) ARCH=$( uname -m ) ;;
- esac
-fi
-
-CWD=$(pwd)
-TMP=${TMP:-/tmp/SBo}
-PKG=$TMP/package-$PRGNAM
-OUTPUT=${OUTPUT:-/tmp}
-
-if [ "$ARCH" = "i486" ]; then
- SLKCFLAGS="-O2 -march=i486 -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 xvf $CWD/$PRGNAM-$VERSION.tar.gz
-cd $PRGNAM-$VERSION
-chown -R root:root .
-find . \
- \( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \
- -exec chmod 755 {} \; -o \
- \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
- -exec chmod 644 {} \;
-
-patch -p0 < $CWD/mod_auth_kerb.c.patch
-
-CFLAGS="$SLKCFLAGS" \
-CXXFLAGS="$SLKCFLAGS" \
-./configure \
- --prefix=/usr \
- --without-krb4 \
- --with-krb5=/usr/heimdal \
- --build=$ARCH-slackware-linux
-
-make
-
-mkdir -p $PKG/usr/lib${LIBDIRSUFFIX}/httpd/modules
-install -m 0755 src/.libs/mod_auth_kerb.so \
- $PKG/usr/lib${LIBDIRSUFFIX}/httpd/modules/mod_auth_kerb.so
-
-mkdir -p $PKG/etc/httpd/extra
-sed "s%@baselibdir@%lib${LIBDIRSUFFIX}%" $CWD/mod_auth_kerb.conf > \
- $PKG/etc/httpd/extra/mod_auth_kerb.conf.new
-
-find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \
- | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
-
-mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
-cp -a ChangeLog INSTALL LICENSE README $PKG/usr/doc/$PRGNAM-$VERSION
-cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
-
-mkdir -p $PKG/install
-cat $CWD/slack-desc > $PKG/install/slack-desc
-cat $CWD/doinst.sh > $PKG/install/doinst.sh
-
-cd $PKG
-/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}