diff options
author | bouyer <bouyer> | 1998-04-27 18:06:37 +0000 |
---|---|---|
committer | bouyer <bouyer> | 1998-04-27 18:06:37 +0000 |
commit | dc540f5c30e3808d98c12bda5a33bc7dc30564e1 (patch) | |
tree | e3fb457727cc60b05ff9132be2fff2a01512ff03 /net/arpwatch/Makefile | |
parent | f07908616b40aea4fc3a5731aee8b1ff9b8bdbe6 (diff) | |
download | pkgsrc-dc540f5c30e3808d98c12bda5a33bc7dc30564e1.tar.gz |
arpwatch 2.0.2, an arp activity monitoring tool. Maintain a database
of MAC <-> IP adresses mapping, and warns about changes.
Diffstat (limited to 'net/arpwatch/Makefile')
-rw-r--r-- | net/arpwatch/Makefile | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/net/arpwatch/Makefile b/net/arpwatch/Makefile new file mode 100644 index 00000000000..a2a0de0b35d --- /dev/null +++ b/net/arpwatch/Makefile @@ -0,0 +1,21 @@ +# $NetBSD: Makefile,v 1.1 1998/04/27 18:06:37 bouyer Exp $ +# + +DISTNAME= arpwatch-2.0.2 +CATEGORIES= sysutils +MASTER_SITES= ftp://ftp.ee.lbl.gov/ +EXTRACT_SUFX= .tar.Z + +MAINTAINER= bouyer@netbsd.org + +GNU_CONFIGURE= yes +MAN8= arpwatch.8 arpsnmp.8 + +post-install: + ${INSTALL_MAN} ${WRKSRC}/arpwatch.8 ${PREFIX}/man/man8 + ${INSTALL_MAN} ${WRKSRC}/arpsnmp.8 ${PREFIX}/man/man8 + @/bin/test -e /var/db/arpwatch || /bin/mkdir /var/db/arpwatch + /usr/bin/touch /var/db/arpwatch/arp.dat + ${INSTALL_DATA} ${WRKSRC}/ethercodes.dat ${PREFIX}/etc + +.include "../../mk/bsd.pkg.mk" |