freebsd-ports/net-mgmt/arpwatch/Makefile
Pav Lucistnik 4aeb506487 - Don't overwrite arpwatch_interfaces on reboot when set from rc.conf
PR:		ports/102509
Submitted by:	Jordan Gordeev <jgordeev@dir.bg>
Approved by:	Thomas Abthorpe <thomasa@tbaytel.net> (maintainer)
2006-08-28 16:30:05 +00:00

47 lines
1.2 KiB
Makefile

# New ports collection makefile for: arpwatch
# Date created: March 24 1997
# Whom: Brian Somers <brian@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= arpwatch
PORTVERSION= 2.1.a15
PORTREVISION= 2
CATEGORIES= net-mgmt
MASTER_SITES= ftp://ftp.ee.lbl.gov/ \
http://www.mirrors.wiretapped.net/security/network-monitoring/arpwatch/ \
ftp://ftp.riken.go.jp/pub/net/lbl/ \
http://www.goodking.ca/pub/files/
DISTNAME= ${PORTNAME}-${PORTVERSION:C/\.([^\.]*)$/\1/}
MAINTAINER= thomas@goodking.ca
COMMENT= Monitor arp & rarp requests
CONFLICTS= arpwatch-devel-2.*
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --quiet
INSTALL_TARGET= install install-man
MAN8= arpwatch.8 arpsnmp.8
USE_RC_SUBR= arpwatch.sh
.ifdef ARPDIR
MAKE_ARGS= ARPDIR=${ARPDIR}
.endif
post-install:
if [ ! -d ${PREFIX}/arpwatch ]; then \
${MKDIR} ${PREFIX}/arpwatch; \
${CHMOD} 755 ${PREFIX}/arpwatch; \
${CHOWN} root:operator ${PREFIX}/arpwatch; \
fi
${TOUCH} ${PREFIX}/arpwatch/arp.dat
${CHMOD} 644 ${PREFIX}/arpwatch/arp.dat
for files in ethercodes.dat d.awk e.awk p.awk; do \
${INSTALL_DATA} ${WRKSRC}/$$files ${PREFIX}/arpwatch; \
done
${INSTALL_SCRIPT} ${WRKSRC}/arp2ethers ${PREFIX}/arpwatch
.include <bsd.port.mk>