diff options
author | adamw <adamw@FreeBSD.org> | 2014-09-11 06:27:47 +0800 |
---|---|---|
committer | adamw <adamw@FreeBSD.org> | 2014-09-11 06:27:47 +0800 |
commit | ce5e1a240f480f9b9ccfd1fb32f320ca6197c603 (patch) | |
tree | e148d73affae4ffe405396eea7ab308a9815017e /devel | |
parent | c9c073cc2b0d1d67ffdcb5b908d6e68ab189f79d (diff) | |
download | freebsd-ports-gnome-ce5e1a240f480f9b9ccfd1fb32f320ca6197c603.tar.gz freebsd-ports-gnome-ce5e1a240f480f9b9ccfd1fb32f320ca6197c603.tar.zst freebsd-ports-gnome-ce5e1a240f480f9b9ccfd1fb32f320ca6197c603.zip |
Change the words NOPORTDOCS and NOPORTEXAMPLES in a couple comments so that
future updates won't trigger the NOPORT* commit hook checks.
Diffstat (limited to 'devel')
-rw-r--r-- | devel/log4cpp/Makefile | 6 | ||||
-rw-r--r-- | devel/seed/Makefile | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/devel/log4cpp/Makefile b/devel/log4cpp/Makefile index 7e1e91e7bda4..ee0d33fbe372 100644 --- a/devel/log4cpp/Makefile +++ b/devel/log4cpp/Makefile @@ -17,18 +17,18 @@ USE_LDCONFIG= yes WRKSRC= ${WRKDIR}/${PORTNAME} # doxygen build is BROKEN atm -#.if exists (${LOCALBASE}/bin/doxygen) || !defined (NOPORTDOCS) +#.if exists (${LOCALBASE}/bin/doxygen) || ${PORT_OPTIONS:MDOCS} #BUILD_DEPENDS+= doxygen:${PORTSDIR}/devel/doxygen #.else CONFIGURE_ARGS+= --disable-doxygen #.endif -#.if !exists (${LOCALBASE}/bin/doxygen) && !defined (NOPORTDOCS) +#.if !exists (${LOCALBASE}/bin/doxygen) && ${PORT_OPTIONS:MDOCS} #pre-everything:: # @${ECHO_CMD} # @${ECHO_CMD} By default, this port uses doxygen to build its documentation.\ #It currently is not present your system, and if you do not want to install it, abort\ -#this build by hitting CTRL+C and re-run the installation with -DNOPORTDOCS | ${FMT} 74 +#this build by hitting CTRL+C and re-run the installation with OPTIONS_UNSET=DOCS | ${FMT} 74 # @${ECHO_CMD} # @sleep 3 #.endif diff --git a/devel/seed/Makefile b/devel/seed/Makefile index dabe37504422..c744f1932ccc 100644 --- a/devel/seed/Makefile +++ b/devel/seed/Makefile @@ -42,7 +42,7 @@ post-patch: @${REINPLACE_CMD} -e 's|reference||g' ${WRKSRC}/doc/Makefile.in # @${FIND} ${WRKSRC}/examples -name Makefile.in -type f | ${XARGS} ${REINPLACE_CMD} -e \ # 's|$$(datadir)/doc/seed/examples|${EXAMPLESDIR}|g' -#.if defined(NOPORTEXAMPLES) +#.if empty(PORT_OPTIONS:MEXAMPLES) # @${REINPLACE_CMD} -e 's|examples||g' \ # ${WRKSRC}/Makefile.in #.endif |