freebsd-ports/www/junkbuster/Makefile

66 lines
2 KiB
Makefile

# New ports collection makefile for: junkbuster
# Date created: 2 May 1998
# Whom: Ian Struble <ian@broken.net>
#
# $FreeBSD$
# You need to delete the old distfile if you are upgrading, as the tar ball
# for ijb has not been changing names between minor revisions(ie 2.0->2.0.1).
# I have contacted the author about this though so we may see something new
# in the next revision.
PORTNAME= junkbuster
PORTVERSION= 2.0.2
PORTREVISION= 2
CATEGORIES= www
MASTER_SITES= http://server44.hypermart.net/f2org/ \
http://f2.org/download/ \
http://www.junkbusters.com/ht/en/
DISTNAME= ijb-zlib-10
EXTRACT_SUFX= .tgz
MAINTAINER= ports@FreeBSD.org
COMMENT= An HTTP proxy server that eliminates ads
FORBIDDEN= http://vuxml.FreeBSD.org/97edf5ab-b319-11d9-837d-000e0c2e438a.html
DEPRECATED= ${FORBIDDEN}
EXPIRATION_DATE=2005-05-23
USE_REINPLACE= yes
ALL_TARGET= # yes, an empty target.
JDIR= ${PREFIX}/etc/junkbuster
MAN1= junkbuster.1
.include <bsd.port.pre.mk>
.if ( ${OSVERSION} >= 500000 )
GNUREGEXP= 's:gnu_regex.h:gnu/regex.h:'
.else
GNUREGEXP= 's:gnu_regex.h:gnuregex.h:'
.endif
post-patch:
@${REINPLACE_CMD} -e "s:`/usr/bin/printf '\r'`::" ${WRKSRC}/*
@${REINPLACE_CMD} -e ${GNUREGEXP} ${WRKSRC}/*.c
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/junkbuster ${PREFIX}/sbin/junkbuster
${MKDIR} -m 755 ${JDIR}
${INSTALL_DATA} ${WRKSRC}/junkbstr.ini ${JDIR}/configfile.sample
${INSTALL_DATA} ${WRKSRC}/sblock.ini ${JDIR}/blockfile.sample
${INSTALL_DATA} ${WRKSRC}/saclfile.ini ${JDIR}/aclfile.sample
${INSTALL_DATA} ${WRKSRC}/scookie.ini ${JDIR}/cookiefile.sample
${INSTALL_DATA} ${WRKSRC}/sforward.ini ${JDIR}/forwardfile.sample
${INSTALL_DATA} ${WRKSRC}/strust.ini ${JDIR}/trustfile.sample
$(INSTALL_MAN) ${WRKSRC}/junkbuster.1 $(PREFIX)/man/man1/
# Create the startup script. JB will run as user nobody.
@${SED} 's|%%JDIR%%|${JDIR}|g ; s|%%PREFIX%%|${PREFIX}|g' \
${FILESDIR}/junkbuster.sh.in > ${WRKDIR}/junkbuster.sh
${INSTALL_SCRIPT} ${WRKDIR}/junkbuster.sh \
${PREFIX}/etc/rc.d/junkbuster.sh
post-install:
@${CAT} ${PKGMESSAGE}
.include <bsd.port.post.mk>