blob: fc3012cfb80f528c052eec7f33709c4a18ab5cee (
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
6 # Nice to have: libpcre
7
8 name=wireshark
9 version=1.0.1
10 release=2
11 source=(http://www.$name.org/download/src/$name-$version.tar.bz2)
12
13 build() {
14 cd $name-$version
15
16 ./configure --prefix=/usr \
17 --mandir=/usr/man \
18 --with-plugins=/usr/lib/$name/plugins \
19 --disable-nls \
20 --enable-snmp \
21 --enable-gtk2 \
22 --disable-gcry \
23 --disable-krb5
24
25 make
26 make DESTDIR=$PKG install
27
28 # install some icons
29 install -d $PKG/usr/share/$name/pixmaps
30 install -m 644 \
31 image/{hi,lo}{16,32,48}-app-$name.png \
32 $PKG/usr/share/$name/pixmaps
33
34 # Don't remove these files, they are read by wireshark's about box.
35 #rm -f $PKG/usr/share/$name/{AUTHORS-SHORT,COPYING}
36 }
|