summaryrefslogtreecommitdiffstats
path: root/libraries/wxX11/wxX11.SlackBuild
diff options
context:
space:
mode:
author Vincent Batts <vbatts@batts.mine.nu>2010-05-13 00:33:49 +0200
committer David Somero <xgizzmo@slackbuilds.org>2010-05-13 00:33:49 +0200
commitd44c94ed784928355460e6283bae0cd12ff5f62a (patch)
treee278da60cb6e4bf4681a0f2cb874b81a59fe582f /libraries/wxX11/wxX11.SlackBuild
parent1a48d492c13d3495a4032b04b9fe07deabf5c55e (diff)
downloadslackbuilds-d44c94ed784928355460e6283bae0cd12ff5f62a.tar.gz
slackbuilds-d44c94ed784928355460e6283bae0cd12ff5f62a.tar.xz
libraries/wxX11: Updated for version 2.8.7
Diffstat (limited to 'libraries/wxX11/wxX11.SlackBuild')
-rw-r--r--libraries/wxX11/wxX11.SlackBuild14
1 files changed, 11 insertions, 3 deletions
diff --git a/libraries/wxX11/wxX11.SlackBuild b/libraries/wxX11/wxX11.SlackBuild
index d03fc9dd8d..f2a0f5233a 100644
--- a/libraries/wxX11/wxX11.SlackBuild
+++ b/libraries/wxX11/wxX11.SlackBuild
@@ -15,8 +15,13 @@ OUTPUT=${OUTPUT:-/tmp}
if [ "$ARCH" = "i486" ]; then
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
+ LIBDIRSUFFIX=""
elif [ "$ARCH" = "i686" ]; then
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
+ LIBDIRSUFFIX=""
+elif [ "$ARCH" = "x86_64" ]; then
+ SLKCFLAGS="-O2 -fPIC"
+ LIBDIRSUFFIX="64"
fi
set -e # Exit on most errors
@@ -38,6 +43,7 @@ CFLAGS="$SLKCFLAGS" \
CXXFLAGS="$SLKCFLAGS" \
./configure \
--prefix=/usr \
+ --libdir=/usr/lib${LIBDIRSUFFIX} \
--sysconfdir=/etc \
--localstatedir=/var \
--disable-gui \
@@ -47,8 +53,10 @@ make
make install DESTDIR=$PKG
( 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
+ 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
@@ -59,4 +67,4 @@ 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
+/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}