diff options
author | Koop Mast <kwm@FreeBSD.org> | 2018-12-22 09:09:20 +0000 |
---|---|---|
committer | Koop Mast <kwm@FreeBSD.org> | 2018-12-22 09:09:20 +0000 |
commit | 8b59061bd2f0a3cf57f63e89a8309022c7d59f5a (patch) | |
tree | b286fd8788520ea206e09cf67644bc132b14b617 /x11/terminology | |
parent | 5a1788b154d9b0e4daf4c6738f26a8ecaac65252 (diff) | |
download | ports-8b59061bd2f0a3cf57f63e89a8309022c7d59f5a.tar.gz ports-8b59061bd2f0a3cf57f63e89a8309022c7d59f5a.zip |
Notes
Diffstat (limited to 'x11/terminology')
-rw-r--r-- | x11/terminology/files/patch-data_themes_meson.build | 27 |
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') |