freebsd-ports/www/mod_extract_forwarded/Makefile
Jimmy Olgeni 96a38c7c3a Remove indefinite articles and trailing periods from COMMENT, plus
minor COMMENT typos and surrounding whitespace fixes. A few Makefiles
where not included as they contain Latin-1 characters that break
the Phabricator workflow. Category W.

CR:		D510
Approved by:	portmgr (bapt)
2014-08-06 09:11:57 +00:00

44 lines
1.1 KiB
Makefile

# Created by: Anders Nordby <anders@fix.no>
# $FreeBSD$
PORTNAME= mod_extract_forwarded
PORTVERSION= 2.0.2
PORTREVISION= 4
CATEGORIES= www
MASTER_SITES= http://www.openinfo.co.uk/apache/
DISTNAME= extract_forwarded-${DISTVERSION}
MAINTAINER= kuriyama@FreeBSD.org
COMMENT= Apache module that can make proxied requests appear with client IP
OPTIONS_DEFINE= YOSHFUJI
YOSHFUJI_DESC= yoshfuji patch (support IPv6 addr in config, etc)
#OPTIONS_DEFAULT= YOSHFUJI
USE_APACHE= 22
WRKSRC= ${WRKDIR}/extract_forwarded
PORTDOCS= INSTALL README
PATCH_STRIP= -p1
AP_FAST_BUILD= yes
AP_GENPLIST= yes
# Workaround for UNIQUENAME v.s. OptionsNG problem.
# http://lists.freebsd.org/pipermail/freebsd-ports/2012-June/075466.html
UNIQUENAME= ap22-${PORTNAME}
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MYOSHFUJI}
EXTRA_PATCHES= ${FILESDIR}/extra-patch-yoshfuji
.else
EXTRA_PATCHES= ${FILESDIR}/extra-patch-mod_extract_forwarded.c
.endif
post-install:
${MKDIR} ${STAGEDIR}${DOCSDIR}/
.for f in ${PORTDOCS}
${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${DOCSDIR}/
.endfor
.include <bsd.port.mk>