system/bonnie++: Updated for version 1.03e

This commit is contained in:
Vincent Batts 2010-05-13 00:39:43 +02:00 committed by Erik Hanson
parent 68e5fe8f72
commit 8b34488c14
2 changed files with 18 additions and 8 deletions

View file

@ -5,7 +5,7 @@
# Modified by Michiel van Wessem <michiel@slackbuils.org>
PRGNAM=bonnie++
VERSION=1.03d
VERSION=1.03e
ARCH=${ARCH:-i486}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
@ -17,8 +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
@ -42,6 +47,7 @@ patch -p1 < $CWD/Makefile.in_DESTDIR.diff
./configure \
--prefix=/usr \
--libdir=/usr/lib${LIBDIRSUFFIX} \
--sysconfdir=/etc \
--localstatedir=/var \
--mandir=/usr/man \
@ -51,8 +57,10 @@ make MORECFLAGS="$SLKCFLAGS"
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
)
( cd $PKG/usr/man
@ -68,4 +76,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}

View file

@ -1,8 +1,10 @@
PRGNAM="bonnie++"
VERSION="1.03d"
VERSION="1.03e"
HOMEPAGE="http://www.coker.com.au/bonnie++/"
DOWNLOAD="http://www.coker.com.au/bonnie++/bonnie++-1.03d.tgz"
MD5SUM="3bdccb241cb7ab53e8efa3a3a55bc4ce"
DOWNLOAD="http://www.coker.com.au/bonnie++/bonnie++-1.03e.tgz"
MD5SUM="750aa5b5051263a99c6c195888c74968"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
MAINTAINER="Vincent Batts"
EMAIL="vbatts@hashbangbash.com"
APPROVED="dsomero"
APPROVED="Erik Hanson"