diff options
Diffstat (limited to 'network/openvas-client/openvas-client.SlackBuild')
-rw-r--r-- | network/openvas-client/openvas-client.SlackBuild | 13 |
1 files changed, 5 insertions, 8 deletions
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 |