Date: Fri, 18 Sep 2020 20:54:15 +0000 (UTC) From: Baptiste Daroussin <bapt@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r548905 - head/math/gnome-calculator/files Message-ID: <202009182054.08IKsFcM082689@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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') +
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202009182054.08IKsFcM082689>