From edb57c20c037628124332230523412f7006c832b Mon Sep 17 00:00:00 2001 From: "Cezary M. Kruk" Date: Thu, 13 May 2010 00:23:20 +0200 Subject: desktop/wmSun: Updated for version 1.03 --- desktop/wmSun/wmSun.SlackBuild | 31 +++++++++++++++++-------------- 1 file changed, 17 insertions(+), 14 deletions(-) (limited to 'desktop/wmSun/wmSun.SlackBuild') diff --git a/desktop/wmSun/wmSun.SlackBuild b/desktop/wmSun/wmSun.SlackBuild index f3f289a2ce..d0037287fa 100644 --- a/desktop/wmSun/wmSun.SlackBuild +++ b/desktop/wmSun/wmSun.SlackBuild @@ -18,10 +18,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 @@ -30,7 +33,7 @@ rm -rf $PKG mkdir -p $TMP $PKG $OUTPUT cd $TMP rm -rf $PRGNAM-$VERSION -tar -xvf $CWD/$PRGNAM-$VERSION.tar.gz +tar xvf $CWD/$PRGNAM-$VERSION.tar.gz cd $PRGNAM-$VERSION chown -R root:root . find . \ @@ -39,20 +42,21 @@ find . \ \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ -exec chmod 644 {} \; -cd wmSun - mkdir $PKG/usr - mkdir $PKG/bin - mkdir -p $PKG/man/man1 +# We have to "make clean" first, because guess what's in there already? +# wmSun: ELF 32-bit LSB executable, Intel 80386, version 1 (SYSV), +# dynamically linked (uses shared libs), not stripped +# Anyone want to guess how that ends on an x86_64 system? :-) - CFLAGS="$SLKCFLAGS" make - make install DESTDIR=$PKG +cd wmSun + mkdir -p $PKG/usr/{bin,man/man1} + make clean + make \ + CFLAGS="$SLKCFLAGS" \ + INCDIR="-I/usr/include/X11" \ + LIBDIR="-L/usr/lib${LIBDIRSUFFIX}/X11" + make install DESTDIR=$PKG/usr cd - -# Executable and manual are already installed; -# we just move them to the correct location -mv $PKG/bin $PKG/usr -mv $PKG/man $PKG/usr - ( cd $PKG find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | \ xargs strip --strip-unneeded 2> /dev/null || true @@ -74,5 +78,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} -- cgit v1.2.3