From f51a7a5260b53f75ace4f7efd2b96bcef2afd4b8 Mon Sep 17 00:00:00 2001 From: Adis Nezirovic Date: Thu, 13 May 2010 00:37:20 +0200 Subject: network/mod_wsgi: Updated for version 3.1 --- network/mod_wsgi/mod_wsgi.SlackBuild | 22 ++++++++++++++++++---- 1 file changed, 18 insertions(+), 4 deletions(-) (limited to 'network/mod_wsgi/mod_wsgi.SlackBuild') 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} -- cgit v1.2.3