diff options
author | Jussi Kukkonen <jussi.kukkonen@intel.com> | 2016-05-06 15:28:10 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-06-12 23:47:18 +0100 |
commit | 0c9c3498a0fa9a9d1579500689550bac0378c52d (patch) | |
tree | 698421ff39bc371ff16cd46598d0ff2376e583d0 /meta | |
parent | e501d6f4fd58fc3f614f428fe3d9fb62bf5d7ddd (diff) | |
download | poky-0c9c3498a0fa9a9d1579500689550bac0378c52d.tar.gz |
adwaita-icon-theme: Split symbolic icons into 2 packages
Symbolic icons are tiny but there's a lot of them and they actually
take multiple times their apparent size on a typical filesystem.
Split the symbolic icons: adwaita-icon-theme-symbolic contains the
icon sizes that seem to be typically used by GTK+ and applications
(16x16 & 24x24). Other sizes are in adwaita-icon-theme-symbolic-hires.
(From OE-Core rev: 2d09c909d06dd330c3a801bf3685e1534d685ca1)
Signed-off-by: Jussi Kukkonen <jussi.kukkonen@intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-gnome/gnome/adwaita-icon-theme_3.18.0.bb | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/meta/recipes-gnome/gnome/adwaita-icon-theme_3.18.0.bb b/meta/recipes-gnome/gnome/adwaita-icon-theme_3.18.0.bb index 81c88458dc..34b82b7e74 100644 --- a/meta/recipes-gnome/gnome/adwaita-icon-theme_3.18.0.bb +++ b/meta/recipes-gnome/gnome/adwaita-icon-theme_3.18.0.bb | |||
@@ -24,14 +24,19 @@ do_install_append() { | |||
24 | ${D}${prefix}/share/icons/Adwaita/scalable/*/*-symbolic-rtl.svg | 24 | ${D}${prefix}/share/icons/Adwaita/scalable/*/*-symbolic-rtl.svg |
25 | } | 25 | } |
26 | 26 | ||
27 | PACKAGES = "${PN}-cursors ${PN}-symbolic ${PN}-hires ${PN}" | 27 | PACKAGES = "${PN}-cursors ${PN}-symbolic-hires ${PN}-symbolic ${PN}-hires ${PN}" |
28 | 28 | ||
29 | RREPLACES_${PN} = "gnome-icon-theme" | 29 | RREPLACES_${PN} = "gnome-icon-theme" |
30 | RCONFLICTS_${PN} = "gnome-icon-theme" | 30 | RCONFLICTS_${PN} = "gnome-icon-theme" |
31 | RPROVIDES_${PN} = "gnome-icon-theme" | 31 | RPROVIDES_${PN} = "gnome-icon-theme" |
32 | 32 | ||
33 | FILES_${PN}-cursors = "${prefix}/share/icons/Adwaita/cursors/" | 33 | FILES_${PN}-cursors = "${prefix}/share/icons/Adwaita/cursors/" |
34 | FILES_${PN}-symbolic = "${prefix}/share/icons/Adwaita/*/*/*.symbolic.png" | 34 | FILES_${PN}-symbolic-hires = "${prefix}/share/icons/Adwaita/96x96/*/*.symbolic.png \ |
35 | ${prefix}/share/icons/Adwaita/64x64/*/*.symbolic.png \ | ||
36 | ${prefix}/share/icons/Adwaita/48x48/*/*.symbolic.png \ | ||
37 | ${prefix}/share/icons/Adwaita/32x32/*/*.symbolic.png" | ||
38 | FILES_${PN}-symbolic = "${prefix}/share/icons/Adwaita/16x16/*/*.symbolic.png \ | ||
39 | ${prefix}/share/icons/Adwaita/24x24/*/*.symbolic.png" | ||
35 | FILES_${PN}-hires = "${prefix}/share/icons/Adwaita/256x256/" | 40 | FILES_${PN}-hires = "${prefix}/share/icons/Adwaita/256x256/" |
36 | FILES_${PN} = "${prefix}/share/icons/Adwaita/ \ | 41 | FILES_${PN} = "${prefix}/share/icons/Adwaita/ \ |
37 | ${prefix}/share/pkgconfig/adwaita-icon-theme.pc" | 42 | ${prefix}/share/pkgconfig/adwaita-icon-theme.pc" |