diff options
author | Kirill Ponomarev <krion@FreeBSD.org> | 2003-08-10 16:55:12 +0000 |
---|---|---|
committer | Kirill Ponomarev <krion@FreeBSD.org> | 2003-08-10 16:55:12 +0000 |
commit | fbac6a25f8b80696dc41fe4c8ee0e481d6cd3e04 (patch) | |
tree | 5a73a9d423bb2e3eaa013251e1cfd8f2c1cdf86d /www/ffproxy | |
parent | relaydb is a mail header analyzer that builds a database of IP addresses either (diff) |
Add 2 new manpages
Bump PORTREVISION
Pointed by: Niklas Olmes <niklas@noxa.de>
Notes
Notes:
svn path=/head/; revision=86729
Diffstat (limited to 'www/ffproxy')
-rw-r--r-- | www/ffproxy/Makefile | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/www/ffproxy/Makefile b/www/ffproxy/Makefile index f0919e582a6a..127c3de1b5d3 100644 --- a/www/ffproxy/Makefile +++ b/www/ffproxy/Makefile @@ -7,6 +7,7 @@ PORTNAME= ffproxy PORTVERSION= 1.5 +PORTREVISION= 1 CATEGORIES= www MASTER_SITES= http://faith.eu.org/${PORTNAME}/ @@ -15,6 +16,8 @@ COMMENT= Filtering HTTP proxy server USE_REINPLACE= yes +MAN5= ${PORTNAME}.conf.5 +MAN7= ${PORTNAME}.quick.7 MAN8= ${PORTNAME}.8 post-patch: @@ -26,12 +29,17 @@ post-patch: ${WRKSRC}/Makefile ${REINPLACE_CMD} -e \ 's|/etc|${PREFIX}/etc|g' \ - ${WRKSRC}/${PORTNAME}.8 + ${WRKSRC}/${PORTNAME}.8 \ + ${WRKSRC}/${PORTNAME}.conf.5 do-install: ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin ${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.8 \ ${PREFIX}/man/man8 + ${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.conf.5 \ + ${PREFIX}/man/man5 + ${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.quick.7 \ + ${PREFIX}/man/man7 ${INSTALL_DATA} ${WRKSRC}/sample.config \ ${PREFIX}/etc/ffproxy.conf.sample .if !defined(NOPORTDOCS) |