summaryrefslogtreecommitdiffstats
path: root/network
diff options
context:
space:
mode:
author Marco Bonetti2011-02-05 18:02:43 +0100
committer Robby Workman2011-02-05 18:02:43 +0100
commitaa219231c8b707adcc1fb31cc4a14738402cdccb (patch)
tree3224dffb0c164c0fba05fd1cfc0806d43c99b470 /network
parent1982d2bc49ec4ea6adceaa30d45a5786afc956eb (diff)
downloadslackbuilds-aa219231c8b707adcc1fb31cc4a14738402cdccb.tar.gz
network/openvas-client: Updated for version 3.0.2.
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'network')
-rw-r--r--network/openvas-client/doinst.sh4
-rw-r--r--network/openvas-client/openvas-client.SlackBuild13
-rw-r--r--network/openvas-client/openvas-client.info8
3 files changed, 11 insertions, 14 deletions
diff --git a/network/openvas-client/doinst.sh b/network/openvas-client/doinst.sh
index 3a0d87b6c3..f5d17186b1 100644
--- a/network/openvas-client/doinst.sh
+++ b/network/openvas-client/doinst.sh
@@ -1,10 +1,10 @@
config() {
NEW="$1"
- OLD="`dirname $NEW`/`basename $NEW .new`"
+ OLD="$(dirname $NEW)/$(basename $NEW .new)"
# If there's no config file by that name, mv it over:
if [ ! -r $OLD ]; then
mv $NEW $OLD
- elif [ "`cat $OLD | md5sum`" = "`cat $NEW | md5sum`" ]; then # toss the redundant copy
+ elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then # toss the redundant copy
rm $NEW
fi
# Otherwise, we leave the .new copy for the admin to consider...
diff --git a/network/openvas-client/openvas-client.SlackBuild b/network/openvas-client/openvas-client.SlackBuild
index 36677b6803..497c98d7dd 100644
--- a/network/openvas-client/openvas-client.SlackBuild
+++ b/network/openvas-client/openvas-client.SlackBuild
@@ -1,8 +1,8 @@
#!/bin/sh
# Slackware build script for OpenVAS client.
-#
-# Copyright 2009-2010 Marco Bonetti <sid77@slackware.it>
+
+# Copyright 2011-2012 Marco Bonetti <sid77@slackware.it>
# All rights reserved.
#
# Redistribution and use of this script, with or without modification, is
@@ -24,7 +24,7 @@
PRGNAM=openvas-client
-VERSION=${VERSION:-3.0.0}
+VERSION=${VERSION:-3.0.2}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
@@ -84,15 +84,12 @@ make install DESTDIR=$PKG
find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
-( cd $PKG/usr/man
- find . -type f -exec gzip -9 {} \;
- for i in $( find . -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done
-)
+find $PKG/usr/man -type f -exec gzip -9 {} \;
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
cp -a $DOCS $PKG/usr/doc/$PRGNAM-$VERSION
mv $PKG/etc/openvas/openvas-client_log.conf $PKG/etc/openvas/openvas-client_log.conf.new
-chmod 644 $PKG/etc/openvas/openvas-client_log.conf.new
+chmod 0644 $PKG/etc/openvas/openvas-client_log.conf.new
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
diff --git a/network/openvas-client/openvas-client.info b/network/openvas-client/openvas-client.info
index 5b788e8c74..d2e94293c6 100644
--- a/network/openvas-client/openvas-client.info
+++ b/network/openvas-client/openvas-client.info
@@ -1,10 +1,10 @@
PRGNAM="openvas-client"
-VERSION="3.0.0"
+VERSION="3.0.2"
HOMEPAGE="http://www.openvas.org/"
-DOWNLOAD="http://wald.intevation.org/frs/download.php/685/openvas-client-3.0.0.tar.gz"
-MD5SUM="c5fc0c744865ca2e6c331bab529e11a3"
+DOWNLOAD="http://wald.intevation.org/frs/download.php/802/openvas-client-3.0.2.tar.gz"
+MD5SUM="d41d8cd98f00b204e9800998ecf8427e"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
MAINTAINER="Marco Bonetti"
EMAIL="sid77@slackware.it"
-APPROVED="dsomero"
+APPROVED="rworkman"