svn commit: r402536 - head/audio/audacity

Thomas Zander riggs at FreeBSD.org
Sat Nov 28 14:43:18 UTC 2015


Author: riggs
Date: Sat Nov 28 14:43:16 2015
New Revision: 402536
URL: https://svnweb.freebsd.org/changeset/ports/402536

Log:
  Fix build failure with DOCS option and edge case
  
  In certain situations, e.g. when docbook ports have been deinstalled
  before building audacity with DOCS option, build may fail. Prevent
  this case by explicitly including required docbook ports in
  DOCS_BUILD_DEPENDS
  
  PR:		204785
  Submitted by:	rhurlin at gwdg.de
  Reviewed by:	xxjack12xx at gmail.com (maintainer)
  Approved by:	xxjack12xx at gmail.com (maintainer)

Modified:
  head/audio/audacity/Makefile

Modified: head/audio/audacity/Makefile
==============================================================================
--- head/audio/audacity/Makefile	Sat Nov 28 14:40:18 2015	(r402535)
+++ head/audio/audacity/Makefile	Sat Nov 28 14:43:16 2015	(r402536)
@@ -62,6 +62,9 @@ CONFIGURE_SHELL?=${LOCALBASE}/bin/bash
 
 DEBUG_CONFIGURE_WITH=	debug
 
+DOCS_BUILD_DEPENDS=	docbook-to-man:${PORTSDIR}/textproc/docbook-to-man \
+			docbook2man:${PORTSDIR}/textproc/docbook-utils
+
 FLAC_CONFIGURE_WITH=	libflac
 FLAC_LIB_DEPENDS=	libFLAC.so:${PORTSDIR}/audio/flac
 


More information about the svn-ports-all mailing list