summaryrefslogtreecommitdiffstats
path: root/network/mod_wsgi/mod_wsgi.SlackBuild
diff options
context:
space:
mode:
author Adis Nezirovic2010-05-13 00:37:20 +0200
committer Robby Workman2010-05-13 00:37:20 +0200
commitf51a7a5260b53f75ace4f7efd2b96bcef2afd4b8 (patch)
tree35f97b30fdb702034a3444fbf7f6ea6e72ff4b69 /network/mod_wsgi/mod_wsgi.SlackBuild
parent2a693e3c85d226125082372c00358d4a7485ce06 (diff)
downloadslackbuilds-f51a7a5260b53f75ace4f7efd2b96bcef2afd4b8.tar.gz
network/mod_wsgi: Updated for version 3.1
Diffstat (limited to 'network/mod_wsgi/mod_wsgi.SlackBuild')
-rw-r--r--network/mod_wsgi/mod_wsgi.SlackBuild22
1 files changed, 18 insertions, 4 deletions
diff --git a/network/mod_wsgi/mod_wsgi.SlackBuild b/network/mod_wsgi/mod_wsgi.SlackBuild
index 04d4721c58..208e6548f1 100644
--- a/network/mod_wsgi/mod_wsgi.SlackBuild
+++ b/network/mod_wsgi/mod_wsgi.SlackBuild
@@ -6,7 +6,7 @@
## Licensed under GNU GPL v2
PRGNAM=mod_wsgi
-VERSION=2.0
+VERSION=3.1
ARCH=${ARCH:-i486}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
@@ -17,6 +17,11 @@ PKG=$TMP/package-$PRGNAM
OUTPUT=${OUTPUT:-/tmp}
# CFLAGS are automatically picked from Python
+if [ "$ARCH" = "x86_64" ]; then
+ LIBDIRSUFFIX="64"
+else
+ LIBDIRSUFFIX=""
+fi
set -e
@@ -32,17 +37,26 @@ chmod -R u+w,go+r-w,a-s .
./configure
# libtool can't find shared Python library;
-# there should be symlink to libpython in /usr/lib/python2.5/config
+# there should be symlink to libpython in /usr/lib${LIBDIRSUFFIX}/python2.6/config
# see http://code.google.com/p/modwsgi/wiki/InstallationIssues
-make LDFLAGS="-L/usr/lib"
+make LDFLAGS="-L/usr/lib${LIBDIRSUFFIX}"
make install DESTDIR=$PKG
+# Strip binaries:
+find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \
+ | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
+
+mkdir -p $PKG/etc/httpd
+sed "s%@baselibdir@%lib${LIBDIRSUFFIX}%" $CWD/mod_wsgi.conf > \
+ $PKG/etc/httpd/mod_wsgi.conf.new
+
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
cp -a LICENCE README $PKG/usr/doc/$PRGNAM-$VERSION/
cat $CWD/README > $PKG/usr/doc/$PRGNAM-$VERSION/README.Slackware
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
+/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}