freebsd-ports/sysutils/pfstat/Makefile
Max Laier 3a8c08924f Manually export CC and CFLAGS to MAKE_ENV and have __MAKE_CONF point to
/dev/null.  The latter is a problem because the port's Makefile uses the
bsd.*.mk infrastructure.  This works around several problems people were
having when setting CFLAGS[1] in make.conf or CC[2] on the command line.

PR:		ports/122943 (really this time)
Reported-by:	many[1], Frank Fenor[2]
2008-04-28 17:52:10 +00:00

53 lines
1.2 KiB
Makefile

# New ports collection makefile for: pfstat
# Date created: 10 October 2003
# Whom: Max Laier <max@love2party.net>
#
# $FreeBSD$
#
PORTNAME= pfstat
PORTVERSION= 2.2
PORTREVISION= 3
CATEGORIES= sysutils net
MASTER_SITES= http://www.benzedrine.cx/
DISTNAME= ${PORTNAME}-${PORTVERSION}
MAINTAINER= mlaier@FreeBSD.org
COMMENT= Utility to render graphical statistics for pf
LIB_DEPENDS= gd.4:${PORTSDIR}/graphics/gd
MAKE_ARGS= "LD_GD=gd"
MAKE_ENV+= CFLAGS="${CFLAGS}" CC="${CC}" __MAKE_CONF=/dev/null
USE_ICONV= yes
MAN8= pfstat.8 \
pfstatd.8
MANCOMPRESSED= no
PLIST_FILES= bin/pfstat \
bin/pfstatd
.include <bsd.port.pre.mk>
.if ${OSVERSION} < 502106
IGNORE= is only for 5.3 and above
.endif
.if ${OSVERSION} < 700048
EXTRA_PATCHES= ${PATCHDIR}/pre41-patch-pf.c
.endif
post-patch:
@${REINPLACE_CMD} -e 's|-lgd|-l$${LD_GD}|; s| -lttf||' \
${WRKSRC}/Makefile
@${REINPLACE_CMD} -e "s|/etc/|${PREFIX}/etc/|" \
${WRKSRC}/pfstat.[c8]
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/pfstat ${PREFIX}/bin
${INSTALL_PROGRAM} ${WRKSRC}/pfstatd/pfstatd ${PREFIX}/bin
${INSTALL_MAN} ${WRKSRC}/pfstat.8 ${PREFIX}/man/man8
${INSTALL_MAN} ${WRKSRC}/pfstatd/pfstatd.8 ${PREFIX}/man/man8
.include <bsd.port.post.mk>