2006-09-25 18:20:26 +00:00
|
|
|
# Description: Network Sniffer with nice GTK+ UI
|
2006-09-28 15:58:42 +00:00
|
|
|
# URL: http://www.wireshark.org
|
2006-09-25 18:20:26 +00:00
|
|
|
# Packager: Martin Opel, mo at obbl-net dot de
|
|
|
|
# Maintainer: Tilman Sauerbeck, tilman at crux dot nu
|
2008-12-11 19:57:42 +01:00
|
|
|
# Depends on: gtk libpcap libpcre
|
2006-09-25 18:20:26 +00:00
|
|
|
|
|
|
|
name=wireshark
|
2009-07-28 19:41:13 +02:00
|
|
|
version=1.2.1
|
2008-07-12 11:17:59 +02:00
|
|
|
release=1
|
2009-06-16 18:39:17 +02:00
|
|
|
source=(http://www.$name.org/download/src/all-versions/$name-$version.tar.bz2)
|
2006-09-25 18:20:26 +00:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cd $name-$version
|
|
|
|
|
|
|
|
./configure --prefix=/usr \
|
2007-07-06 12:55:45 +02:00
|
|
|
--mandir=/usr/man \
|
2006-11-03 18:06:42 +01:00
|
|
|
--with-plugins=/usr/lib/$name/plugins \
|
2006-09-25 18:20:26 +00:00
|
|
|
--disable-nls \
|
|
|
|
--enable-snmp \
|
|
|
|
--enable-gtk2 \
|
2006-11-03 18:06:42 +01:00
|
|
|
--disable-gcry \
|
2008-07-12 10:19:21 +02:00
|
|
|
--without-krb5
|
2006-09-25 18:20:26 +00:00
|
|
|
|
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
|
|
|
|
|
|
|
# install some icons
|
|
|
|
install -d $PKG/usr/share/$name/pixmaps
|
|
|
|
install -m 644 \
|
|
|
|
image/{hi,lo}{16,32,48}-app-$name.png \
|
|
|
|
$PKG/usr/share/$name/pixmaps
|
|
|
|
|
2006-11-03 18:06:42 +01:00
|
|
|
# Don't remove these files, they are read by wireshark's about box.
|
|
|
|
#rm -f $PKG/usr/share/$name/{AUTHORS-SHORT,COPYING}
|
2006-09-25 18:20:26 +00:00
|
|
|
}
|