diff options
author | Ross Burton <ross.burton@intel.com> | 2013-09-27 16:41:17 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-09-30 22:11:58 +0100 |
commit | 7509c0f647f65c42ff256d2bfb9e1ffb2f3d816e (patch) | |
tree | c7751a929bb47a7a0fdc8c110293ef9f2d64801a | |
parent | d4b0a4bee3fcfaef58e0c70cbe0ce1468a898f6f (diff) | |
download | poky-7509c0f647f65c42ff256d2bfb9e1ffb2f3d816e.tar.gz |
sato-icon-theme: add more compatibility symlinks
libfm uses "preferences-desktop", so link it to the close-enough
"preferences-sytem".
x11vnc uses "computer", link it to "terminal".
pcmanfm uses "system-file-manager", link it to "file-manager".
[ YOCTO #4062 ]
(From OE-Core rev: d856488179d14d05f1121c171abf4eac82e81fb9)
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-sato/sato-icon-theme/sato-icon-theme_0.4.1.bb | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/meta/recipes-sato/sato-icon-theme/sato-icon-theme_0.4.1.bb b/meta/recipes-sato/sato-icon-theme/sato-icon-theme_0.4.1.bb index cb3b68c16e..cf23aebf5e 100644 --- a/meta/recipes-sato/sato-icon-theme/sato-icon-theme_0.4.1.bb +++ b/meta/recipes-sato/sato-icon-theme/sato-icon-theme_0.4.1.bb | |||
@@ -23,6 +23,12 @@ FILES_${PN} += "${datadir}" | |||
23 | 23 | ||
24 | EXTRA_OECONF += "--with-iconmap=${@d.getVar('STAGING_LIBEXECDIR_NATIVE', True).replace('sato-icon-theme', 'icon-naming-utils')}/icon-name-mapping" | 24 | EXTRA_OECONF += "--with-iconmap=${@d.getVar('STAGING_LIBEXECDIR_NATIVE', True).replace('sato-icon-theme', 'icon-naming-utils')}/icon-name-mapping" |
25 | 25 | ||
26 | do_install_append() { | ||
27 | find ${D}${datadir}/icons/Sato/ -maxdepth 1 -type d -exec ln -s preferences-system.png {}/apps/preferences-desktop.png \; | ||
28 | find ${D}${datadir}/icons/Sato/ -maxdepth 1 -type d -exec ln -s file-manager.png {}/apps/system-file-manager.png \; | ||
29 | find ${D}${datadir}/icons/Sato/ -maxdepth 1 -type d -exec ln -s ../apps/terminal.png {}/places/computer.png \; | ||
30 | } | ||
31 | |||
26 | # Explictly setting "Sato" as the default icon theme to avoid flickering from | 32 | # Explictly setting "Sato" as the default icon theme to avoid flickering from |
27 | # the desktop and settings daemon racing. This shouldn't be done here but in the sato image | 33 | # the desktop and settings daemon racing. This shouldn't be done here but in the sato image |
28 | pkg_postinst_${PN} () { | 34 | pkg_postinst_${PN} () { |