network/fcgi: Added to 12.1 repository

This commit is contained in:
Vincent Batts 2010-05-11 22:54:45 +02:00 committed by Robby Workman
parent e8937fb069
commit d5e9300817
7 changed files with 140 additions and 0 deletions

2
network/fcgi/README Normal file
View file

@ -0,0 +1,2 @@
fast cgi is a language independent, scalable, open extension to CGI that
provides high perfomance without the limitations of server specific API's

15
network/fcgi/doinst.sh Normal file
View file

@ -0,0 +1,15 @@
config() {
NEW="$1"
OLD="$(dirname $NEW)/$(basename $NEW .new)"
# If there's no config file by that name, mv it over:
if [ ! -r $OLD ]; then
mv $NEW $OLD
elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then
# toss the redundant copy
rm $NEW
fi
# Otherwise, we leave the .new copy for the admin to consider...
}
config etc/httpd/extra/httpd-fcgi.conf.new

View file

@ -0,0 +1,88 @@
#!/bin/sh
# Slackware build script for fcgi
# Written by Vincent Batts, vbatts@batts.mine.nu
# This script bundles the mod_fcgi apache module with it
PRGNAM=fcgi
VERSION=2.4.0
ARCH=${ARCH:-i486}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
CWD=$(pwd)
TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM
OUTPUT=${OUTPUT:-/tmp}
if [ "$ARCH" = "i486" ]; then
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
elif [ "$ARCH" = "i686" ]; then
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
elif [ "$ARCH" = "x86_64" ]; then
SLKCFLAGS="-O2 -fPIC"
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
tar xvf $CWD/mod_fcgid.2.2.tgz
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 {} \;
chmod -R a-s .
# first build and install the fcgi stuff
CFLAGS="$SLKCFLAGS" \
CXXFLAGS="$SLKCFLAGS" \
./configure \
--prefix=/usr \
--sysconfdir=/etc \
--localstatedir=/var \
--mandir=/usr/man \
--enable-static=no \
--build=$ARCH-slackware-linux \
--host=$ARCH-slackware-linux
make
make install DESTDIR=$PKG
# Now let's build mod_fcgid
cd mod_fcgid.2.2
mkdir -p $PKG/usr/lib/httpd/modules
CFLAGS="$SLKCFLAGS" \
CXXFLAGS="$SLKCFLAGS" \
make top_dir=/usr/lib/httpd
cp -a .libs/mod_fcgid.so $PKG/usr/lib/httpd/modules
cd -
mkdir -p $PKG/etc/httpd/extra
cat $CWD/httpd-fcgi.conf > $PKG/etc/httpd/extra/httpd-fcgi.conf.new
( cd $PKG
find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
)
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION/mod_fcgid
cp -a LICENSE.TERMS doc/ $PKG/usr/doc/$PRGNAM-$VERSION
cd mod_fcgid.2.2
cp -a AUTHOR COPYING INSTALL.txt ChangeLog $PKG/usr/doc/$PRGNAM-$VERSION/mod_fcgid
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
find $PKG/usr/doc -type d -exec chmod 0755 {} \;
find $PKG/usr/doc -type f -exec chmod 0644 {} \;
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

8
network/fcgi/fcgi.info Normal file
View file

@ -0,0 +1,8 @@
PRGNAM="fcgi"
VERSION="2.4.0"
HOMEPAGE="http://www.fastcgi.com/"
DOWNLOAD="http://www.fastcgi.com/dist/fcgi-2.4.0.tar.gz"
MD5SUM="d15060a813b91383a9f3c66faf84867e"
MAINTAINER="Vincent Batts"
EMAIL="vbatts@batts.mine.nu"
APPROVED="rworkman"

View file

@ -0,0 +1,8 @@
LoadModule fcgid_module /usr/lib/httpd/modules/mod_fcgid.so
<IfModule mod_fcgid.c>
AddHandler fcgid-script .fcgi
IPCCommTimeout 40
IPCConnectTimeout 10
DefaultInitEnv RAILS_ENV production
SocketPath /tmp/fcgidsock
</IfModule>

Binary file not shown.

19
network/fcgi/slack-desc Normal file
View file

@ -0,0 +1,19 @@
# HOW TO EDIT THIS FILE:
# The "handy ruler" below makes it easier to edit a package description. Line
# up the first '|' above the ':' following the base package name, and the '|'
# on the right side marks the last column you can put a character in. You must
# make exactly 11 lines for the formatting to be correct. It's also
# customary to leave one space after the ':'.
|-----handy-ruler-------------------------------------------------------|
fcgi: fcgi (Fast CGI)
fcgi:
fcgi: fcgi is a language independent, scalable, open extension
fcgi: to CGI that provides high perfomance without the limitations
fcgi: of server specific API's.
fcgi:
fcgi: Homepage: http://www.fastcgi.com
fcgi:
fcgi:
fcgi:
fcgi: