diff options
Diffstat (limited to 'meta-networking/recipes-support/fping/fping_5.3.bb')
-rw-r--r-- | meta-networking/recipes-support/fping/fping_5.3.bb | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/meta-networking/recipes-support/fping/fping_5.3.bb b/meta-networking/recipes-support/fping/fping_5.3.bb new file mode 100644 index 0000000000..5f3ec67cfc --- /dev/null +++ b/meta-networking/recipes-support/fping/fping_5.3.bb | |||
@@ -0,0 +1,27 @@ | |||
1 | SUMMARY = "sends ICMP ECHO_REQUEST packets to network hosts" | ||
2 | DESCRIPTION = "fping is a ping like program which uses the Internet Control \ | ||
3 | Message Protocol (ICMP) echo request to determine if a target host is \ | ||
4 | responding. fping differs from ping in that you can specify any number of \ | ||
5 | targets on the command line, or specify a file containing the lists of \ | ||
6 | targets to ping. Instead of sending to one target until it times out or \ | ||
7 | replies, fping will send out a ping packet and move on to the next target \ | ||
8 | in a round-robin fashion." | ||
9 | HOMEPAGE = "http://www.fping.org/" | ||
10 | BUGTRACKER = "https://github.com/schweikert/fping/issues" | ||
11 | SECTION = "net" | ||
12 | |||
13 | LICENSE = "fping" | ||
14 | NO_GENERIC_LICENSE[fping] = "COPYING" | ||
15 | LIC_FILES_CHKSUM = "file://COPYING;md5=c6170fbadddfcd74f011515291d96901" | ||
16 | |||
17 | SRC_URI = "http://www.fping.org/dist/fping-${PV}.tar.gz" | ||
18 | SRC_URI[sha256sum] = "d57bd0141aea082e3adfc198bfc3db5dfd12a7014c7c2655e97f61cd54901d0e" | ||
19 | |||
20 | S = "${UNPACKDIR}/fping-${PV}" | ||
21 | |||
22 | inherit autotools | ||
23 | |||
24 | EXTRA_OECONF = "--enable-ipv4" | ||
25 | |||
26 | PACKAGECONFIG ?= "${@bb.utils.filter('DISTRO_FEATURES', 'ipv6', d)}" | ||
27 | PACKAGECONFIG[ipv6] = "--enable-ipv6,--disable-ipv6," | ||