freebsd-ports/net/iplog/Makefile

51 lines
1.5 KiB
Makefile
Raw Normal View History

1999-10-09 18:40:11 +02:00
# New ports collection makefile for: iplog
# Date created: 4 Oct 1999
# Whom: Dominik Rothert <dr@domix.de>
#
# $FreeBSD$
#
PORTNAME= iplog
PORTVERSION= 2.2.3
PORTREVISION= 3
CATEGORIES= net security
MASTER_SITES= SF/ojnk/${PORTNAME}/${PORTVERSION}
MAINTAINER= udo.schweigert@siemens.com
2003-02-21 14:28:59 +01:00
COMMENT= TCP/IP traffic logging tool
1999-10-09 18:40:11 +02:00
USE_GMAKE= yes
GNU_CONFIGURE= yes
CPPFLAGS+= -I${LOCALBASE}/include ${PTHREAD_CFLAGS}
LDFLAGS+= -L${LOCALBASE}/lib ${PTHREAD_LIBS}
MAN5= iplog.conf.5
MAN8= iplog.8
USE_RC_SUBR= iplog
SUB_FILES= pkg-message
1999-10-09 18:40:11 +02:00
.include <bsd.port.pre.mk>
post-patch:
.for FILE in example-iplog.conf iplog.8 iplog.conf.5 src/iplog.h
@${REINPLACE_CMD} -e "s|%%PREFIX%%|${PREFIX}|g" ${WRKSRC}/${FILE}
.endfor
@${REINPLACE_CMD} -e 's|-pthread||g' ${WRKSRC}/configure
1999-10-09 18:40:11 +02:00
post-install:
${INSTALL_DATA} ${WRKSRC}/example-iplog.conf ${PREFIX}/etc
.if !exists(${PREFIX}/etc/iplog.conf)
${INSTALL_DATA} ${WRKSRC}/example-iplog.conf ${PREFIX}/etc/iplog.conf
.endif
.if exists(${PREFIX}/etc/iplog.rules)
@${ECHO_MSG}
@${ECHO_MSG} "============================================================================"
@${ECHO_MSG} "Hint: iplog changed its configuration file from ${PREFIX}/etc/iplog.rules"
@${ECHO_MSG} " to ${PREFIX}/etc/iplog.conf"
@${ECHO_MSG}
@${ECHO_MSG} "See ${PREFIX}/etc/example-iplog.conf for an example"
@${ECHO_MSG} "============================================================================"
.endif
@${MKDIR} /var/run/iplog
1999-10-09 18:40:11 +02:00
.include <bsd.port.post.mk>