diff options
author | Andreas Müller <schnitzeltony@gmail.com> | 2019-03-26 15:21:34 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-03-29 08:28:53 +0000 |
commit | 236d3c89796a40a2fb1f314b899f6dad96293e45 (patch) | |
tree | 3d878840d1281c6bc4503dc9a69eddc2f7120bd4 /meta/recipes-gnome | |
parent | 66828ff04d107b7719c9c8857d7c6c2ebf20a8bb (diff) | |
download | poky-236d3c89796a40a2fb1f314b899f6dad96293e45.tar.gz |
adwaita-icon-theme: do not delete symbolic svg but pack them in ${PN}-symbolic
This fixes:
* gtk-icon-browser: for symbolic view almost all icons were missing
* xfce's thunar: 'home' and 'up' icons were missing. Had a long discussion with
XFCE-people [1] and asked here [2].
How could I overlook the most obvious...
[1] https://bugzilla.xfce.org/show_bug.cgi?id=14443
[2] http://lists.openembedded.org/pipermail/openembedded-core/2018-November/275815.html
(From OE-Core rev: 0911e7d2f5443210b594a198ada8465af7a2fc78)
Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-gnome')
-rw-r--r-- | meta/recipes-gnome/gnome/adwaita-icon-theme_3.30.1.bb | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/meta/recipes-gnome/gnome/adwaita-icon-theme_3.30.1.bb b/meta/recipes-gnome/gnome/adwaita-icon-theme_3.30.1.bb index 3e9420ed9a..451ef39f1a 100644 --- a/meta/recipes-gnome/gnome/adwaita-icon-theme_3.30.1.bb +++ b/meta/recipes-gnome/gnome/adwaita-icon-theme_3.30.1.bb | |||
@@ -18,13 +18,6 @@ SRC_URI = "${GNOME_MIRROR}/${BPN}/${MAJ_VER}/${BPN}-${PV}.tar.xz \ | |||
18 | SRC_URI[md5sum] = "db3fd812821d72fdd9a3c7d622a95b35" | 18 | SRC_URI[md5sum] = "db3fd812821d72fdd9a3c7d622a95b35" |
19 | SRC_URI[sha256sum] = "6d752a2b1bc668483956d4485c39cad1642d9358e133ff689526e43674a4e1ce" | 19 | SRC_URI[sha256sum] = "6d752a2b1bc668483956d4485c39cad1642d9358e133ff689526e43674a4e1ce" |
20 | 20 | ||
21 | do_install_append() { | ||
22 | # Build uses gtk-encode-symbolic-svg to create png versions: | ||
23 | # no need to store the svgs anymore. | ||
24 | rm -f ${D}${prefix}/share/icons/Adwaita/scalable/*/*-symbolic.svg \ | ||
25 | ${D}${prefix}/share/icons/Adwaita/scalable/*/*-symbolic-rtl.svg | ||
26 | } | ||
27 | |||
28 | PACKAGES = "${PN}-cursors ${PN}-symbolic-hires ${PN}-symbolic ${PN}-hires ${PN}" | 21 | PACKAGES = "${PN}-cursors ${PN}-symbolic-hires ${PN}-symbolic ${PN}-hires ${PN}" |
29 | 22 | ||
30 | RREPLACES_${PN} = "gnome-icon-theme" | 23 | RREPLACES_${PN} = "gnome-icon-theme" |
@@ -37,7 +30,8 @@ FILES_${PN}-symbolic-hires = "${prefix}/share/icons/Adwaita/96x96/*/*.symbolic.p | |||
37 | ${prefix}/share/icons/Adwaita/48x48/*/*.symbolic.png \ | 30 | ${prefix}/share/icons/Adwaita/48x48/*/*.symbolic.png \ |
38 | ${prefix}/share/icons/Adwaita/32x32/*/*.symbolic.png" | 31 | ${prefix}/share/icons/Adwaita/32x32/*/*.symbolic.png" |
39 | FILES_${PN}-symbolic = "${prefix}/share/icons/Adwaita/16x16/*/*.symbolic.png \ | 32 | FILES_${PN}-symbolic = "${prefix}/share/icons/Adwaita/16x16/*/*.symbolic.png \ |
40 | ${prefix}/share/icons/Adwaita/24x24/*/*.symbolic.png" | 33 | ${prefix}/share/icons/Adwaita/24x24/*/*.symbolic.png \ |
34 | ${prefix}/share/icons/Adwaita/scalable/*/*-symbolic*.svg" | ||
41 | FILES_${PN}-hires = "${prefix}/share/icons/Adwaita/256x256/ \ | 35 | FILES_${PN}-hires = "${prefix}/share/icons/Adwaita/256x256/ \ |
42 | ${prefix}/share/icons/Adwaita/512x512/" | 36 | ${prefix}/share/icons/Adwaita/512x512/" |
43 | FILES_${PN} = "${prefix}/share/icons/Adwaita/ \ | 37 | FILES_${PN} = "${prefix}/share/icons/Adwaita/ \ |