svn commit: r317192 - head/devel/tcllib
Pietro Cerutti
gahr at FreeBSD.org
Fri May 3 10:48:59 UTC 2013
Author: gahr
Date: Fri May 3 10:48:58 2013
New Revision: 317192
URL: http://svnweb.freebsd.org/changeset/ports/317192
Log:
- Make sure html / man-pages do not get installed if the OPTION was unset
Submitted by: QAT
Modified:
head/devel/tcllib/Makefile
Modified: head/devel/tcllib/Makefile
==============================================================================
--- head/devel/tcllib/Makefile Fri May 3 10:07:44 2013 (r317191)
+++ head/devel/tcllib/Makefile Fri May 3 10:48:58 2013 (r317192)
@@ -33,6 +33,8 @@ INSTALL_ARGS= -pkgs -pkg-path ${PREFIX}/
ALL_TARGET+= nroff-doc
INSTALL_ARGS+= -nroff-path ${MANPREFIX}/man/mann
.include "Makefile.man"
+.else
+INSTALL_ARGS+= -no-nroff
.endif
#
@@ -41,6 +43,8 @@ INSTALL_ARGS+= -nroff-path ${MANPREFIX}/
.if ${PORT_OPTIONS:MDOCS}
ALL_TARGET+= html-doc
INSTALL_ARGS+= -html-path ${DOCSDIR}
+.else
+INSTALL_ARGS+= -no-html
.endif
post-patch:
More information about the svn-ports-all
mailing list