From 709c1865ed4ecc99d0c07bdbc262a03cf6ee1fe3 Mon Sep 17 00:00:00 2001 From: roberto Date: Thu, 18 Jul 2002 12:55:14 +0000 Subject: Alarm Pinger (apinger) is a little tool which monitors various IP devices by simple ICMP echo requests. Unlike most Perl or shell script tools, it does not spawn processes or use much CPU time, and is ideal for when one wants continuous monitoring and fast response upon target failure. It is written in C and supports both IPv4 and IPv6. PR: ports/40688 Submitted by: Michael L. Hostbaek (mich@freebsdcluster.org) --- net/apinger/Makefile | 37 +++++++++++++++++++++++++++++++++++++ net/apinger/distinfo | 1 + net/apinger/pkg-comment | 1 + net/apinger/pkg-descr | 12 ++++++++++++ net/apinger/pkg-plist | 6 ++++++ 5 files changed, 57 insertions(+) create mode 100644 net/apinger/Makefile create mode 100644 net/apinger/distinfo create mode 100644 net/apinger/pkg-comment create mode 100644 net/apinger/pkg-descr create mode 100644 net/apinger/pkg-plist (limited to 'net/apinger') diff --git a/net/apinger/Makefile b/net/apinger/Makefile new file mode 100644 index 0000000..067380a --- /dev/null +++ b/net/apinger/Makefile @@ -0,0 +1,37 @@ +# ex:ts=8 +# Ports collection makefile for: apinger +# Date created: Tue Jul 17, 2002 +# Whom: Michael L. Hostbaek (mich@freebsdcluster.org) +# +# $FreeBSD$ +# + +PORTNAME= apinger +PORTVERSION= 0.2 +CATEGORIES= net +MASTER_SITES= http://www.bnet.pl/~jajcus/apinger/ \ + ${MASTER_SITE_LOCAL} +MASTER_SITE_SUBDIR= ${PORTNAME} + +MAINTAINER= mich@freebsdcluster.org + +GNU_CONFIGURE= yes + +DOCSDIR?= ${PREFIX}/share/doc/${PORTNAME} + +post-install: + ${INSTALL_DATA} ${WRKSRC}/src/apinger.conf ${PREFIX}/etc/ +.if !defined(BATCH) + @${ECHO} "" + @${ECHO} "###############################################################################" + @${ECHO} "# Please edit ${PREFIX}/etc/apinger.conf to your needs. #" + @${ECHO} "###############################################################################" +.endif + +.if !defined(NOPORTDOCS) + ${MKDIR} ${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}/README + ${INSTALL_DATA} ${WRKSRC}/NEWS ${DOCSDIR}/NEWS + ${INSTALL_DATA} ${WRKSRC}/AUTHORS ${DOCSDIR}/AUTHORS +.endif +.include diff --git a/net/apinger/distinfo b/net/apinger/distinfo new file mode 100644 index 0000000..aaba0f1 --- /dev/null +++ b/net/apinger/distinfo @@ -0,0 +1 @@ +MD5 (apinger-0.2.tar.gz) = 4f8bca345c0c198b29e82252b9cca04d diff --git a/net/apinger/pkg-comment b/net/apinger/pkg-comment new file mode 100644 index 0000000..aa173bc --- /dev/null +++ b/net/apinger/pkg-comment @@ -0,0 +1 @@ +An IP device monitoring tool diff --git a/net/apinger/pkg-descr b/net/apinger/pkg-descr new file mode 100644 index 0000000..0d0a4f2 --- /dev/null +++ b/net/apinger/pkg-descr @@ -0,0 +1,12 @@ +Alarm Pinger (apinger) is a little tool which monitors various IP +devices by simple ICMP echo requests. Unlike most Perl or shell +script tools, it does not spawn processes or use much CPU time, +and is ideal for when one wants continuous monitoring and fast +response upon target failure. It is written in C and supports both +IPv4 and IPv6. + +AUTHOR: Jacek Konieczny +WWW: http://www.bnet.pl/~jajcus/apinger/ + + - Michael L. Hostbaek + mich@freebsdcluster.org diff --git a/net/apinger/pkg-plist b/net/apinger/pkg-plist new file mode 100644 index 0000000..b927082 --- /dev/null +++ b/net/apinger/pkg-plist @@ -0,0 +1,6 @@ +sbin/apinger +etc/apinger.conf +share/doc/apinger/README +share/doc/apinger/NEWS +share/doc/apinger/AUTHORS +@dirrm share/doc/apinger -- cgit v1.1