Without USE_PKGCONFIG= build configure fails for the port when pkgconf is not installed. For PORTDOCS, can you either default it to OFF or make it an OPTION? I generally do want portdocs installed, but I don't want doxygen and all of its dependencies for this port. Thanks, Doug
Responsible Changed From-To: freebsd-ports-bugs->fluffy Over to maintainer (via the GNATS Auto Assign Tool)
Author: fluffy Date: Mon Aug 27 04:23:07 2012 New Revision: 303216 URL: http://svn.freebsd.org/changeset/ports/303216 Log: - USE_PKGCONFIG [1] - make docs build optional PR: 171093 [1] Submitted by: dougb Modified: head/graphics/libwpg/Makefile (contents, props changed) Modified: head/graphics/libwpg/Makefile ============================================================================== --- head/graphics/libwpg/Makefile Mon Aug 27 04:17:09 2012 (r303215) +++ head/graphics/libwpg/Makefile Mon Aug 27 04:23:07 2012 (r303216) @@ -23,11 +23,16 @@ USE_GNOME= gnomeprefix gnomehack ltverha USE_BZIP2= yes USE_PERL5= yes USE_LDCONFIG= yes +USE_PKGCONFIG= yes CONFIGURE_ARGS= --disable-werror +OPTIONS_DEFINE= DOCS + PORTDOCS= * -.if !defined(NOPORTDOCS) +.include <bsd.port.options.mk> + +.if ${PORT_OPTIONS:MDOCS} BUILD_DEPENDS+= doxygen:${PORTSDIR}/devel/doxygen .else post-patch: _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
State Changed From-To: open->closed Committed. Thanks!