b8918e2a7d
+ Rename lua and lua-devel to lua52 and lua52-devel + Modify packages depending on lua52 accordingly: + Many packages auto-detect lua52 files + Some packages need hints where / how to find lua52 + One package (xmoto) downgraded to lua51, because it wouldn't find lua52 + One package (vim) upgraded to lua (5.3.1) There may be more packages upgradable without problems. I didn't want to change too much in this move without the respective package maintainers first taking a look. Most notably conky-cli wouldn't work with lua52. I upgraded it to 1.10.0 (same as conky) and tried to keep the flags the same for the change from gnu-configure to cmake.
101 lines
2.9 KiB
Bash
101 lines
2.9 KiB
Bash
# Template file for 'wireshark'
|
|
pkgname=wireshark
|
|
version=1.12.7
|
|
revision=3
|
|
build_style=gnu-configure
|
|
configure_args="--with-ssl --with-pcap --with-libcap --with-zlib --with-lua
|
|
--with-krb5 --with-gtk3=yes --without-portaudio CC_FOR_BUILD=cc"
|
|
hostmakedepends="pkg-config flex perl python-devel mit-krb5-devel libtool"
|
|
makedepends="libpcap-devel zlib-devel lua52-devel mit-krb5-devel gnutls-devel
|
|
geoip-devel libgcrypt-devel gtk+3-devel libcap-devel sbc-devel"
|
|
depends="libcap-progs"
|
|
short_desc="A network protocol analyzer"
|
|
maintainer="Enno Boland <gottox@voidlinux.eu>"
|
|
homepage="http://www.wireshark.org"
|
|
license="GPL-2"
|
|
distfiles="http://www.wireshark.org/download/src/${pkgname}-${version}.tar.bz2"
|
|
checksum=c74a1c14e72ce0f198a93d832e71742c7f312cbbe719e5def9ecef176860f92c
|
|
system_groups="wireshark"
|
|
subpackages="libwireshark libwireshark-devel wireshark-gtk"
|
|
|
|
CFLAGS="-I${XBPS_CROSS_BASE}/usr/include/lua5.2"
|
|
CXXFLAGS="-I${XBPS_CROSS_BASE}/usr/include/lua5.2"
|
|
if [ -z "$CROSS_BUILD" ]; then
|
|
makedepends+=" qt5-devel"
|
|
configure_args+=" --with-qt=yes"
|
|
subpackages+=" wireshark-qt"
|
|
else
|
|
configure_args+=" --with-qt=no"
|
|
fi
|
|
|
|
pre_configure() {
|
|
libtoolize -f
|
|
find -type f -name Makefile.in -exec sed -i "s/^LIBS = .*/\0 -ldl/" {} \;
|
|
}
|
|
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
|
|
if [ -z "$CROSS_BUILD" ]; then
|
|
sed -i 's/^Name.*=Wireshark/& (Qt)/g;/Exec=/s/wireshark/&-qt/g' wireshark.desktop
|
|
vinstall wireshark.desktop 644 usr/share/applications wireshark-qt.desktop
|
|
fi
|
|
|
|
# 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
|
|
|
|
chmod +754 $DESTDIR/usr/bin/dumpcap
|
|
}
|
|
|
|
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
|
|
}
|
|
}
|
|
wireshark-gtk_package() {
|
|
replaces="wireshark<1.12.2_1"
|
|
depends="${sourcepkg}>=${version}_${revision} hicolor-icon-theme desktop-file-utils"
|
|
short_desc+=" - GTK+ frontend"
|
|
pkg_install() {
|
|
vmove usr/bin/wireshark
|
|
vmove usr/share/icons
|
|
vmove usr/share/man/man1/wireshark.1
|
|
vmove usr/share/applications/wireshark.desktop
|
|
}
|
|
}
|
|
wireshark-qt_package() {
|
|
replaces="wireshark<1.12.2_1"
|
|
depends="${sourcepkg}>=${version}_${revision} desktop-file-utils"
|
|
short_desc+=" - Qt frontend"
|
|
pkg_install() {
|
|
vmove usr/bin/wireshark-qt
|
|
vmove usr/share/applications/wireshark-qt.desktop
|
|
}
|
|
}
|