New package: wireshark-1.10.6

This commit is contained in:
Enno Boland 2014-04-01 16:39:47 +02:00
parent a6aa1700e3
commit a900da3283
5 changed files with 84 additions and 0 deletions

View file

@ -1519,3 +1519,6 @@ libdovecot-lda.so.0 dovecot-2.2.11_2
libnetapi.so.0 samba-3.6.23_1
libsmbsharemodes.so.0 samba-3.6.23_1
libmysqld.so.18 libmariadbclient-5.5.36_1
libwsutil.so.3 libwireshark-1.10.6_1
libwireshark.so.3 libwireshark-1.10.6_1
libwiretap.so.3 libwireshark-1.10.6_1

1
srcpkgs/libwireshark Symbolic link
View file

@ -0,0 +1 @@
wireshark

1
srcpkgs/libwireshark-devel Symbolic link
View file

@ -0,0 +1 @@
wireshark

14
srcpkgs/wireshark/INSTALL Normal file
View file

@ -0,0 +1,14 @@
case "${ACTION}" in
post)
chown wireshark usr/bin/dumpcap
/usr/sbin/setcap 'CAP_NET_RAW+eip CAP_NET_ADMIN+eip' usr/bin/dumpcap
cat <<_EOF
=================================================================
You should also add your user to the 'wireshark' group to be able
to capture traffic
==================================================================
_EOF
;;
esac

View file

@ -0,0 +1,65 @@
# Template file for 'wireshark'
pkgname=wireshark
version=1.10.6
revision=1
build_style=gnu-configure
configure_args=" --with-ssl \
--with-pcap \
--with-libcap \
--with-zlib \
--with-lua \
--with-krb5 \
--without-portaudio"
hostmakedepends="pkg-config bison flex perl"
makedepends="libpcap-devel zlib-devel lua-devel libcap-devel mit-krb5-devel gtk+-devel"
depends="libcap-progs"
short_desc="A graphical network protocol analyzer for Unix/Linux"
maintainer="Enno Boland <eb@s01.de>"
homepage="http://www.wireshark.org"
license="GPL-2"
distfiles="http://www.wireshark.org/download/src/${pkgname}-${version}.tar.bz2"
checksum=a9de3fd3002d4df0946cfea2f5a33557666e14c7014dbc42d1f78dfe113f6b5d
system_groups="wireshark"
post_install() {
local _includeDir=usr/include/wireshark
# Icons
for d in 16 32 48; do
vinstall image/hi${d}-app-wireshark.png 644 \
usr/share/icons/hicolor/${d}x${d}/apps/wireshark.png
done
for d in 16 24 32 48 64 128 256 ; do
vinstall image/WiresharkDoc-${d}.png 644 \
usr/share/icons/hicolor/${d}x${d}/mimetypes/application-vnd.tcpdump.pcap.png
done
# Desktop Launcher
vinstall wireshark.desktop 644 usr/share/applications/wireshark.desktop
# Headers
vmkdir $_includeDir
vcopy "color.h config.h register.h ws_symbol_export.h" $_includeDir
for i in wiretap wsutil; do
vmkdir $_includeDir/$i
vcopy "$i/*.h" $_includeDir/$i
done
}
libwireshark_package() {
short_desc+=" - library"
pkg_install() {
vmove usr/lib/*.so.*
vmove usr/lib/wireshark
}
}
libwireshark-devel_package() {
short_desc+=" - development files"
depends="libwireshark>=${version}_${revision}"
pkg_install() {
vmove usr/include
vmove usr/lib/*.so
}
}