diff options
author | obrien <obrien@FreeBSD.org> | 1997-03-25 17:58:02 +0800 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 1997-03-25 17:58:02 +0800 |
commit | 9193d6bd4350479821be289a4112d607ea56adc4 (patch) | |
tree | 24f96a11dab025c14a385946c65f34207232732b /net/fping/Makefile | |
parent | 24e18e4e51a3e5e7a1db901abe29898b92b8beb1 (diff) | |
download | freebsd-ports-gnome-9193d6bd4350479821be289a4112d607ea56adc4.tar.gz freebsd-ports-gnome-9193d6bd4350479821be289a4112d607ea56adc4.tar.zst freebsd-ports-gnome-9193d6bd4350479821be289a4112d607ea56adc4.zip |
A tool to quickly ping N number of hosts to determine their reachability
without flooding the network.
Diffstat (limited to 'net/fping/Makefile')
-rw-r--r-- | net/fping/Makefile | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/net/fping/Makefile b/net/fping/Makefile new file mode 100644 index 000000000000..8ecdeb798da2 --- /dev/null +++ b/net/fping/Makefile @@ -0,0 +1,34 @@ +# ex:ts=8 +# Ports collection makefile for: foo +# Version required: 2.1 +# Date created: Mon Feb 03, 1997 +# Whom: David O'Brien (obrien@FreeBSD.org) +# +# $Id: Makefile,v 1.2 1997/01/25 18:08:40 obrien Exp $ +# + +DISTNAME= part01 +PKGNAME= fping-1.20 +CATEGORIES= net +MASTER_SITES= ftp://ftp.uu.net/usenet/comp.sources.unix/volume26/fping/ \ + ftp://ftp.digital.com/pub/usenet/comp.sources.unix/volume26/fping/ \ + ftp://ftp.wustl.edu/usenet/comp.sources.unix/volume26/fping/ \ + ftp://ftp.isnet.is/pub/Usenet/Usenet.src/comp.sources.unix/v26/fping/ +EXTRACT_SUFX= .Z + +MAINTAINER= obrien@NUXI.com + +BUILD_DEPENDS= gunshar:${PORTSDIR}/archivers/gshar+gunshar + +DIST_SUBDIR= fping +EXTRACT_CMD= zcat +EXTRACT_BEFORE_ARGS= +EXTRACT_AFTER_ARGS= | gunshar -d ${WRKDIR} +NO_WRKSUBDIR= yes +MAN8= fping.8 + + +post-install: + @strip ${PREFIX}/sbin/fping + +.include <bsd.port.mk> |