blob: e8bdde3302ade04b2a478217d3a357e8df8ae7aa (
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=0.99.5
10 release=1
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 --with-plugins=/usr/lib/$name/plugins \
18 --disable-nls \
19 --enable-snmp \
20 --enable-gtk2 \
21 --disable-gcry \
22
23 make
24 make DESTDIR=$PKG install
25
26 # install some icons
27 install -d $PKG/usr/share/$name/pixmaps
28 install -m 644 \
29 image/{hi,lo}{16,32,48}-app-$name.png \
30 $PKG/usr/share/$name/pixmaps
31
32 # Don't remove these files, they are read by wireshark's about box.
33 #rm -f $PKG/usr/share/$name/{AUTHORS-SHORT,COPYING}
34 }
|