summaryrefslogtreecommitdiffstats
path: root/meta-gnome
diff options
context:
space:
mode:
authorMarkus Volk <f_l_k@t-online.de>2022-12-05 15:47:13 +0100
committerKhem Raj <raj.khem@gmail.com>2022-12-05 18:02:40 -0800
commit8c58f419c299fe3764482ebe4f366e25533ea23f (patch)
treef65afb74af089991cd39179306ee67fbf2e48760 /meta-gnome
parent3e70428db7b48573883aa50de636d93757dd263e (diff)
downloadmeta-openembedded-8c58f419c299fe3764482ebe4f366e25533ea23f.tar.gz
gnome-photos: update dependencies
- add PACKAGECONFIG for DOC -remove references to TMPDIR Signed-off-by: Markus Volk <f_l_k@t-online.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-gnome')
-rw-r--r--meta-gnome/recipes-gnome/gnome-photos/gnome-photos_43.0.bb19
1 files changed, 15 insertions, 4 deletions
diff --git a/meta-gnome/recipes-gnome/gnome-photos/gnome-photos_43.0.bb b/meta-gnome/recipes-gnome/gnome-photos/gnome-photos_43.0.bb
index c87823ce31..d9f71806c8 100644
--- a/meta-gnome/recipes-gnome/gnome-photos/gnome-photos_43.0.bb
+++ b/meta-gnome/recipes-gnome/gnome-photos/gnome-photos_43.0.bb
@@ -4,19 +4,19 @@ LICENSE = "GPL-3.0-only"
4LIC_FILES_CHKSUM = "file://COPYING;md5=1ebbd3e34237af26da5dc08a4e440464" 4LIC_FILES_CHKSUM = "file://COPYING;md5=1ebbd3e34237af26da5dc08a4e440464"
5 5
6DEPENDS = " \ 6DEPENDS = " \
7 cairo \
7 glib-2.0-native \ 8 glib-2.0-native \
8 gdk-pixbuf-native \ 9 gdk-pixbuf-native \
9 librsvg-native \ 10 librsvg-native \
10 gtk+3 \ 11 gtk+3 \
11 babl \ 12 babl \
13 dbus \
12 gegl \ 14 gegl \
13 geocode-glib \ 15 geocode-glib \
16 gexiv2 \
14 gnome-online-accounts \ 17 gnome-online-accounts \
15 grilo \
16 gsettings-desktop-schemas \ 18 gsettings-desktop-schemas \
17 libdazzle \ 19 libdazzle \
18 libgdata \
19 gfbgraph \
20 tracker \ 20 tracker \
21 libhandy \ 21 libhandy \
22 libportal \ 22 libportal \
@@ -31,6 +31,9 @@ def gnome_verdir(v):
31 31
32REQUIRED_DISTRO_FEATURES = "x11" 32REQUIRED_DISTRO_FEATURES = "x11"
33 33
34PACKAGECONFIG ?= ""
35PACKAGECONFIG[doc] = "-Dmanuals=true,-Dmanuals=false,libxslt-native docbook-xsl-stylesheets-native"
36
34SRC_URI[archive.sha256sum] = "c7ac7458d533f29d955011c74b76224d79ea31bcc12e9d6d0ce7b6c3704d08e1" 37SRC_URI[archive.sha256sum] = "c7ac7458d533f29d955011c74b76224d79ea31bcc12e9d6d0ce7b6c3704d08e1"
35 38
36do_install:append() { 39do_install:append() {
@@ -44,4 +47,12 @@ FILES:${PN} += " \
44 ${datadir}/gnome-shell \ 47 ${datadir}/gnome-shell \
45" 48"
46 49
47RRECOMMENDS:${PN} = "grilo-plugins" 50do_compile:append() {
51 # glib-mkenums is embedding full paths into this file. There's no
52 # option to it to use a sysroot style variable. So to avoid QA
53 # errors, we sed WORKDIR out and make its includes relative
54 sed -i "s|${B}||" src/photos-enums.h
55 sed -i "s|${B}||" src/photos-enums.c
56 sed -i "s|${B}||" src/photos-enums-gegl.c
57 sed -i "s|${B}||" src/photos-enums-gegl.h
58}