diff options
Diffstat (limited to 'app-text/zathura/files/zathura-0.4.8-meson-0.61-build.patch')
-rw-r--r-- | app-text/zathura/files/zathura-0.4.8-meson-0.61-build.patch | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/app-text/zathura/files/zathura-0.4.8-meson-0.61-build.patch b/app-text/zathura/files/zathura-0.4.8-meson-0.61-build.patch new file mode 100644 index 000000000000..577eddc4da1f --- /dev/null +++ b/app-text/zathura/files/zathura-0.4.8-meson-0.61-build.patch @@ -0,0 +1,27 @@ +https://github.com/pwmt/zathura/commit/c6ec5044c5ff843979050bfb81742d14740bb656.patch +https://bugs.gentoo.org/831468 + +From: Sebastian Ramacher <sebastian@ramacher.at> +Date: Sat, 30 Oct 2021 15:41:25 +0200 +Subject: [PATCH] Fix build with meson 0.60 + +--- a/data/meson.build ++++ b/data/meson.build +@@ -19,7 +19,7 @@ endif + i18n = import('i18n') + podir = join_paths(meson.project_source_root(), 'po') + +-desktop = i18n.merge_file('desktop', ++desktop = i18n.merge_file( + input: 'org.pwmt.zathura.desktop.in', + output: 'org.pwmt.zathura.desktop', + install: true, +@@ -28,7 +28,7 @@ desktop = i18n.merge_file('desktop', + type: 'desktop' + ) + +-appdata = i18n.merge_file('appdata', ++appdata = i18n.merge_file( + input: 'org.pwmt.zathura.appdata.xml.in', + output: 'org.pwmt.zathura.appdata.xml', + install: true, |