diff options
author | Larry Hajali <larryhaja[at]gmail[dot]com> | 2010-05-13 00:37:34 +0200 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2010-05-13 00:37:34 +0200 |
commit | 1e683a827b6b1924402296978969b40bddb05a78 (patch) | |
tree | 1797d22d8dd36a5a6af6e66b7d049c15a25de77e /network/ngrep/ngrep.SlackBuild | |
parent | 1671d98d45fdb5356a37abc30ab01d0b3457d3af (diff) | |
download | slackbuilds-1e683a827b6b1924402296978969b40bddb05a78.tar.gz |
network/ngrep: Updated for version 1.45
Diffstat (limited to 'network/ngrep/ngrep.SlackBuild')
-rw-r--r-- | network/ngrep/ngrep.SlackBuild | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/network/ngrep/ngrep.SlackBuild b/network/ngrep/ngrep.SlackBuild index cb74a01a95..57ea211383 100644 --- a/network/ngrep/ngrep.SlackBuild +++ b/network/ngrep/ngrep.SlackBuild @@ -17,10 +17,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 @@ -53,6 +56,7 @@ CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \ ./configure \ --prefix=/usr \ + --libdir=/usr/lib${LIBDIRSUFFIX} \ --sysconfdir=/etc \ --localstatedir=/var \ --enable-ipv6=${NGREP_IPV6} \ @@ -64,8 +68,10 @@ make make install DESTDIR=$PKG mandir=/usr/man ( 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 ) find $PKG/usr/man -type f -exec gzip -9 {} \; @@ -78,4 +84,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} |