diff options
author | Heinz Wiesinger <pprkut@slackbuilds.org> | 2010-05-13 00:08:38 +0200 |
---|---|---|
committer | Heinz Wiesinger <pprkut@slackbuilds.org> | 2010-05-13 00:08:38 +0200 |
commit | a936b89f7b045675e95a7493804b67ea90bf853f (patch) | |
tree | 46b3ecddaa4e266647aef049cf90af2ec7b57ac6 /network/fcgi | |
parent | bee94398ad86544df421952951167b4f5ef299fb (diff) | |
download | slackbuilds-a936b89f7b045675e95a7493804b67ea90bf853f.tar.gz |
network/fcgi: Removed from 13.0 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 | 56954 -> 0 bytes | |||
-rw-r--r-- | network/fcgi/slack-desc | 19 |
7 files changed, 0 insertions, 140 deletions
diff --git a/network/fcgi/README b/network/fcgi/README deleted file mode 100644 index bfc1c5c065..0000000000 --- a/network/fcgi/README +++ /dev/null @@ -1,2 +0,0 @@ -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 deleted file mode 100644 index 900d59d924..0000000000 --- a/network/fcgi/doinst.sh +++ /dev/null @@ -1,15 +0,0 @@ -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 deleted file mode 100644 index ad7cd51e40..0000000000 --- a/network/fcgi/fcgi.SlackBuild +++ /dev/null @@ -1,88 +0,0 @@ -#!/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 deleted file mode 100644 index ff9f28a02a..0000000000 --- a/network/fcgi/fcgi.info +++ /dev/null @@ -1,8 +0,0 @@ -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 deleted file mode 100644 index bb68c52baa..0000000000 --- a/network/fcgi/httpd-fcgi.conf +++ /dev/null @@ -1,8 +0,0 @@ -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 differdeleted file mode 100644 index 6b0652f8c2..0000000000 --- a/network/fcgi/mod_fcgid.2.2.tgz +++ /dev/null diff --git a/network/fcgi/slack-desc b/network/fcgi/slack-desc deleted file mode 100644 index db7f9a7772..0000000000 --- a/network/fcgi/slack-desc +++ /dev/null @@ -1,19 +0,0 @@ -# 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: |