svn commit: r469168 - head/math/octave

Antoine Brodin antoine at FreeBSD.org
Sat May 5 21:45:33 UTC 2018


Author: antoine
Date: Sat May  5 21:45:32 2018
New Revision: 469168
URL: https://svnweb.freebsd.org/changeset/ports/469168

Log:
  Explicitely disable docs build as it fails when it's attempted (FreeBSD 11+)
  
  perl ./doc/interpreter/mk-qthelp.pl octave.html doc/interpreter/octave_interpreter && \
  qcollectiongenerator -qt4 doc/interpreter/octave_interpreter.qhcp -o doc/interpreter/octave_interpreter.qhc >/dev/null && \
  rm -f doc/interpreter/octave_interpreter.qhcp doc/interpreter/octave_interpreter.qhp
  qcollectiongenerator: could not find a Qt installation of '4'
  
  Reported by:	pkg-fallout
  With hat:	portmgr

Modified:
  head/math/octave/Makefile

Modified: head/math/octave/Makefile
==============================================================================
--- head/math/octave/Makefile	Sat May  5 21:04:31 2018	(r469167)
+++ head/math/octave/Makefile	Sat May  5 21:45:32 2018	(r469168)
@@ -64,6 +64,7 @@ CONFIGURE_ARGS=	--host=${GNU_HOST} \
 		--with-blas="-L${LOCALBASE}/lib ${BLASLIB}" \
 		--with-lapack="${LAPACKLIB}" \
 		--enable-shared \
+		--disable-docs \
 		--disable-jit \
 		--disable-openmp \
 		--with-qt=4 \


More information about the svn-ports-all mailing list