From b56f9cec4d4c0f4939810f78af95681646334342 Mon Sep 17 00:00:00 2001 From: Peter Marquardt Date: Fri, 15 Sep 2023 11:01:21 +0200 Subject: [PATCH] wireshark: update from 4.0.2 to 4.1.0 - updated - fixme: uses qt6 in /pkg 8( --- wireshark.be0 | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/wireshark.be0 b/wireshark.be0 index 6d4c18cc5..6e46035dd 100755 --- a/wireshark.be0 +++ b/wireshark.be0 @@ -1,11 +1,11 @@ #!/usr/bin/env beesh -# BEE_VERSION wireshark-4.0.2-0 +# BEE_VERSION wireshark-4.1.0-0 #SRCURL[0]="https://1.eu.dl.wireshark.org/src/all-versions/wireshark-${PKGVERSION}.tar.xz" -SRCURL[0]="https://beehive.molgen.mpg.de/60eb89ab41cd2dbfcefed7efeccec9e3/wireshark-4.0.2.tar.xz" +SRCURL[0]="https://beehive.molgen.mpg.de/d414a12d2fa9a61e72fbfbbac89a9084/wireshark-4.1.0.tar.xz" -PATCHURL+=(/src/mariux/patches/wireshark-add-auth-mariux) +PATCHURL+=(/src/mariux/patches/wireshark-add-auth-mariux-410.patch) # build_in_sourcedir @@ -13,6 +13,8 @@ PATCHURL+=(/src/mariux/patches/wireshark-add-auth-mariux) BEE_BUILDTYPE='autotools' +QT6=/pkg/qt-6.2.4-0 + #mee_extract() { # bee_extract "${@}" #} @@ -22,16 +24,17 @@ BEE_BUILDTYPE='autotools' #} mee_configure() { + . $QT6/profile CFLAGS=-Wno-maybe-uninitialized \ bee_configure \ - -DUSE_QT6=NO \ - -DCMAKE_PREFIX_PATH=/usr/local/qt5 + -DCMAKE_PREFIX_PATH=$QT6/lib/cmake } #mee_build() { # bee_build #} -#mee_install() { -# bee_install -#} +mee_install() { + bee_install + patchelf --set-rpath $QT6/lib ${D}/usr/bin/wireshark +}