From db2631d6e20c27fd3b1c42cd0cfb70f3b8cb8e5a Mon Sep 17 00:00:00 2001 From: Jick Nan Date: Tue, 11 May 2010 15:01:39 +0200 Subject: network/wireshark: Initial import --- network/wireshark/README | 11 ++++++ network/wireshark/slack-desc | 11 ++++++ network/wireshark/wireshark.SlackBuild | 70 ++++++++++++++++++++++++++++++++++ network/wireshark/wireshark.info | 8 ++++ 4 files changed, 100 insertions(+) create mode 100644 network/wireshark/README create mode 100644 network/wireshark/slack-desc create mode 100644 network/wireshark/wireshark.SlackBuild create mode 100644 network/wireshark/wireshark.info (limited to 'network/wireshark') diff --git a/network/wireshark/README b/network/wireshark/README new file mode 100644 index 0000000000..39ae32f69d --- /dev/null +++ b/network/wireshark/README @@ -0,0 +1,11 @@ +WireShark (aka Ethereal) + +Same developers, same code, different name. The Ethereal network protocol +analyzer has changed its name to Wireshark. + +Wireshark's powerful features make it the tool of choice for network +troubleshooting, protocol development, and education worldwide. + +Wireshark was written by an international group of networking experts, and is +an example of the power of open source. It runs on Windows, Linux, UNIX, and +other platforms. diff --git a/network/wireshark/slack-desc b/network/wireshark/slack-desc new file mode 100644 index 0000000000..b0a1107e02 --- /dev/null +++ b/network/wireshark/slack-desc @@ -0,0 +1,11 @@ +wireshark: WireShark (formerly knows as Ethereal) +wireshark: +wireshark: Same developers, same code, different name. The Ethereal network +wireshark: protocol analyzer has changed its name to Wireshark. +wireshark: +wireshark: Wireshark's powerful features make it the tool of choice for network +wireshark: troubleshooting, protocol development, and education worldwide. +wireshark: Wireshark was written by an international group of networking +wireshark: experts, and is an example of the power of open source. It runs on +wireshark: Windows, Linux, UNIX, and other platforms. +wireshark: diff --git a/network/wireshark/wireshark.SlackBuild b/network/wireshark/wireshark.SlackBuild new file mode 100644 index 0000000000..1b18d673cd --- /dev/null +++ b/network/wireshark/wireshark.SlackBuild @@ -0,0 +1,70 @@ +#!/bin/sh + +# Slackware build script for wireshark +# Written by Jick Nan (jick.nan@gmail.com) + +# Modified by the SlackBuilds.org project + +PRGNAM=wireshark +VERSION=0.99.5 +ARCH=${ARCH:-i486} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} +CWD=$(pwd) +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +if [ "$ARCH" = "i486" ]; then + SLKCFLAGS="-O2 -march=i486 -mtune=i686" +elif [ "$ARCH" = "i686" ]; then + SLKCFLAGS="-O2 -march=i686 -mtune=i686" +fi + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP || exit 1 +rm -rf $PRGNAM-$VERSION +tar -xzvf $CWD/$PRGNAM-$VERSION.tar.gz || exit 1 +cd $PRGNAM-$VERSION || exit 1 +chown -R root:root . +chmod -R u+w,go+r-w,a-s . + +CFLAGS="$SLKCFLAGS" \ +CXXFLAGS="$SLKCFLAGS" \ +./configure \ + --prefix=/usr \ + --sysconfdir=/etc \ + --localstatedir=/var \ + || exit 1 + +make || exit 1 +make install DESTDIR=$PKG || exit 1 + +( cd $PKG + find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null + find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null +) + +if [ -d $PKG/usr/man ]; then +( 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 +) +fi + +if [ -d $PKG/usr/info ]; then + rm -rf $PKG/usr/info/dir + gzip -9 $PKG/usr/info/*.info* +fi + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a AUTHORS COPYING ChangeLog FAQ INSTALL* NEWS README* \ + $PKG/usr/doc/$PRGNAM-$VERSION +cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild + +mkdir -p $PKG/install +cat $CWD/slack-desc > $PKG/install/slack-desc + +cd $PKG +/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.tgz diff --git a/network/wireshark/wireshark.info b/network/wireshark/wireshark.info new file mode 100644 index 0000000000..9dcb766151 --- /dev/null +++ b/network/wireshark/wireshark.info @@ -0,0 +1,8 @@ +PRGNAM="wireshark" +VERSION="0.99.5" +HOMEPAGE="http://www.wireshark.org/" +DOWNLOAD="http://www.wireshark.org/download/src/all-versions/wireshark-0.99.5.tar.gz" +MD5SUM="d034fc3936d16cfc3becac2daec9f591" +MAINTAINER="Jick Nan" +EMAIL="jick.nan@gmail.com" +APPROVED="rworkman" -- cgit v1.2.3