# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4 PortSystem 1.0 PortGroup cmake 1.0 name wireshark2 version 2.6.20 revision 0 categories net license {GPL-2 GPL-3} maintainers {darkart.com:opendarwin.org @ghosthound} description Graphical network analyzer and capture tool homepage https://www.wireshark.org/ # macOS 10.12 and later ones are supported with Wireshark 3.x/4.x; 10.11 and below are limited to 2.x. # It is not clear which is the latest macOS which still allows to build Wireshark 2.x, # but it is known to fail on the recent ones. Related info: # https://gitlab.com/wireshark/wireshark/-/issues/19285 # https://www.wireshark.org/lists/wireshark-dev/202305/msg00004.html # https://gitlab.com/wireshark/wireshark/-/wikis/Development/LifeCycle platforms {darwin < 19} long_description A network analyzer that lets you capture and \ interactively browse Ethernet frames. \ Packet data can be read from a file, or live from a local \ network interface. master_sites https://www.wireshark.org/download/src/ \ https://www.wireshark.org/download/src/all-versions/ use_xz yes distfiles wireshark-${version}${extract.suffix} worksrcdir wireshark-${version} checksums sha256 c5703cf3357d73eaa537f146a60903c0cebf5bdc8d16b6b4ae9f0310da53cfaa \ rmd160 28a27f4474fc8f5a1bb44130864e530e0153a369 \ size 28557592 conflicts wireshark22 wireshark3 wireshark30 wireshark4 set py_ver 3.11 set py_ver_nodot [string map {. {}} ${py_ver}] depends_build-append \ port:python${py_ver_nodot} depends_build-append \ port:pkgconfig depends_lib path:lib/pkgconfig/glib-2.0.pc:glib2 \ path:lib/libssl.dylib:openssl \ port:libpcap \ port:lz4 configure.args-append \ -DBUILD_wireshark=OFF \ -DCMAKE_INSTALL_RPATH:STRING="${prefix}/lib" \ -DCMAKE_INSTALL_NAME_DIR:STRING="${prefix}/lib" \ -DENABLE_APPLICATION_BUNDLE=OFF \ -DENABLE_ADNS=OFF \ -DENABLE_CARES=OFF \ -DENABLE_GCRYPT=OFF \ -DENABLE_GEOIP=OFF \ -DENABLE_GNUTLS=OFF \ -DENABLE_KERBEROS=OFF \ -DENABLE_LIBXML2=OFF \ -DENABLE_LUA=OFF \ -DENABLE_LZ4=ON \ -DENABLE_NETLINK=OFF \ -DENABLE_PORTAUDIO=OFF \ -DENABLE_SMI=OFF \ -DENABLE_SNAPPY=OFF \ -DENABLE_ZLIB=OFF \ -DPYTHON_EXECUTABLE=${prefix}/bin/python${py_ver} # fix include directory for lua -- stop putting zlib.h include directory first # and then do put lua-52/lua.h directory first in list of include directories # fixes the accidental finding of the lua-5.3 lua.h in ${prefix}/include, which fails patchfiles-append patch-wireshark2-luafix-001.diff patchfiles-append patch-wireshark2-luafix-002.diff # Qt4 was removed for no good reason. 2.6.20 stills builds with it. patchfiles-append patch-unbreak-qt4.diff variant qt4 conflicts no_gui qt5 description {Build wireshark with a qt4 GUI} { PortGroup qt4 1.0 configure.args-replace -DENABLE_APPLICATION_BUNDLE=OFF -DENABLE_APPLICATION_BUNDLE=ON configure.args-replace -DBUILD_wireshark=OFF -DBUILD_wireshark=ON configure.args-append -DENABLE_QT5=OFF post-destroot { move ${destroot}${prefix}/bin/Wireshark.app ${destroot}${applications_dir}/Wireshark.app } } variant qt5 conflicts no_gui qt4 description {Build wireshark with a qt5 GUI} { PortGroup qt5 1.0 configure.args-replace -DENABLE_APPLICATION_BUNDLE=OFF -DENABLE_APPLICATION_BUNDLE=ON configure.args-replace -DBUILD_wireshark=OFF -DBUILD_wireshark=ON configure.args-append -DENABLE_QT5=ON qt5.depends_component qtbase \ qtmacextras \ qtmultimedia \ qtsvg \ qttranslations post-destroot { move ${destroot}${prefix}/bin/Wireshark.app ${destroot}${applications_dir}/Wireshark.app } } variant no_gui conflicts qt5 description {do not build the wireshark GUI} { ## initial settings (above) handle this } variant adns conflicts cares description {use adns library for async. dns resolution} { configure.args-replace -DENABLE_ADNS=OFF -DENABLE_ADNS=ON depends_lib-append port:adns } variant portaudio description {Build with PortAudio support} { configure.args-replace -DENABLE_PORTAUDIO=OFF -DENABLE_PORTAUDIO=ON depends_lib-append port:portaudio } variant zlib description {Build with zlib compression support} { configure.args-replace -DENABLE_ZLIB=OFF -DENABLE_ZLIB=ON depends_lib-append port:zlib } variant lua description {Build with Lua dissector support} { configure.args-replace -DENABLE_LUA=OFF -DENABLE_LUA=ON depends_lib-append port:lua52 } variant libsmi description {Build with libsmi snmp support} { configure.args-replace -DENABLE_SMI=OFF -DENABLE_SMI=ON depends_lib-append port:libsmi } variant gnutls description {Build with GNU TLS support} { configure.args-replace -DENABLE_GNUTLS=OFF -DENABLE_GNUTLS=ON depends_lib-append path:lib/pkgconfig/gnutls.pc:gnutls } variant libgcrypt description {Build with GNU crypto support} { configure.args-replace -DENABLE_GCRYPT=OFF -DENABLE_GCRYPT=ON depends_lib-append port:libgcrypt } variant cares conflicts adns description description {Build with c-ares support} { configure.args-replace -DENABLE_CARES=OFF -DENABLE_CARES=ON depends_lib-append port:c-ares } variant kerberos5 description {Build with Kerberos support} { configure.args-replace -DENABLE_KERBEROS=OFF -DENABLE_KERBEROS=ON \ configure.args-append -DCMAKE_SHARED_LINKER_FLAGS="-lk5crypto" depends_lib-append port:kerberos5 } variant geoip description {Build with GeoIP support} { configure.args-replace -DENABLE_GEOIP=OFF -DENABLE_GEOIP=ON depends_lib-append port:libgeoip } variant chmodbpf description {Enable Wireshark to acces macOS capture devices} { depends_run port:wireshark-chmodbpf } default_variants +portaudio +zlib +libsmi +gnutls +libgcrypt +geoip +kerberos5 +chmodbpf if {![variant_isset qt4] && ![variant_isset qt5] && ![variant_isset no_gui]} { if {${os.platform} eq "darwin" && ${os.major} < 11} { default_variants-append +qt4 } else { default_variants-append +qt5 } } if {![variant_isset adns] && ![variant_isset cares]} { default_variants-append +cares } post-destroot { xinstall -d ${destroot}${prefix}/include/wireshark/epan/crypt/ xinstall -d ${destroot}${prefix}/include/wireshark/epan/dfilter/ xinstall -d ${destroot}${prefix}/include/wireshark/epan/dissectors/ xinstall -d ${destroot}${prefix}/include/wireshark/epan/ftypes/ xinstall -d ${destroot}${prefix}/include/wireshark/wiretap/ xinstall -d ${destroot}${prefix}/include/wireshark/wsutil/ xinstall -m 644 -W ${worksrcpath}/ config.h ${destroot}${prefix}/include/wireshark/ xinstall -m 644 {*}[glob ${worksrcpath}/epan/*.h] ${destroot}${prefix}/include/wireshark/epan/ xinstall -m 644 {*}[glob ${worksrcpath}/epan/crypt/*.h] ${destroot}${prefix}/include/wireshark/epan/crypt/ xinstall -m 644 {*}[glob ${worksrcpath}/epan/dfilter/*.h] ${destroot}${prefix}/include/wireshark/epan/dfilter/ xinstall -m 644 {*}[glob ${worksrcpath}/epan/dissectors/*.h] ${destroot}${prefix}/include/wireshark/epan/dissectors/ xinstall -m 644 {*}[glob ${worksrcpath}/epan/ftypes/*.h] ${destroot}${prefix}/include/wireshark/epan/ftypes/ xinstall -m 644 {*}[glob ${worksrcpath}/wiretap/*.h] ${destroot}${prefix}/include/wireshark/wiretap/ xinstall -m 644 {*}[glob ${worksrcpath}/wsutil/*.h] ${destroot}${prefix}/include/wireshark/wsutil/ } livecheck.type regex livecheck.url ${homepage}download.html livecheck.regex "Old Stable Release \\((\\d+(?:\\.\\d+)*)" # ##EOF