freebsd-ports/www/mod_blowchunks/Makefile
Mario Sergio Fujikawa Ferreira f0a1969d34 o Rollback PORTCOMMENT modifications while this feature's implementation
is better studied
o Turn PORTCOMMENT variable in Makefile back into pkg-comment files

Approved by:	kris (portmgr hat),
		portmgr, re (silence)
2002-11-10 16:48:51 +00:00

49 lines
1.4 KiB
Makefile

# New ports collection makefile for: mod_blowchunks
# Date created: 23 June 2002
# Whom: Anders Nordby <anders@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= mod_blowchunks
PORTVERSION= 1.3
CATEGORIES= www
MASTER_SITES= ftp://ftp.nuug.no/pub/anders/distfiles/ \
http://atreides.freenix.no/~anders/
EXTRACT_SUFX= .c
MAINTAINER= ports@FreeBSD.org
BUILD_DEPENDS= ${APXS}:${APACHE_PORT}
RUN_DEPENDS= ${APXS}:${APACHE_PORT}
NO_WRKSUBDIR= YES
APXS?= ${LOCALBASE}/sbin/apxs
APACHE_PORT?= ${PORTSDIR}/www/apache13
APXSFLAGS= -DTRUE=1 -DFALSE=0
.if !defined(WITHOUT_BLOWCHUNK_LOG)
APXSFLAGS+= -DLOG_BLOWCHUNK
.endif
do-extract:
@${MKDIR} ${WRKDIR}
@${CP} -p ${DISTDIR}/${DISTFILES} ${WRKDIR}
do-build:
.if !defined(WITHOUT_BLOWCHUNK_LOG)
@${ECHO} "================================================================================"
@${ECHO} "If you do not want to log chunked requests, rebuild with WITHOUT_BLOWCHUNK_LOG"
@${ECHO} "defined."
@${ECHO} "================================================================================"
.endif
cd ${WRKSRC} && ${MV} ${PKGNAME}.c ${PORTNAME}.c && \
${APXS} ${APXSFLAGS} -c ${PORTNAME}.c
do-install:
cd ${WRKSRC} && ${APXS} -A -i ${PORTNAME}.so
@${ECHO} "================================================================================"
@${ECHO} "Enable mod_blowchunks in Apache's config manually."
@${ECHO} "================================================================================"
.include <bsd.port.mk>