svn commit: r548905 - head/math/gnome-calculator/files

Baptiste Daroussin bapt at FreeBSD.org
Fri Sep 18 20:54:15 UTC 2020


Author: bapt
Date: Fri Sep 18 20:54:14 2020
New Revision: 548905
URL: https://svnweb.freebsd.org/changeset/ports/548905

Log:
  Always prevent building valadoc.
  
  The build system check for valadoc, if found in the environement then
  it will be used to generate the devhelp documentation. otherwise no.
  This behaviour is not optionable, so disable entirely the generation
  with a patch for now.
  
  note that in a clean environement it does not happen as valadoc is not
  present.
  
  PR:		249423
  Reported by:	mandree

Added:
  head/math/gnome-calculator/files/
  head/math/gnome-calculator/files/patch-doc_meson.build   (contents, props changed)

Added: head/math/gnome-calculator/files/patch-doc_meson.build
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/math/gnome-calculator/files/patch-doc_meson.build	Fri Sep 18 20:54:14 2020	(r548905)
@@ -0,0 +1,9 @@
+--- doc/meson.build.orig	2020-09-18 20:50:20 UTC
++++ doc/meson.build
+@@ -1,5 +1,5 @@
+ valadoc = find_program ('valadoc', required: false)
+-if valadoc.found()
++if false
+ 	gtkdoc_outdir = CAMEL_CASE_NAME+'-'+API_VERSION
+ 	docsdir = join_paths (get_option ('datadir'), 'devhelp','books')
+ 


More information about the svn-ports-all mailing list