diff options
Diffstat (limited to 'meta-networking')
3 files changed, 63 insertions, 0 deletions
diff --git a/meta-networking/recipes-core/packagegroups/packagegroup-meta-networking.bb b/meta-networking/recipes-core/packagegroups/packagegroup-meta-networking.bb index a539dfeb6c..19ab1fa1a7 100644 --- a/meta-networking/recipes-core/packagegroups/packagegroup-meta-networking.bb +++ b/meta-networking/recipes-core/packagegroups/packagegroup-meta-networking.bb | |||
| @@ -216,6 +216,7 @@ RDEPENDS:packagegroup-meta-networking-support = "\ | |||
| 216 | ypbind-mt \ | 216 | ypbind-mt \ |
| 217 | yp-tools \ | 217 | yp-tools \ |
| 218 | mtr \ | 218 | mtr \ |
| 219 | netsniff-ng \ | ||
| 219 | ntp ntpdate sntp ntpdc ntpq ntp-tickadj ntp-utils \ | 220 | ntp ntpdate sntp ntpdc ntpq ntp-tickadj ntp-utils \ |
| 220 | ${@bb.utils.contains("DISTRO_FEATURES", "x11", "ntpsec", "", d)} \ | 221 | ${@bb.utils.contains("DISTRO_FEATURES", "x11", "ntpsec", "", d)} \ |
| 221 | nbd-client \ | 222 | nbd-client \ |
diff --git a/meta-networking/recipes-support/netsniff-ng/files/0001-Cmds-automatically-create-folder.patch b/meta-networking/recipes-support/netsniff-ng/files/0001-Cmds-automatically-create-folder.patch new file mode 100644 index 0000000000..e535aedf51 --- /dev/null +++ b/meta-networking/recipes-support/netsniff-ng/files/0001-Cmds-automatically-create-folder.patch | |||
| @@ -0,0 +1,26 @@ | |||
| 1 | From 7c00d75d16da18a9998fc4cca28d3c953dd54ceb Mon Sep 17 00:00:00 2001 | ||
| 2 | From: =?UTF-8?q?Cl=C3=A9ment=20P=C3=A9ron?= <peron.clem@gmail.com> | ||
| 3 | Date: Mon, 14 Feb 2022 18:37:22 +0100 | ||
| 4 | Subject: [PATCH] Cmds: automatically create folder | ||
| 5 | |||
| 6 | --- | ||
| 7 | Cmds | 3 ++- | ||
| 8 | 1 file changed, 2 insertions(+), 1 deletion(-) | ||
| 9 | |||
| 10 | diff --git a/Cmds b/Cmds | ||
| 11 | index e590b38..3df23b8 100644 | ||
| 12 | --- a/Cmds | ||
| 13 | +++ b/Cmds | ||
| 14 | @@ -44,7 +44,8 @@ ifeq ("$(origin PREFIX)", "$(filter $(origin PREFIX), file command line)") | ||
| 15 | INSTX = echo -e " INST\t$(1)" && install -d $(2) && \ | ||
| 16 | install -C $(1) $(2)/$(shell basename $(1)) | ||
| 17 | else | ||
| 18 | - INSTX = echo -e " INST\t$(1)" && install -C $(1) $(2)/$(shell basename $(1)) | ||
| 19 | + INSTX = echo -e " INST\t$(1)" && install -d $(2) && \ | ||
| 20 | + install -C $(1) $(2)/$(shell basename $(1)) | ||
| 21 | endif | ||
| 22 | |||
| 23 | MKDIR = echo -e " MKDIR\t$(1)" && mkdir -p $(1) | ||
| 24 | -- | ||
| 25 | 2.32.0 | ||
| 26 | |||
diff --git a/meta-networking/recipes-support/netsniff-ng/netsniff-ng_0.6.8.bb b/meta-networking/recipes-support/netsniff-ng/netsniff-ng_0.6.8.bb new file mode 100644 index 0000000000..10e30044e8 --- /dev/null +++ b/meta-networking/recipes-support/netsniff-ng/netsniff-ng_0.6.8.bb | |||
| @@ -0,0 +1,36 @@ | |||
| 1 | DESCRIPTION = "Netsniff-ng is a fast zero-copy analyzer, pcap capturing and replaying tool" | ||
| 2 | HOMEPAGE = "http://netsniff-ng.org" | ||
| 3 | LICENSE = "GPLv2" | ||
| 4 | LIC_FILES_CHKSUM = "file://COPYING;md5=9dd40dfb621eed702c0775577fbb7011" | ||
| 5 | DEPENDS = "libpcap" | ||
| 6 | |||
| 7 | SRCREV = "be3e706f00295024ebc199e70177343fdaebbc9e" | ||
| 8 | SRC_URI = " \ | ||
| 9 | git://github.com/netsniff-ng/netsniff-ng.git;protocol=https;branch=master \ | ||
| 10 | file://0001-Cmds-automatically-create-folder.patch \ | ||
| 11 | " | ||
| 12 | |||
| 13 | S = "${WORKDIR}/git" | ||
| 14 | |||
| 15 | inherit pkgconfig | ||
| 16 | |||
| 17 | EXTRA_OEMAKE += " TERM='' " | ||
| 18 | |||
| 19 | PACKAGECONFIG ??= "" | ||
| 20 | PACKAGECONFIG[zlib] = ",--disable-zlib,zlib," | ||
| 21 | PACKAGECONFIG[libnl] = ",--disable-libnl,libnl," | ||
| 22 | PACKAGECONFIG[geoip] = ",--disable-geoip,geoip," | ||
| 23 | |||
| 24 | do_configure() { | ||
| 25 | ./configure --prefix=${prefix} | ||
| 26 | } | ||
| 27 | |||
| 28 | do_compile() { | ||
| 29 | oe_runmake | ||
| 30 | } | ||
| 31 | |||
| 32 | do_install() { | ||
| 33 | oe_runmake DESTDIR=${D} netsniff-ng_install | ||
| 34 | } | ||
| 35 | |||
| 36 | BBCLASSEXTEND = "native nativesdk" | ||
