summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornia <nia@pkgsrc.org>2022-03-14 03:10:49 +0000
committernia <nia@pkgsrc.org>2022-03-14 03:10:49 +0000
commit493e0dde6f87ed428a7fa1bc2d4acde45cb3b6ac (patch)
tree63b245ba52bf89e8ad2f8beb0f4390e0019106e9
parent38d9b7ca480121d3c6cdb4e3697e3b9c15287881 (diff)
downloadpkgsrc-493e0dde6f87ed428a7fa1bc2d4acde45cb3b6ac.tar.gz
totem: fix build with latest meson
-rw-r--r--multimedia/totem/distinfo4
-rw-r--r--multimedia/totem/patches/patch-data_appdata_meson.build16
-rw-r--r--multimedia/totem/patches/patch-data_meson.build15
3 files changed, 34 insertions, 1 deletions
diff --git a/multimedia/totem/distinfo b/multimedia/totem/distinfo
index 2eb567b93af..8663e1597df 100644
--- a/multimedia/totem/distinfo
+++ b/multimedia/totem/distinfo
@@ -1,5 +1,7 @@
-$NetBSD: distinfo,v 1.47 2021/10/26 11:01:18 nia Exp $
+$NetBSD: distinfo,v 1.48 2022/03/14 03:10:49 nia Exp $
BLAKE2s (totem-3.34.1.tar.xz) = 7f6f338122952e631a9fbd24a0cab39dd29e8a18c99648c259acdc930a2f66ee
SHA512 (totem-3.34.1.tar.xz) = 9a3556f5cf522fca29926db185c2e5d25bdb80a25e14d0ba3062a7f15fc3ec40ae9f25752763bc444d4fd82ec2098efd732da662a1b1c5923ec19fde432606db
Size (totem-3.34.1.tar.xz) = 2157160 bytes
+SHA1 (patch-data_appdata_meson.build) = c73994a4c3d21cda14e447ecc4c07d92062b6cef
+SHA1 (patch-data_meson.build) = 4ede548c7bb6f113cd9f6f1e0bc2af01d38e7bcf
diff --git a/multimedia/totem/patches/patch-data_appdata_meson.build b/multimedia/totem/patches/patch-data_appdata_meson.build
new file mode 100644
index 00000000000..dd8de1de761
--- /dev/null
+++ b/multimedia/totem/patches/patch-data_appdata_meson.build
@@ -0,0 +1,16 @@
+$NetBSD: patch-data_appdata_meson.build,v 1.1 2022/03/14 03:10:49 nia Exp $
+
+Remove invalid positional argument. Previously these were ignored, now
+they cause failures.
+
+--- data/appdata/meson.build.orig 2019-10-04 15:59:28.000000000 +0000
++++ data/appdata/meson.build
+@@ -1,7 +1,6 @@
+ appdata = 'org.gnome.Totem.appdata.xml'
+
+-i18n.merge_file ('appdata',
+- input: appdata + '.in',
++i18n.merge_file (input: appdata + '.in',
+ output: appdata,
+ install: true,
+ install_dir: join_paths(totem_datadir, 'metainfo'),
diff --git a/multimedia/totem/patches/patch-data_meson.build b/multimedia/totem/patches/patch-data_meson.build
new file mode 100644
index 00000000000..33de37598ef
--- /dev/null
+++ b/multimedia/totem/patches/patch-data_meson.build
@@ -0,0 +1,15 @@
+$NetBSD: patch-data_meson.build,v 1.1 2022/03/14 03:10:49 nia Exp $
+
+Remove invalid positional argument. Previously these were ignored, now
+they cause failures.
+
+--- data/meson.build.orig 2019-10-04 15:59:28.000000000 +0000
++++ data/meson.build
+@@ -68,7 +68,6 @@ desktop_in = configure_file(
+ )
+
+ i18n.merge_file (
+- desktop,
+ type: 'desktop',
+ input: desktop_in,
+ output: desktop,