From fd28fc3dc1af481449ccaaa5a3c5927d1485745f Mon Sep 17 00:00:00 2001 From: Armin Kuster Date: Sun, 20 Jul 2014 13:21:25 -0700 Subject: [PATCH] wireshark: Add recipe 1.12.0-rc2 * Inital wireshark support on gtk+, gtk3 * README with additional info (From meta-openembedded rev: 9bfdcec4087ab5fd19dc054f2084c83c5883d010) Signed-off-by: Armin Kuster Signed-off-by: Martin Jansa Signed-off-by: Patrick Ohly --- .../recipes-support/wireshark/README | 37 +++++++++++++++++++ .../wireshark/wireshark_1.12.0-rc2.bb | 41 ++++++++++++++++++++++ 2 files changed, 78 insertions(+) create mode 100644 meta-openembedded/meta-networking/recipes-support/wireshark/README create mode 100644 meta-openembedded/meta-networking/recipes-support/wireshark/wireshark_1.12.0-rc2.bb diff --git a/meta-openembedded/meta-networking/recipes-support/wireshark/README b/meta-openembedded/meta-networking/recipes-support/wireshark/README new file mode 100644 index 0000000..0e0c526 --- /dev/null +++ b/meta-openembedded/meta-networking/recipes-support/wireshark/README @@ -0,0 +1,37 @@ +# +Wireshark - Notes + +URL: http://www.wireshark.org/ +User Guide: http://www.wireshark.org/docs/wsug_html_chunked/ +Secruity advisories: http://www.wireshark.org/security/ + +Wireshark is slowly moving away from gtk and towards QT as their graphical stack. +Currently gtk is supported with this release and I plan on integrating QT. + + + +Adding the wireshark to your build +======================================== + +via local.conf +IMAGE_INSTALL_append = " wireshark" + +Adding the wireshark to your graphical build +======================================== +via local.conf +EXTRA_IMAGE_FEATURES += "x11-base" + +or use the "core-image-x11" + + +Maintenance +----------- + +Send patches, comments or questions to openembedded-devel@lists.openembedded.org + +When sending single patches, please using something like: +'git send-email -1 --to openembedded-devel@lists.openembedded.org --cc akuster@mvista.com --subject-prefix=meta-security][PATCH' + +Maintainer: Armin Kuster + + diff --git a/meta-openembedded/meta-networking/recipes-support/wireshark/wireshark_1.12.0-rc2.bb b/meta-openembedded/meta-networking/recipes-support/wireshark/wireshark_1.12.0-rc2.bb new file mode 100644 index 0000000..5542231 --- /dev/null +++ b/meta-openembedded/meta-networking/recipes-support/wireshark/wireshark_1.12.0-rc2.bb @@ -0,0 +1,41 @@ +DESCRIPTION = "wireshark - a popular network protocol analyzer" +HOMEPAGE = "http://www.wireshark.org" +SECTION = "network" +LICENSE = "GPL-2.0" + +DEPENDS = "perl-native libpcap pcre expat glib-2.0 libsmi" + +inherit autotools + +ARM_INSTRUCTION_SET = "arm" + +# Works with either gtk+ or gtk3. +WHICH_GTK = "gtk3" + +PACKAGECONFIG ??= "gnutls gcrypt" +PACKAGECONFIG += " ${@bb.utils.contains("DISTRO_FEATURES", "x11", "${WHICH_GTK} graphics", "", d)}" +PACKAGECONFIG += " ${@bb.utils.contains("DISTRO_FEATURES", "ipv6", "ipv6", "", d)}" + +PACKAGECONFIG[gtk2] = "--with-gtk2=yes, --with-gtk2=no, gtk+" +PACKAGECONFIG[gtk3] = "--with-gtk3=yes, --with-gtk3=no, gtk+3" +PACKAGECONFIG[graphics] = "--enable-wireshark, --disable-wireshark," +PACKAGECONFIG[ipv6] = "--enable-ipv6, --disable-ipv6," +PACKAGECONFIG[gnutls] = "--with-gnutls=yes, --with-gnutls=no, gnutls" +PACKAGECONFIG[gcrypt] = "--with-gcrypt=yes, --with-gcrypt=no, libgcrypt" + +EXTRA_OECONF = "--with-qt=no --enable-usr-local=no -enable-tshark" + +LIC_FILES_CHKSUM = "file://README.linux;md5=631e077455b7972172eb149195e065b0" +SRC_URI = "http://wiresharkdownloads.riverbed.com/wireshark/src/wireshark-1.12.0-rc2.tar.bz2 " + +SRC_URI[md5sum] = "dc1149073066a29f91116c168558262e" +SRC_URI[sha256sum]= "31009bb450126e9b12808267419f31016d14e6fde7b5e39c85ad37459908cffb" + +do_configure_prepend() { + # force to use fallback + sed -i -e '/^glib_prefix/s/=.*$/=""/' ${S}/aclocal-flags +} + +ALLOW_EMPTY_${PN} = "1" +INHIBIT_PACKAGE_DEBUG_SPLIT = "1" + -- 2.7.4