1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-18 19:49:40 +00:00

Convert to new options framework

Feature safe:	yes
This commit is contained in:
Baptiste Daroussin 2012-11-21 23:23:25 +00:00
parent c39c56c6cd
commit 875b27ddf2
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=307631

View File

@ -1,5 +1,4 @@
# Created by: Bill Fumerola <billf@chc-chimes.com>
#
# $FreeBSD$
PORTNAME= htdig
@ -31,11 +30,12 @@ MAN1= htdig.1 htdig-pdfparser.1 htdump.1 htfuzzy.1 htload.1 \
MAN8= htdigconfig.8
OPTIONS= APACHE "Include ${APACHE_PORT} as a dependency" on
OPTIONS_DEFINE= APACHE DOCS
OPTIONS_DEFAULT= APACHE
.include <bsd.port.pre.mk>
.include <bsd.port.options.mk>
.if !defined(WITHOUT_APACHE)
.if ${PORT_OPTIONS:MAPACHE}
USE_APACHE= 22+
CONFIGURE_ARGS+= --with-apache=${LOCALBASE}/sbin
.include "${PORTSDIR}/Mk/bsd.apache.mk"
@ -55,7 +55,7 @@ post-install:
.if exists(${PREFIX}/etc/htdig/htdig.conf.old)
${MV} ${PREFIX}/etc/htdig/htdig.conf.old ${PREFIX}/etc/htdig/htdig.conf
.endif
.if !defined(NOPORTDOCS)
.if ${PORT_OPTIONS:MDOCS}
@${MKDIR} ${DOCSDIR}/html
.for f in ChangeLog ChangeLog.0 README STATUS
@${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR}/
@ -65,4 +65,4 @@ post-install:
.endfor
.endif
.include <bsd.port.post.mk>
.include <bsd.port.mk>