aboutsummaryrefslogtreecommitdiff
path: root/audio
diff options
context:
space:
mode:
authorJan Beich <jbeich@FreeBSD.org>2021-05-02 09:43:08 +0000
committerJan Beich <jbeich@FreeBSD.org>2021-06-09 21:29:24 +0000
commitafb3593eef00caa8b7501362910408e3ddc2ca71 (patch)
tree339e01675a605aa8df854439a4dea4e77c93b683 /audio
parent0e39c83d511eca5b55241dc3e63ca5a4b3e629a8 (diff)
downloadports-afb3593eef00caa8b7501362910408e3ddc2ca71.tar.gz
ports-afb3593eef00caa8b7501362910408e3ddc2ca71.zip
devel/meson: update to 0.58.1
Changes: https://mesonbuild.com/Release-notes-for-0-58-0.html Reported by: GitHub (watch releases) PR: 255550 Exp-run by: antoine Approved by: tcberner
Diffstat (limited to 'audio')
-rw-r--r--audio/ncmpc/files/patch-doc_meson.build22
1 files changed, 22 insertions, 0 deletions
diff --git a/audio/ncmpc/files/patch-doc_meson.build b/audio/ncmpc/files/patch-doc_meson.build
new file mode 100644
index 000000000000..f726066f2881
--- /dev/null
+++ b/audio/ncmpc/files/patch-doc_meson.build
@@ -0,0 +1,22 @@
+Keep rsync optional with meson >= 0.58 after
+https://github.com/mesonbuild/meson/commit/80c89a650b6f
+
+--- doc/meson.build.orig 2020-10-16 10:59:17 UTC
++++ doc/meson.build
+@@ -18,6 +18,8 @@ if get_option('html_manual')
+ install_dir: join_paths(get_option('datadir'), 'doc', meson.project_name()),
+ )
+
++ rsync = find_program('rsync', required: false)
++ if rsync.found()
+ custom_target(
+ 'upload',
+ input: sphinx_output,
+@@ -29,6 +31,7 @@ if get_option('html_manual')
+ '--chmod=a+rX',
+ ],
+ )
++ endif
+ endif
+
+ if get_option('manual')