Date: Thu, 26 Jun 2014 16:39:34 +0000 (UTC) From: "Vanilla I. Shu" <vanilla@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r359393 - head/sysutils/farbot Message-ID: <201406261639.s5QGdYZI084653@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: vanilla Date: Thu Jun 26 16:39:34 2014 New Revision: 359393 URL: http://svnweb.freebsd.org/changeset/ports/359393 QAT: https://qat.redports.org/buildarchive/r359393/ Log: Stagify, and switch to use options helper. Approved by: portmgr@ (blanket approval) Modified: head/sysutils/farbot/Makefile Modified: head/sysutils/farbot/Makefile ============================================================================== --- head/sysutils/farbot/Makefile Thu Jun 26 16:35:41 2014 (r359392) +++ head/sysutils/farbot/Makefile Thu Jun 26 16:39:34 2014 (r359393) @@ -21,13 +21,15 @@ USE_PYDISTUTILS= yes PYDISTUTILS_PKGNAME= farb PYDISTUTILS_PKGVERSION= 0.1 -NO_STAGE= yes -post-install: - ${INSTALL_DATA} ${WRKSRC}/farbot.conf ${PREFIX}/etc/farbot.conf.sample +OPTIONS_DEFINE= DOCS + +.include <bsd.port.options.mk> -.if !defined(NOPORTDOCS) - ${MKDIR} ${DOCSDIR}/xhtml - ${INSTALL_MAN} ${WRKSRC}/docs/xhtml/* ${DOCSDIR}/xhtml +post-install: + ${INSTALL_DATA} ${WRKSRC}/farbot.conf ${STAGEDIR}${PREFIX}/etc/farbot.conf.sample +.if ${PORT_OPTIONS:MDOCS} + ${MKDIR} ${STAGEDIR}${DOCSDIR}/xhtml + ${INSTALL_MAN} ${WRKSRC}/docs/xhtml/* ${STAGEDIR}${DOCSDIR}/xhtml .endif .include <bsd.port.mk>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201406261639.s5QGdYZI084653>