diff options
author | Raphael Kubo da Costa <rakuco@FreeBSD.org> | 2012-09-02 09:58:32 +0000 |
---|---|---|
committer | Raphael Kubo da Costa <rakuco@FreeBSD.org> | 2012-09-02 09:58:32 +0000 |
commit | 9599c9bb41c84d3523979d2c033955d7cdc6ce44 (patch) | |
tree | e496b202508b315293988aaa93791b300bec06fc /finance | |
parent | - Fix compilation error when building trn without NNTP support (diff) |
In devel/gwenhywfar and finance/aqbanking, the documentation installed by
doxygen is massive and shouldn't be installed by default. [1] This was the
behavior prior to the last update, but while converting to OPTIONSng the
logic got lost.
Use the DOXYGEN option instead but we still need to check if DOCS is enabled
since the PORTDOCS macro is being used to generate the plist for the
documentation.
Also, fix typos s/DOC/DOCS/ in devel/gwenhywfar.
Bump PORTREVISION.
[1] Reported by: Jan Henrik Sylvester <me@janh.de>
PR: ports/171238
Submitted by: Jason E. Hale <bsdkaffee@gmail.com> (maintainer)
Notes
Notes:
svn path=/head/; revision=303541
Diffstat (limited to 'finance')
-rw-r--r-- | finance/aqbanking/Makefile | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/finance/aqbanking/Makefile b/finance/aqbanking/Makefile index 351e70a04fc5..16d725e653e6 100644 --- a/finance/aqbanking/Makefile +++ b/finance/aqbanking/Makefile @@ -2,6 +2,7 @@ PORTNAME= aqbanking PORTVERSION= 5.0.25 +PORTREVISION= 1 CATEGORIES= finance MASTER_SITES= http://www.aquamaniac.de/sites/download/download.php?package=03&release=95&file=01&dummy=/ @@ -14,7 +15,7 @@ LICENSE_COMB= dual LIB_DEPENDS= gwenhywfar:${PORTSDIR}/devel/gwenhywfar \ gmp:${PORTSDIR}/math/gmp -OPTIONS_DEFINE= DOCS KTOBLZCHECK PAYPAL +OPTIONS_DEFINE= DOXYGEN KTOBLZCHECK PAYPAL OPTIONS_DEFAULT= KTOBLZCHECK KTOBLZCHECK_DESC= Enable KtoBlzCheck support @@ -41,7 +42,7 @@ GWEN_SHLIB_VER= 60 .include <bsd.port.options.mk> -.if ${PORT_OPTIONS:MDOCS} +.if ${PORT_OPTIONS:MDOCS} && ${PORT_OPTIONS:MDOXYGEN} BUILD_DEPENDS+= doxygen:${PORTSDIR}/devel/doxygen \ dot:${PORTSDIR}/graphics/graphviz CONFIGURE_ARGS+=--enable-full-doc @@ -64,12 +65,12 @@ post-patch: ${WRKSRC}/Makefile.in post-build: -.if ${PORT_OPTIONS:MDOCS} +.if ${PORT_OPTIONS:MDOCS} && ${PORT_OPTIONS:MDOXYGEN} @cd ${WRKSRC} && ${GMAKE} srcdoc .endif post-install: -.if ${PORT_OPTIONS:MDOCS} +.if ${PORT_OPTIONS:MDOCS} && ${PORT_OPTIONS:MDOXYGEN} ${MKDIR} ${DOCSDIR}/apidoc cd ${WRKSRC}/apidoc && \ ${COPYTREE_SHARE} \* ${DOCSDIR}/apidoc |