- Switch to options helpers
This commit is contained in:
parent
4d0265e987
commit
525fe0bc74
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=437276
@ -27,42 +27,11 @@ OPTIONS_DEFINE= RFC_RECURSION LOGFILE_STATS DEBUG DOCS EXAMPLES
|
||||
RFC_RECURSION_DESC= Change SPF recursion to 20 (as per RFC)
|
||||
LOGFILE_STATS_DESC= Enables logfile stats
|
||||
|
||||
.include <bsd.port.options.mk>
|
||||
|
||||
.if ${PORT_OPTIONS:MRFC_RECURSION}
|
||||
CONFIGURE_ARGS+= --enable-rfc-recursion
|
||||
.endif
|
||||
|
||||
.if ${PORT_OPTIONS:MLOGFILE_STATS}
|
||||
CONFIGURE_ARGS+= --enable-logfile-stats
|
||||
.endif
|
||||
|
||||
.if ${PORT_OPTIONS:MDEBUG}
|
||||
CONFIGURE_ARGS+= --enable-debug
|
||||
.endif
|
||||
RFC_RECURSION_CONFIGURE_ON= --enable-rfc-recursion
|
||||
LOGFILE_STATS_CONFIGURE_ON= --enable-logfile-stats
|
||||
DEBUG_CONFIGURE_ON= --enable-debug
|
||||
|
||||
post-install:
|
||||
.if ${PORT_OPTIONS:MDOCS}
|
||||
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
||||
@${FIND} ${WRKSRC}/docs -type d -name CVS | ${XARGS} ${RM} -r
|
||||
.for i in docs docs/API docs/API/doxygen docs/API/doxygen/html docs/RFC docs/qmail \
|
||||
docs/qmail/1.03 docs/qmail/1.04 docs/qmail/1.05 docs/spfqtool docs/Postfix \
|
||||
docs/Postfix/2.1.x docs/Sendmail docs/Sendmail/8.12.x docs/Sendmail/8.13.x \
|
||||
docs/Courier-MTA docs/history
|
||||
@${MKDIR} ${STAGEDIR}${DOCSDIR}/${i}
|
||||
@for f in `${FIND} ${WRKSRC}/${i} ! -type d -maxdepth 1`; do \
|
||||
${INSTALL_DATA} $${f} ${STAGEDIR}${DOCSDIR}/${i}; \
|
||||
done
|
||||
.endfor
|
||||
.endif
|
||||
@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
|
||||
@${FIND} ${WRKSRC}/examples -type d -name CVS | ${XARGS} ${RM} -r
|
||||
.for i in examples/qmail examples/qmail/control examples/Sendmail
|
||||
@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}/${i}
|
||||
@for f in `${FIND} ${WRKSRC}/${i} ! -type d -maxdepth 1`; do \
|
||||
${INSTALL_DATA} $${f} ${STAGEDIR}${EXAMPLESDIR}/${i}; \
|
||||
done
|
||||
.endfor
|
||||
@${MKDIR} ${STAGEDIR}${DATADIR}
|
||||
@${FIND} ${WRKSRC}/patches -type d -name CVS | ${XARGS} ${RM} -r
|
||||
.for i in patches patches/qmail patches/qmail/1.03 patches/qmail/1.05 patches/Postfix \
|
||||
@ -74,4 +43,27 @@ post-install:
|
||||
done
|
||||
.endfor
|
||||
|
||||
post-install-EXAMPLES-on:
|
||||
@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
|
||||
@${FIND} ${WRKSRC}/examples -type d -name CVS | ${XARGS} ${RM} -r
|
||||
.for i in examples/qmail examples/qmail/control examples/Sendmail
|
||||
@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}/${i}
|
||||
@for f in `${FIND} ${WRKSRC}/${i} ! -type d -maxdepth 1`; do \
|
||||
${INSTALL_DATA} $${f} ${STAGEDIR}${EXAMPLESDIR}/${i}; \
|
||||
done
|
||||
.endfor
|
||||
|
||||
post-install-DOCS-on:
|
||||
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
||||
@${FIND} ${WRKSRC}/docs -type d -name CVS | ${XARGS} ${RM} -r
|
||||
.for i in docs docs/API docs/API/doxygen docs/API/doxygen/html docs/RFC docs/qmail \
|
||||
docs/qmail/1.03 docs/qmail/1.04 docs/qmail/1.05 docs/spfqtool docs/Postfix \
|
||||
docs/Postfix/2.1.x docs/Sendmail docs/Sendmail/8.12.x docs/Sendmail/8.13.x \
|
||||
docs/Courier-MTA docs/history
|
||||
@${MKDIR} ${STAGEDIR}${DOCSDIR}/${i}
|
||||
@for f in `${FIND} ${WRKSRC}/${i} ! -type d -maxdepth 1`; do \
|
||||
${INSTALL_DATA} $${f} ${STAGEDIR}${DOCSDIR}/${i}; \
|
||||
done
|
||||
.endfor
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
Loading…
Reference in New Issue
Block a user