aboutsummaryrefslogtreecommitdiffstats
path: root/x11
diff options
context:
space:
mode:
authorkwm <kwm@FreeBSD.org>2018-12-22 17:09:20 +0800
committerkwm <kwm@FreeBSD.org>2018-12-22 17:09:20 +0800
commit1973cdbac713c471dea8c72e9d591f9d9a752b91 (patch)
treeb286fd8788520ea206e09cf67644bc132b14b617 /x11
parent4ff6cf431982d79e4599a64dc4c4f44eefd31a7b (diff)
downloadfreebsd-ports-gnome-1973cdbac713c471dea8c72e9d591f9d9a752b91.tar.gz
freebsd-ports-gnome-1973cdbac713c471dea8c72e9d591f9d9a752b91.tar.zst
freebsd-ports-gnome-1973cdbac713c471dea8c72e9d591f9d9a752b91.zip
Update meson to 0.49.0.
Exp-run by antoine@ PR: 234075
Diffstat (limited to 'x11')
-rw-r--r--x11/terminology/files/patch-data_themes_meson.build27
1 files changed, 27 insertions, 0 deletions
diff --git a/x11/terminology/files/patch-data_themes_meson.build b/x11/terminology/files/patch-data_themes_meson.build
new file mode 100644
index 000000000000..e7e50115dc12
--- /dev/null
+++ b/x11/terminology/files/patch-data_themes_meson.build
@@ -0,0 +1,27 @@
+This file is from release 1.3.1 which works with meson 0.49.0.
+
+--- data/themes/meson.build.orig 2018-05-14 20:20:41 UTC
++++ data/themes/meson.build
+@@ -22,16 +22,16 @@ edje_install_dir = join_paths(get_option('datadir'),
+ meson.project_name(), 'themes')
+
+ foreach to_compile: edje_to_compile
+- out = to_compile[0] + '.edj'
+- in = to_compile[0] + '.edc'
+- edj_targets += [custom_target(out,
++ output = to_compile[0] + '.edj'
++ input = to_compile[0] + '.edc'
++ edj_targets += [custom_target(output,
+ install:true,
+ install_dir: edje_install_dir,
+ depend_files: files(to_compile[1]),
+ command: command,
+- input: in,
+- output: out)]
+- edj_files += [join_paths(edje_install_dir, out)]
++ input: input,
++ output: output)]
++ edj_files += [join_paths(edje_install_dir, output)]
+ endforeach
+
+ subdir('nyanology')