diff options
author | Vincent Batts <vbatts@batts.mine.nu> | 2010-05-11 22:54:45 +0200 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2010-05-11 22:54:45 +0200 |
commit | d5e9300817f8181f84e68fee709000970a598af2 (patch) | |
tree | 3564b35e57586095561d5d7f5e7236fad8dd4e54 /network/fcgi | |
parent | e8937fb0691fb613b249b397e12311ea14dd8aff (diff) | |
download | slackbuilds-d5e9300817f8181f84e68fee709000970a598af2.tar.gz |
network/fcgi: Added to 12.1 repository
Diffstat (limited to 'network/fcgi')
-rw-r--r-- | network/fcgi/README | 2 | ||||
-rw-r--r-- | network/fcgi/doinst.sh | 15 | ||||
-rw-r--r-- | network/fcgi/fcgi.SlackBuild | 88 | ||||
-rw-r--r-- | network/fcgi/fcgi.info | 8 | ||||
-rw-r--r-- | network/fcgi/httpd-fcgi.conf | 8 | ||||
-rw-r--r-- | network/fcgi/mod_fcgid.2.2.tgz | bin | 0 -> 56954 bytes | |||
-rw-r--r-- | network/fcgi/slack-desc | 19 |
7 files changed, 140 insertions, 0 deletions
diff --git a/network/fcgi/README b/network/fcgi/README new file mode 100644 index 0000000000..bfc1c5c065 --- /dev/null +++ b/network/fcgi/README @@ -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 diff --git a/network/fcgi/doinst.sh b/network/fcgi/doinst.sh new file mode 100644 index 0000000000..900d59d924 --- /dev/null +++ b/network/fcgi/doinst.sh @@ -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 + diff --git a/network/fcgi/fcgi.SlackBuild b/network/fcgi/fcgi.SlackBuild new file mode 100644 index 0000000000..ad7cd51e40 --- /dev/null +++ b/network/fcgi/fcgi.SlackBuild @@ -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 diff --git a/network/fcgi/fcgi.info b/network/fcgi/fcgi.info new file mode 100644 index 0000000000..ff9f28a02a --- /dev/null +++ b/network/fcgi/fcgi.info @@ -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" diff --git a/network/fcgi/httpd-fcgi.conf b/network/fcgi/httpd-fcgi.conf new file mode 100644 index 0000000000..bb68c52baa --- /dev/null +++ b/network/fcgi/httpd-fcgi.conf @@ -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> diff --git a/network/fcgi/mod_fcgid.2.2.tgz b/network/fcgi/mod_fcgid.2.2.tgz Binary files differnew file mode 100644 index 0000000000..6b0652f8c2 --- /dev/null +++ b/network/fcgi/mod_fcgid.2.2.tgz diff --git a/network/fcgi/slack-desc b/network/fcgi/slack-desc new file mode 100644 index 0000000000..db7f9a7772 --- /dev/null +++ b/network/fcgi/slack-desc @@ -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: |