summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
author Matteo Bernardini2016-12-29 17:41:59 +0100
committer Willy Sudiarto Raharjo2016-12-31 02:22:33 +0100
commit1336ce0125356389039920db44eeff9ec891f9cf (patch)
tree36bcbe7050ff981288a96c3610be291029a05195
parent2704667f186dd0af823028f92120f8ff5cc512d5 (diff)
downloadslackbuilds-1336ce0125356389039920db44eeff9ec891f9cf.tar.gz
network/ettercap: Updated for version 0.8.2, cleanups.
Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org>
-rw-r--r--network/ettercap/ettercap.SlackBuild21
-rw-r--r--network/ettercap/ettercap.info6
2 files changed, 14 insertions, 13 deletions
diff --git a/network/ettercap/ettercap.SlackBuild b/network/ettercap/ettercap.SlackBuild
index c095cebf8e..f841ef5396 100644
--- a/network/ettercap/ettercap.SlackBuild
+++ b/network/ettercap/ettercap.SlackBuild
@@ -1,7 +1,8 @@
#!/bin/sh
-# Slackbuild for ettercap
-# Copyright 2013-2015 Matteo Bernardini <ponce@slackbuilds.org>, Pisa, Italy
+# Slackware build script for ettercap
+
+# Copyright 2013-2016 Matteo Bernardini <ponce@slackbuilds.org>, Pisa, Italy
# All rights reserved.
#
# Redistribution and use of this script, with or without modification, is
@@ -22,13 +23,13 @@
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
PRGNAM=ettercap
-VERSION=${VERSION:-0.8.1}
+VERSION=${VERSION:-0.8.2}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
if [ -z "$ARCH" ]; then
case "$( uname -m )" in
- i?86) ARCH=i486 ;;
+ i?86) ARCH=i586 ;;
arm*) ARCH=arm ;;
*) ARCH=$( uname -m ) ;;
esac
@@ -39,8 +40,8 @@ TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM
OUTPUT=${OUTPUT:-/tmp}
-if [ "$ARCH" = "i486" ]; then
- SLKCFLAGS="-O2 -march=i486 -mtune=i686"
+if [ "$ARCH" = "i586" ]; then
+ SLKCFLAGS="-O2 -march=i586 -mtune=i686"
LIBDIRSUFFIX=""
elif [ "$ARCH" = "i686" ]; then
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
@@ -66,10 +67,10 @@ tar xvf $CWD/$PRGNAM-$VERSION.tar.gz
cd $PRGNAM-$VERSION
chown -R root:root .
find -L . \
- \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 -o -perm 511 \) \
- -exec chmod 755 {} \; -o \
+ \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \
+ -o -perm 511 \) -exec chmod 755 {} \; -o \
\( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
- -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
+ -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
mkdir -p build
cd build
@@ -90,7 +91,7 @@ cd ..
( cd $PKG/etc/ettercap
for i in conf dns mdns nbns; do mv etter.$i etter.$i.new ; done )
-find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \
+find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
find $PKG/usr/man -type f -exec gzip -9 {} \;
diff --git a/network/ettercap/ettercap.info b/network/ettercap/ettercap.info
index d2e964fc46..cd95a28fcb 100644
--- a/network/ettercap/ettercap.info
+++ b/network/ettercap/ettercap.info
@@ -1,8 +1,8 @@
PRGNAM="ettercap"
-VERSION="0.8.1"
+VERSION="0.8.2"
HOMEPAGE="https://ettercap.github.io/ettercap/"
-DOWNLOAD="https://github.com/Ettercap/ettercap/releases/download/v0.8.1/ettercap-0.8.1.tar.gz"
-MD5SUM="cdbbc13f86ba214b7068c9da6546ca95"
+DOWNLOAD="https://github.com/Ettercap/ettercap/releases/download/v0.8.2/ettercap-0.8.2.tar.gz"
+MD5SUM="b6b20851862f55644d5f296f77b785d1"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
REQUIRES="libnet"