mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
146319ce61
* CATEGORIES doens't have ``+'' anymore * manpages should be listed in MAN8 so they get compressed * use ${MKDIR} so parrent dirs get created if nessicary * blank likes around MAINTAINER * PKGNAME isn't needed when PKGNAME is same as DISTNAME
34 lines
923 B
Makefile
34 lines
923 B
Makefile
# New ports collection makefile for: arpwatch
|
|
# Version required: 2.0.1a1
|
|
# Date created: March 24 1997
|
|
# Whom: Brian Somers <brian@awfulhak.demon.co.uk>
|
|
#
|
|
# $Id: Makefile,v 1.1.1.1 1997/03/30 17:19:56 brian Exp $
|
|
#
|
|
|
|
DISTNAME= arpwatch-2.0.1a1
|
|
CATEGORIES= net
|
|
MASTER_SITES= ftp://ftp.ee.lbl.gov/ \
|
|
ftp://ftp.cso.uiuc.edu/pub/security/coast/unix/arpwatch/
|
|
EXTRACT_SUFX= .tar.Z
|
|
|
|
MAINTAINER= brian@awfulhak.demon.co.uk
|
|
|
|
HAS_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --quiet
|
|
MAKE_FLAGS+= CCOPT="-O2 -DPATH_SENDMAIL=\\\"/usr/sbin/sendmail\\\""
|
|
MAN8= arpwatch.8 arpsnmp.8
|
|
|
|
|
|
post-install:
|
|
cd ${WRKSRC}; make install-man
|
|
if [ ! -d ${PREFIX}/arpwatch ]; then \
|
|
${MKDIR} ${PREFIX}/arpwatch; \
|
|
chmod 775 ${PREFIX}/arpwatch; \
|
|
/usr/sbin/chown root.operator ${PREFIX}/arpwatch; \
|
|
fi
|
|
touch ${PREFIX}/arpwatch/arp.dat
|
|
chmod 644 ${PREFIX}/arpwatch/arp.dat
|
|
|
|
.include <bsd.port.mk>
|