summaryrefslogtreecommitdiffstats
path: root/network/openvas-administrator/openvas-administrator.SlackBuild
diff options
context:
space:
mode:
author dsomero <xgizzmo@gmail.com>2010-05-23 14:01:40 -0400
committer David Somero <xgizzmo@slackbuilds.org>2010-05-23 23:29:30 -0500
commite1cf674191c37e14f504cd47cdff22a31ecb3bbf (patch)
tree2beaf49e2d32aff15f4d87ec8cb47db00edee2e3 /network/openvas-administrator/openvas-administrator.SlackBuild
parenta3f71c9c74654494a13b4e3e7f39993540331424 (diff)
downloadslackbuilds-e1cf674191c37e14f504cd47cdff22a31ecb3bbf.tar.gz
slackbuilds-e1cf674191c37e14f504cd47cdff22a31ecb3bbf.tar.xz
network/openvas-administrator: Miscellaneous cleanups and patch.
Cleaned up build and added an upstream patch.
Diffstat (limited to 'network/openvas-administrator/openvas-administrator.SlackBuild')
-rwxr-xr-xnetwork/openvas-administrator/openvas-administrator.SlackBuild19
1 files changed, 13 insertions, 6 deletions
diff --git a/network/openvas-administrator/openvas-administrator.SlackBuild b/network/openvas-administrator/openvas-administrator.SlackBuild
index 6f28783478..6b55ae6d55 100755
--- a/network/openvas-administrator/openvas-administrator.SlackBuild
+++ b/network/openvas-administrator/openvas-administrator.SlackBuild
@@ -24,10 +24,19 @@
PRGNAM=openvas-administrator
VERSION=${VERSION:-0.7.0}
-ARCH=${ARCH:-i486}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
+# Automatically determine the architecture we're building on:
+if [ -z "$ARCH" ]; then
+ case "$( uname -m )" in
+ i?86) export ARCH=i486 ;;
+ arm*) export ARCH=arm ;;
+ # Unless $ARCH is already set, use uname -m for all other archs:
+ *) export ARCH=$( uname -m ) ;;
+ esac
+fi
+
CWD=$(pwd)
TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM
@@ -50,6 +59,9 @@ find . \
\( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
-exec chmod 644 {} \;
+# http://wald.intevation.org/tracker/?func=detail&atid=220&aid=1273&group_id=29
+patch -p0 < $CWD/openvas-administrator-0.7.0-format.patch
+
cmake \
-DCMAKE_INSTALL_PREFIX=/usr \
-DLIBDIR=/usr/lib \
@@ -63,11 +75,6 @@ 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
-)
-
# install rc script
install -D -m0755 -oroot -groot $CWD/rc.openvasad $PKG/etc/rc.d/rc.openvasad.new