mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-24 10:02:29 +01:00
network/vnstat: Updated for version 1.10
This commit is contained in:
parent
129a97d8ac
commit
89a1eb18c1
2 changed files with 28 additions and 18 deletions
|
@ -2,7 +2,7 @@
|
|||
|
||||
# Slackware build script for vnstat
|
||||
|
||||
# Copyright 2007 Michiel van Wessem (http://michielvwessem.wordpress.com)
|
||||
# Copyright 2007-2009 Michiel van Wessem, Manchester, United Kingdom.
|
||||
# All rights reserved.
|
||||
#
|
||||
# Redistribution and use of this script, with or without modification, is
|
||||
|
@ -23,7 +23,7 @@
|
|||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
PRGNAM=vnstat
|
||||
VERSION=${VERSION:-1.7}
|
||||
VERSION=${VERSION:-1.10}
|
||||
ARCH=${ARCH:-i486}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
@ -60,19 +60,24 @@ sed -i 's#install -m 644 cfg/vnstat.conf $(DESTDIR)/etc;#install -D -m 644 cfg/v
|
|||
|
||||
# Set the compile flags in the src/Makefile properly
|
||||
if [ "$ARCH" = "i486" ]; then
|
||||
sed -i 's#FLAGS = -O2#FLAGS = -O2 -march=i486 -mtune=i686#' \
|
||||
$TMP/$PRGNAM-$VERSION/src/Makefile
|
||||
sed -i 's#FLAGS = -O2#FLAGS = -O2 -march=i486 -mtune=i686#' \
|
||||
$TMP/$PRGNAM-$VERSION/src/Makefile
|
||||
elif [ "$ARCH" = "i686" ]; then
|
||||
sed -i 's#FLAGS = -O2#FLAGS = -O2 -march=i686 -mtune=i686#' \
|
||||
$TMP/$PRGNAM-$VERSION/src/Makefile
|
||||
sed -i 's#FLAGS = -O2#FLAGS = -O2 -march=i686 -mtune=i686#' \
|
||||
$TMP/$PRGNAM-$VERSION/src/Makefile
|
||||
elif [ "$ARCH" = "x86_64" ]; then
|
||||
sed -i 's#FLAGS = -O2#FLAGS =-O2 -fPIC#' \
|
||||
$TMP/$PRGNAM-$VERSION/src/Makefile
|
||||
fi
|
||||
|
||||
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
|
||||
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
|
||||
|
@ -80,18 +85,22 @@ make install DESTDIR=$PKG
|
|||
for i in $(find . -type l) ; do ln -s $(readlink $i).gz $i.gz ; rm $i ; done
|
||||
)
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION/
|
||||
cp -a CHANGES COPYING FAQ INSTALL INSTALL_BSD README UPGRADE UNINSTALL \
|
||||
examples $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cat cron/$PRGNAM > $PKG/usr/doc/$PRGNAM-$VERSION/examples/$PRGNAM.cron
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION/examples
|
||||
cp -a CHANGES COPYING FAQ INSTALL* README UPGRADE UNINSTALL examples \
|
||||
$PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||||
|
||||
# Remove the init.d cruft for other distros.
|
||||
rm -rf $PKG/usr/doc/$PRGNAM-$VERSION/examples/init.d
|
||||
|
||||
# Set up the configuration files and startup scripts.
|
||||
mkdir -p $PKG/etc/rc.d
|
||||
cat $CWD/rc.$PRGNAM > $PKG/etc/rc.d/rc.$PRGNAM.new
|
||||
mv $PKG/etc/vnstat.conf $PKG/etc/vnstat.conf.new
|
||||
|
||||
mkdir -p $PKG/install
|
||||
cat $CWD/doinst.sh > $PKG/install/doinst.sh
|
||||
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}
|
||||
|
|
|
@ -1,9 +1,10 @@
|
|||
PRGNAM="vnstat"
|
||||
VERSION="1.7"
|
||||
VERSION="1.10"
|
||||
HOMEPAGE="http://humdi.net/vnstat/"
|
||||
DOWNLOAD="http://humdi.net/vnstat/vnstat-1.7.tar.gz"
|
||||
MD5SUM="e5788e8122e34f2c93561e2a84c19432"
|
||||
DOWNLOAD="http://humdi.net/vnstat/vnstat-1.10.tar.gz"
|
||||
MD5SUM="95421d968689130590348ceb80ff74a8"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
MAINTAINER="Michiel van Wessem"
|
||||
EMAIL="michiel@slackbuilds.org"
|
||||
APPROVED="dsomero"
|
||||
|
||||
APPROVED="Erik Hanson"
|
||||
|
|
Loading…
Reference in a new issue