Summary: | comms/spandsp-devel lacks build dependency for xsltproc when building docs | ||||||
---|---|---|---|---|---|---|---|
Product: | Ports & Packages | Reporter: | Chris Dukes <chris.dukes.aix> | ||||
Component: | Individual Port(s) | Assignee: | freebsd-ports-bugs (Nobody) <ports-bugs> | ||||
Status: | Closed FIXED | ||||||
Severity: | Affects Only Me | ||||||
Priority: | Normal | ||||||
Version: | Latest | ||||||
Hardware: | Any | ||||||
OS: | Any | ||||||
Attachments: |
|
Description
Chris Dukes
2012-11-10 01:10:00 UTC
Responsible Changed From-To: freebsd-bugs->freebsd-ports-bugs ports PR. Maintainer of comms/spandsp-devel, Please note that PR ports/173517 has just been submitted. If it contains a patch for an upgrade, an enhancement or a bug fix you agree on, reply to this email stating that you approve the patch and a committer will take care of it. The full text of the PR can be found at: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/173517 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org State Changed From-To: open->feedback Awaiting maintainers feedback (via the GNATS Auto Assign Tool) I have added this thanks to Makefile .if ${PORT_OPTIONS:MDOXYGEN} CONFIGURE_ARGS+=--enable-doc BUILD_DEPENDS+= doxygen:${PORTSDIR}/devel/doxygen \ xsltproc:${PORTSDIR}/textproc/libxslt Author: pawel Date: Fri Feb 15 18:41:22 2013 New Revision: 312303 URL: http://svnweb.freebsd.org/changeset/ports/312303 Log: Fix build when DOXYGEN=on PR: ports/173517 Submitted by: Chris Dukes <chris.dukes.aix@gmail.com> Modified: head/comms/spandsp-devel/Makefile Modified: head/comms/spandsp-devel/Makefile ============================================================================== --- head/comms/spandsp-devel/Makefile Fri Feb 15 17:24:34 2013 (r312302) +++ head/comms/spandsp-devel/Makefile Fri Feb 15 18:41:22 2013 (r312303) @@ -32,7 +32,9 @@ OPTIONS_DEFINE= DOXYGEN .if ${PORT_OPTIONS:MDOXYGEN} CONFIGURE_ARGS+=--enable-doc -BUILD_DEPENDS+= doxygen:${PORTSDIR}/devel/doxygen +BUILD_DEPENDS+= doxygen:${PORTSDIR}/devel/doxygen \ + docbook-xsl>=0:${PORTSDIR}/textproc/docbook-xsl +USE_GNOME+= libxslt PORTDOCS= * .else CONFIGURE_ARGS+=--disable-doc _______________________________________________ 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: feedback->closed Committed, with minor changes. Thanks! |