fping_3.5.bb 1.1 KB

12345678910111213141516171819202122232425
  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. SECTION = "net"
  11. LICENSE = "BSD"
  12. LIC_FILES_CHKSUM = "file://COPYING;md5=09d77789fe32be35acde9637a5ee39b1"
  13. SRC_URI = "http://www.fping.org/dist/fping-${PV}.tar.gz"
  14. SRC_URI[md5sum] = "2e17cb655aa4eb59b5a4a38a89e746ed"
  15. SRC_URI[sha256sum] = "09b8960e235341bae6000085d38106357eae656a79e0119bd27e816c9003656a"
  16. S = "${WORKDIR}/fping-${PV}"
  17. inherit autotools
  18. EXTRA_OECONF = "--enable-ipv4"
  19. PACKAGECONFIG ?= "${@bb.utils.filter('DISTRO_FEATURES', 'ipv6', d)}"
  20. PACKAGECONFIG[ipv6] = "--enable-ipv6,--disable-ipv6,"