1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-02 01:20:54 +00:00
freebsd-ports/net/iplog/Makefile

52 lines
1.5 KiB
Makefile
Raw Normal View History

1999-10-09 16:40:11 +00: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 13:28:59 +00:00
COMMENT= TCP/IP traffic logging tool
1999-10-09 16:40:11 +00:00
USE_GMAKE= yes
GNU_CONFIGURE= yes
CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}"
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 16:40:11 +00: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 16:40:11 +00: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 16:40:11 +00:00
.include <bsd.port.post.mk>