freebsd-ports/net/arpwatch-devel/Makefile
Neil Blakey-Milner fe5a0493bd arpwatch package will now install an arp.dat file, meaning arpwatch from
the package will work by default.

Additionally, setting arpwatch_interfaces in the rc.conf system will
allow you to specify which interfaces arpwatches will run on.  By
default (ie, variable empty or not set), it will run on the first
non-local interface it finds.

Approved by:	brian (thanks!)
2001-08-23 14:45:02 +00:00

38 lines
1,023 B
Makefile

# New ports collection makefile for: arpwatch
# Date created: March 24 1997
# Whom: Brian Somers <brian@Awfulhak.org>
#
# $FreeBSD$
#
PORTNAME= arpwatch
PORTVERSION= 2.1.a11
PORTREVISION= 1
CATEGORIES= net
MASTER_SITES= http://www.Awfulhak.org/arpwatch/ \
ftp://ftp.ee.lbl.gov/
DISTNAME= arpwatch-2.1a11
MAINTAINER= brian@Awfulhak.org
GNU_CONFIGURE= yes
HAS_CONFIGURE= yes
CONFIGURE_ARGS= --quiet
INSTALL_TARGET= install install-man
MAN8= arpwatch.8 arpsnmp.8
post-install:
if [ ! -d ${PREFIX}/arpwatch ]; then \
${MKDIR} ${PREFIX}/arpwatch; \
${CHMOD} 775 ${PREFIX}/arpwatch; \
${CHOWN} root:operator ${PREFIX}/arpwatch; \
fi
${TOUCH} ${PREFIX}/arpwatch/arp.dat
${CHMOD} 644 ${PREFIX}/arpwatch/arp.dat
for file in ethercodes.dat d.awk e.awk p.awk; do \
${INSTALL_DATA} ${WRKSRC}/$$file ${PREFIX}/arpwatch/.; \
done
${INSTALL_SCRIPT} ${WRKSRC}/arp2ethers ${PREFIX}/arpwatch/.
${INSTALL_SCRIPT} ${FILESDIR}/arpwatch.sh ${PREFIX}/etc/rc.d/.
.include <bsd.port.mk>