diff options
Diffstat (limited to 'meta-networking/recipes-support/wireshark/wireshark_2.2.6.bb')
| -rw-r--r-- | meta-networking/recipes-support/wireshark/wireshark_2.2.6.bb | 71 |
1 files changed, 71 insertions, 0 deletions
diff --git a/meta-networking/recipes-support/wireshark/wireshark_2.2.6.bb b/meta-networking/recipes-support/wireshark/wireshark_2.2.6.bb new file mode 100644 index 0000000000..a0b6b8f95e --- /dev/null +++ b/meta-networking/recipes-support/wireshark/wireshark_2.2.6.bb | |||
| @@ -0,0 +1,71 @@ | |||
| 1 | DESCRIPTION = "wireshark - a popular network protocol analyzer" | ||
| 2 | HOMEPAGE = "http://www.wireshark.org" | ||
| 3 | SECTION = "net" | ||
| 4 | LICENSE = "GPL-2.0" | ||
| 5 | LIC_FILES_CHKSUM = "file://README.linux;md5=631e077455b7972172eb149195e065b0" | ||
| 6 | |||
| 7 | DEPENDS = "pcre expat glib-2.0 glib-2.0-native" | ||
| 8 | |||
| 9 | SRC_URI = "https://2.na.dl.wireshark.org/src/all-versions/${BP}.tar.bz2" | ||
| 10 | |||
| 11 | PE = "1" | ||
| 12 | |||
| 13 | SRC_URI[md5sum] = "2cd9a35c2df8c32668c1776784f074df" | ||
| 14 | SRC_URI[sha256sum] = "f627d51eda85f5ae5f5c8c9fc1f6539ffc2a270dd7500dc7f67490a8534ca849" | ||
| 15 | |||
| 16 | inherit autotools pkgconfig perlnative | ||
| 17 | |||
| 18 | ARM_INSTRUCTION_SET = "arm" | ||
| 19 | |||
| 20 | PACKAGECONFIG ?= "libpcap gnutls libnl libcap sbc" | ||
| 21 | PACKAGECONFIG += " ${@bb.utils.contains("DISTRO_FEATURES", "x11", "gtk2 graphics", "", d)}" | ||
| 22 | #PACKAGECONFIG += " ${@bb.utils.contains("DISTRO_FEATURES", "opengl", "gtk3", "", d)}" | ||
| 23 | |||
| 24 | PACKAGECONFIG[libcap] = "--with-libcap=${STAGING_LIBDIR}, --with-libcap=no --enable-pcap-ng-default , libcap" | ||
| 25 | PACKAGECONFIG[libpcap] = "--with-pcap=${STAGING_LIBDIR} --with-pcap-remote, --with-pcap=no --enable-pcap-ng-default , libpcap" | ||
| 26 | PACKAGECONFIG[libsmi] = "--with-libsmi=yes, --with-libsmi=no, libsmi" | ||
| 27 | PACKAGECONFIG[libnl] = "--with-libnl=yes, --with-libnl=no, libnl" | ||
| 28 | PACKAGECONFIG[portaudio] = "--with-portaudio=yes, --with-portaudio=no, portaudio-v19" | ||
| 29 | PACKAGECONFIG[gtk2] = "--with-gtk=2, , gtk+" | ||
| 30 | PACKAGECONFIG[gtk3] = "--with-gtk=3, , gtk+3" | ||
| 31 | PACKAGECONFIG[graphics] = "--enable-wireshark, --with-gtk=no --disable-wireshark," | ||
| 32 | PACKAGECONFIG[gnutls] = "--with-gnutls=yes, --with-gnutls=no, gnutls" | ||
| 33 | PACKAGECONFIG[gcrypt] = "--with-gcrypt=yes, --with-gcrypt=no, libgcrypt" | ||
| 34 | PACKAGECONFIG[ssl] = "--with-ssl=yes, --with-ssl=no, openssl" | ||
| 35 | PACKAGECONFIG[krb5] = "--with-krb5=yes, --with-krb5=no, krb5" | ||
| 36 | PACKAGECONFIG[lua] = "--with-lua=yes, --with-lua=no, lua" | ||
| 37 | PACKAGECONFIG[zlib] = "--with-zlib=yes, --with-zlib=no, zlib" | ||
| 38 | PACKAGECONFIG[geoip] = "--with-geoip=yes, --with-geoip=no, geoip" | ||
| 39 | PACKAGECONFIG[plugins] = "--with-plugins=yes, --with-plugins=no" | ||
| 40 | PACKAGECONFIG[sbc] = "--with-sbc=yes, --with-sbc=no, sbc" | ||
| 41 | |||
| 42 | PACKAGECONFIG[libssh] = "--with-ssh=yes, --with-ssh=no, libssh2" | ||
| 43 | |||
| 44 | |||
| 45 | # these next two options require addional layers | ||
| 46 | PACKAGECONFIG[c-ares] = "--with-c-ares=yes, --with-c-ares=no, c-ares" | ||
| 47 | |||
| 48 | EXTRA_OECONF += "--with-qt=no --enable-tshark --enable-rawshark" | ||
| 49 | |||
| 50 | # Currently wireshark does not install header files | ||
| 51 | do_install_append () { | ||
| 52 | |||
| 53 | install -d ${D}/${includedir}/${BPN} | ||
| 54 | install -d ${D}/${includedir}/${BPN}/epan | ||
| 55 | install -d ${D}/${includedir}/${BPN}/epan/crypt | ||
| 56 | install -d ${D}/${includedir}/${BPN}/epan/dfilter | ||
| 57 | install -d ${D}/${includedir}/${BPN}/epan/dissectors | ||
| 58 | install -d ${D}/${includedir}/${BPN}/epan/ftypes | ||
| 59 | install -d ${D}/${includedir}/${BPN}/epan/wmem | ||
| 60 | |||
| 61 | install config.h ${D}/${includedir}/${BPN} | ||
| 62 | install ${S}/register.h ${D}/${includedir}/${BPN} | ||
| 63 | install -D ${S}/epan/*.h ${D}/${includedir}/${BPN}/epan | ||
| 64 | install -D ${S}/epan/crypt/*.h ${D}/${includedir}/${BPN}/epan/crypt | ||
| 65 | install -D ${S}/epan/dfilter/*.h ${D}/${includedir}/${BPN}/epan/dfilter | ||
| 66 | install -D ${S}/epan/dissectors/*.h ${D}/${includedir}/${BPN}/epan/dissectors | ||
| 67 | install -D ${S}/epan/ftypes/*.h ${D}/${includedir}/${BPN}/epan/ftypes | ||
| 68 | install -D ${S}/epan/wmem/*.h ${D}/${includedir}/${BPN}/epan/wmem | ||
| 69 | } | ||
| 70 | |||
| 71 | FILES_${PN} += "${datadir}*" | ||
