Date: Fri, 3 May 2013 10:48:58 +0000 (UTC) From: Pietro Cerutti <gahr@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r317192 - head/devel/tcllib Message-ID: <201305031048.r43AmwCS015749@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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:
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201305031048.r43AmwCS015749>