diff options
author | Heinz Wiesinger <pprkut@slackbuilds.org> | 2010-05-12 11:47:46 +0200 |
---|---|---|
committer | Heinz Wiesinger <pprkut@slackbuilds.org> | 2010-05-12 11:47:46 +0200 |
commit | 23d248c6dafb56ccb96f1d9966c72ede7f0fb2bc (patch) | |
tree | e46b47e29636a8bc9b8f90bfa9413ca9c7ddb4dd | |
parent | 505448c69c363ce87911caafca73f70dfb37ccfb (diff) | |
download | slackbuilds-23d248c6dafb56ccb96f1d9966c72ede7f0fb2bc.tar.gz |
development/mod_python: Removed from 12.2 repository
-rw-r--r-- | development/mod_python/README | 1 | ||||
-rw-r--r-- | development/mod_python/mod_python.SlackBuild | 69 | ||||
-rw-r--r-- | development/mod_python/mod_python.info | 8 | ||||
-rw-r--r-- | development/mod_python/slack-desc | 19 |
4 files changed, 0 insertions, 97 deletions
diff --git a/development/mod_python/README b/development/mod_python/README deleted file mode 100644 index fb595b9ff6..0000000000 --- a/development/mod_python/README +++ /dev/null @@ -1 +0,0 @@ -mod_python is an Apache module for Python. diff --git a/development/mod_python/mod_python.SlackBuild b/development/mod_python/mod_python.SlackBuild deleted file mode 100644 index a8d3e6e8ea..0000000000 --- a/development/mod_python/mod_python.SlackBuild +++ /dev/null @@ -1,69 +0,0 @@ -#!/bin/sh - -# Slackware build script for mod_python - -# Written by Jick Nan (jick.nan@gmail.com) - -PRGNAM=mod_python -VERSION=3.3.1 -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" -fi - -rm -rf $PKG -mkdir -p $TMP $PKG $OUTPUT -cd $TMP -rm -rf $PRGNAM-$VERSION -tar xzvf $CWD/$PRGNAM-$VERSION.tgz || exit 1 -cd $PRGNAM-$VERSION || exit 1 -chown -R root:root . -chmod -R u+w,go+r-w,a-s . - -CFLAGS="$SLKCFLAGS" \ -CXXFLAGS="$SLKCFLAGS" \ -./configure \ - --prefix=/usr \ - --sysconfdir=/etc \ - --localstatedir=/var \ - --with-apxs=/usr/sbin/apxs \ - || exit 1 - -make || exit 1 -make install DESTDIR=$PKG || 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 -) - -if [ -d $PKG/usr/man ]; then -( cd $PKG/usr/man - find . -type f -exec gzip -9 {} \; - for i in $(find . -type l) ; do ln -s $(readlink $i).gz $i.gz ; rm $i ; done -) -fi - -if [ -d $PKG/usr/info ]; then - rm -rf $PKG/usr/info/dir - gzip -9 $PKG/usr/info/*.info* -fi - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a README NOTICE doc-html $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 - -cd $PKG -/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.tgz diff --git a/development/mod_python/mod_python.info b/development/mod_python/mod_python.info deleted file mode 100644 index 3029353654..0000000000 --- a/development/mod_python/mod_python.info +++ /dev/null @@ -1,8 +0,0 @@ -PRGNAM="mod_python" -VERSION="3.3.1" -HOMEPAGE="http://httpd.apache.org/modules/python-download.cgi" -DOWNLOAD="http://www.hightechimpact.com/Apache/httpd/modpython/mod_python-3.3.1.tgz" -MD5SUM="a3b0150176b726bd2833dac3a7837dc5" -MAINTAINER="Jick Nan" -EMAIL="jick.nan@gmail.com" -APPROVED="rworkman" diff --git a/development/mod_python/slack-desc b/development/mod_python/slack-desc deleted file mode 100644 index d88f5ae3f9..0000000000 --- a/development/mod_python/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------------------------------------------------------| -mod_python: mod_python (Apache module for Python) -mod_python: -mod_python: Apache module for Python. -mod_python: -mod_python: http://httpd.apache.org/modules/python-download.cgi -mod_python: -mod_python: -mod_python: -mod_python: -mod_python: -mod_python: |