summaryrefslogtreecommitdiffstats
path: root/network/mod_fcgid/mod_fcgid.SlackBuild
blob: 68dd9da2dcfb6035bab415d145544b8857ed9b5a (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
#!/bin/bash

# Slackware build for mod_fcgid (to be used with Apache 2.2)
# Version: 2.1.0 Date: 2007-02-27
# Copyright (c) 2007 Adis Nezirovic.<adis _at_ linux.org.ba>
# Licensed under GNU GPL v2

# Slightly modified by the slackbuild project
set -e


PRGNAM=mod_fcgid
VERSION=2.1
# CFLAGS are hardcoded in /usr/lib/apr-1.2.x/build-1/apr_rules.mk
# and ARCH should reflect that, so don't change it ;-)
ARCH=${ARCH:-i486}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
CWD=$(pwd)
TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM
OUTPUT=${OUTPUT:-/tmp}

# Other important variables
APACHE2_PREFIX=usr
APACHE2_LIBEXEC=usr/libexec/apache2
APACHE2_ETC=etc/apache2
APACHE2_VAR_RUN=var/run/apache2

rm -rf $TMP/$PRGNAM.$VERSION $PKG
mkdir -p $TMP $PKG $OUTPUT 
mkdir -p $PKG/{$APACHE2_LIBEXEC,$APACHE2_ETC/extra,$APACHE2_ETC/original/extra,$APACHE2_VAR_RUN}

cd $TMP
tar xzvf $CWD/$PRGNAM.$VERSION.tar.gz
cd $TMP/$PRGNAM.$VERSION
chmod -R a-s,u+w,go+r-w .
chown -R root:root .

make top_dir=/$APACHE2_PREFIX top_builddir=/$APACHE2_LIBEXEC top_srcdir=/$APACHE2_LIBEXEC || exit 1
# make install spams the root partition, this is cleaner :-)
/$APACHE2_LIBEXEC/build/instdso.sh SH_LIBTOOL=libtool $PRGNAM.la $PKG/$APACHE2_LIBEXEC || exit 1

( cd $PKG
  find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
  find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
)

## mod_fcgid writes socket to this directory
mkdir -p $PKG/$APACHE2_VAR_RUN/fcgid/fcgidsock
chown -R apache2:apache2 $PKG/$APACHE2_VAR_RUN/fcgid
chmod -R 700 $PKG/$APACHE2_VAR_RUN/fcgid

## mod_fcgid config
cat $CWD/httpd-fcgid.conf > $PKG/$APACHE2_ETC/extra/httpd-fcgid.conf.new
cat $CWD/httpd-fcgid.conf > $PKG/$APACHE2_ETC/original/extra/httpd-fcgid.conf

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.tgz