1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-21 00:25:50 +00:00

Converted to OPTIONS and StageDir

This commit is contained in:
Soeren Straarup 2014-06-26 15:55:22 +00:00
parent 83c60f892f
commit 020fb6c23f
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=359381

View File

@ -12,26 +12,29 @@ COMMENT= procmail spam filter written in ML using Bayesian classification
BUILD_DEPENDS= ocaml:${PORTSDIR}/lang/ocaml
MAN1= spamoracle.1
MAN5= spamoracle.conf.5
PLIST_FILES= bin/spamoracle
.ifndef(NOPORTDOCS)
PLIST_FILES+= man/man1/spamoracle.1.gz
PLIST_FILES+= man/man5/spamoracle.conf.5.gz
OPTIONS_DEFINE= DOCS
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MDOCS}
PORTDOCS= Changes README
.endif
NO_STAGE= yes
do-configure:
@${REINPLACE_CMD} -E -e 's|^(CPP=)gcc[[:space:]]+-E|\1${CPP}|' \
-e 's|^(MANDIR=).*$$|\1${MANPREFIX}/man|' \
-e 's|^(BINDIR=).*$$|\1${PREFIX}/bin|' \
-e 's|^(MANDIR=).*$$|\1${STAGEDIR}${MANPREFIX}/man|' \
-e 's|^(BINDIR=).*$$|\1${STAGEDIR}${PREFIX}/bin|' \
${WRKSRC}/Makefile
post-install:
.ifndef(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
.if ${PORT_OPTIONS:MDOCS}
@${MKDIR} ${STAGEDIR}${DOCSDIR}
.for file in ${PORTDOCS}
@${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR}
@${INSTALL_DATA} ${WRKSRC}/${file} ${STAGEDIR}${DOCSDIR}/
.endfor
.endif