1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-03 01:23:49 +00:00
freebsd-ports/sysutils/pfstat/Makefile
Sergey A. Osokin 6c4664044b Ignore for OSVERSION < 500000, silence for REINPLACE_CMD.
Approved by:	maintainer
2003-10-13 14:41:27 +00:00

51 lines
1.1 KiB
Makefile

# New ports collection makefile for: pfstat
# Date created: 10 October 2003
# Whom: Max Laier <max@love2party.net>
#
# $FreeBSD$
#
PORTNAME= pfstat
PORTVERSION= 1.7
CATEGORIES= sysutils net
MASTER_SITES= http://www.benzedrine.cx/
DISTNAME= ${PORTNAME}-${PORTVERSION}
MAINTAINER= max@love2party.net
COMMENT= Utility to render grafical statistics for pf
BUILD_DEPENDS= ${LOCALBASE}/include/pf/net/pfvar.h:${PORTSDIR}/security/pf
RUN_DEPENDS= ${LOCALBASE}/modules/pf.ko:${PORTSDIR}/security/pf
.if defined(WITH_GD1)
LIB_DEPENDS= gd1.2:${PORTSDIR}/graphics/gd1
CFLAGS+= -I${LOCALBASE}/include/gd
MAKE_ARGS= "LD_GD=gd1"
.else
LIB_DEPENDS= gd.4:${PORTSDIR}/graphics/gd
MAKE_ARGS= "LD_GD=gd"
.endif
USE_REINPLACE= yes
MAN8= pfstat.8
MANCOMPRESSED= no
CFLAGS+= -I${LOCALBASE}/include/pf
.include <bsd.port.pre.mk>
.if ${OSVERSION} < 500000
IGNORE= "Only for 5.0 and above"
.endif
post-patch:
@${REINPLACE_CMD} -e 's|-lgd|-l$${LD_GD}|; s| -lttf||' \
${WRKSRC}/Makefile
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/pfstat ${PREFIX}/bin
${INSTALL_MAN} ${WRKSRC}/pfstat.8 ${PREFIX}/man/man8
.include <bsd.port.post.mk>