blob: 3d6eb2c897b53cfc47bb65781658ae253182dc0c (
plain)
1 # Description: Network Sniffer with nice GTK+ UI
2 # URL: http://www.wireshark.org
3 # Packager: Martin Opel, mo at obbl-net dot de
4 # Maintainer: Tilman Sauerbeck, tilman at crux dot nu
5 # Depends on: gtk libpcap libpcre
6
7 name=wireshark
8 version=1.0.6
9 release=1
10 source=(http://www.$name.org/download/src/$name-$version.tar.bz2)
11
12 build() {
13 cd $name-$version
14
15 ./configure --prefix=/usr \
16 --mandir=/usr/man \
17 --with-plugins=/usr/lib/$name/plugins \
18 --disable-nls \
19 --enable-snmp \
20 --enable-gtk2 \
21 --disable-gcry \
22 --without-krb5
23
24 make
25 make DESTDIR=$PKG install
26
27 # install some icons
28 install -d $PKG/usr/share/$name/pixmaps
29 install -m 644 \
30 image/{hi,lo}{16,32,48}-app-$name.png \
31 $PKG/usr/share/$name/pixmaps
32
33 # Don't remove these files, they are read by wireshark's about box.
34 #rm -f $PKG/usr/share/$name/{AUTHORS-SHORT,COPYING}
35 }
|