summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xwireshark/build/wireshark.SlackBuild11
1 files changed, 6 insertions, 5 deletions
diff --git a/wireshark/build/wireshark.SlackBuild b/wireshark/build/wireshark.SlackBuild
index 36f5b152..9e8047fc 100755
--- a/wireshark/build/wireshark.SlackBuild
+++ b/wireshark/build/wireshark.SlackBuild
@@ -38,6 +38,8 @@
# variable "SETUIDGRP" in this script is set to "wheel" by
# default, which means that your account has to be a member
# of the "wheel" group in order to run dumpcap.
+# 1.4.6-1: 12/may/2011 by Eric Hameleers <alien@slackware.com>
+# * Update for Slackware 13.37.
#
# Run 'sh wireshark.SlackBuild' to build a Slackware package.
# The package (.tgz) and .txt file as well as build logs are created in /tmp .
@@ -48,14 +50,13 @@
# Set initial variables:
PRGNAM=wireshark
-VERSION=${VERSION:-1.4.5}
+VERSION=${VERSION:-1.4.6}
BUILD=${BUILD:-1}
NUMJOBS=${NUMJOBS:" -j4 "}
TAG=${TAG:-alien}
SETUIDGRP=${SETUIDGRP:-"wheel"}
-# This covers most filenames you'd want as documentation. Change if needed.
DOCS="AUTHORS* COPYING* ChangeLog INSTALL* NEWS README* doc/README*"
# Where do we look for sources?
@@ -200,19 +201,19 @@ mkdir -p $PKG/install
cat <<EOINS >> $PKG/install/doinst.sh
# Update the desktop database:
if [ -x usr/bin/update-desktop-database ]; then
- chroot . /usr/bin/update-desktop-database usr/share/applications > /dev/null 2>&1
+ chroot . /usr/bin/update-desktop-database usr/share/applications 1> /dev/null 2>&1
fi
# Update hicolor theme cache:
if [ -d usr/share/icons/hicolor ]; then
if [ -x /usr/bin/gtk-update-icon-cache ]; then
- chroot . /usr/bin/gtk-update-icon-cache -f -t usr/share/icons/hicolor 1> /dev/null 2> /dev/null
+ chroot . /usr/bin/gtk-update-icon-cache -f -t usr/share/icons/hicolor 1> /dev/null 2>&1
fi
fi
# Update the mime database:
if [ -x usr/bin/update-mime-database ]; then
- chroot . /usr/bin/update-mime-database usr/share/mime >/dev/null 2>&1
+ chroot . /usr/bin/update-mime-database usr/share/mime 1>/dev/null 2>&1
fi
EOINS