diff options
author | Koen Kooi <koen@dominion.thruhere.net> | 2013-04-18 15:51:30 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-04-22 14:45:03 +0100 |
commit | ba807dc7fec24c230a23120127fc7e07cdcf7874 (patch) | |
tree | 1923eff0820082773803949940d7245946b3067a /meta/recipes-gnome/gnome/gnome-icon-theme_2.31.0.bb | |
parent | cb9987d0d0cafa98ed344d58699dbcc37bf5778f (diff) | |
download | poky-ba807dc7fec24c230a23120127fc7e07cdcf7874.tar.gz |
gnome-icon-theme: add missing icon-cache inherit
When installing this manually the icon cache won't get refreshed.
Rearrange recipe to comply the the styleguide as well.
(From OE-Core rev: a0643812b05cf7ed8b6f530f81925f60089c2410)
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-gnome/gnome/gnome-icon-theme_2.31.0.bb')
-rw-r--r-- | meta/recipes-gnome/gnome/gnome-icon-theme_2.31.0.bb | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/meta/recipes-gnome/gnome/gnome-icon-theme_2.31.0.bb b/meta/recipes-gnome/gnome/gnome-icon-theme_2.31.0.bb index ab541ed3db..920ee4ff8c 100644 --- a/meta/recipes-gnome/gnome/gnome-icon-theme_2.31.0.bb +++ b/meta/recipes-gnome/gnome/gnome-icon-theme_2.31.0.bb | |||
@@ -1,17 +1,16 @@ | |||
1 | DESCRIPTION = "GNOME 2 default icon themes" | 1 | DESCRIPTION = "GNOME 2 default icon themes" |
2 | HOMEPAGE = "http://www.gnome.org/" | 2 | HOMEPAGE = "http://www.gnome.org/" |
3 | BUGTRACKER = "https://bugzilla.gnome.org/" | 3 | BUGTRACKER = "https://bugzilla.gnome.org/" |
4 | SECTION = "x11/gnome" | ||
4 | 5 | ||
5 | LICENSE = "LGPLv3+ | CC-BY-SA-3.0" | 6 | LICENSE = "LGPLv3+ | CC-BY-SA-3.0" |
6 | LIC_FILES_CHKSUM = "file://COPYING;md5=e7e289d90fc8bdceed5e3f142f98229e" | 7 | LIC_FILES_CHKSUM = "file://COPYING;md5=e7e289d90fc8bdceed5e3f142f98229e" |
7 | 8 | ||
8 | SECTION = "x11/gnome" | 9 | PR = "r5" |
10 | |||
9 | DEPENDS = "icon-naming-utils-native glib-2.0 intltool-native libxml-simple-perl-native" | 11 | DEPENDS = "icon-naming-utils-native glib-2.0 intltool-native libxml-simple-perl-native" |
10 | RDEPENDS_${PN} = "hicolor-icon-theme" | ||
11 | RRECOMMENDS_${PN} = "librsvg-gtk" | ||
12 | PR = "r4" | ||
13 | 12 | ||
14 | FILES_${PN} += "${datadir}/*" | 13 | inherit autotools perlnative gtk-icon-cache |
15 | 14 | ||
16 | SRC_URI = "${GNOME_MIRROR}/${BPN}/2.31/${BPN}-${PV}.tar.bz2 \ | 15 | SRC_URI = "${GNOME_MIRROR}/${BPN}/2.31/${BPN}-${PV}.tar.bz2 \ |
17 | file://iconpath-option.patch" | 16 | file://iconpath-option.patch" |
@@ -21,4 +20,5 @@ SRC_URI[sha256sum] = "ea7e05b77ead159379392b3b275ca0c9cbacd7d936014e447cc7c5e27a | |||
21 | 20 | ||
22 | EXTRA_OECONF = "--with-iconmap=${@d.getVar('STAGING_LIBEXECDIR_NATIVE', True).replace('gnome-icon-theme', 'icon-naming-utils')}/icon-name-mapping" | 21 | EXTRA_OECONF = "--with-iconmap=${@d.getVar('STAGING_LIBEXECDIR_NATIVE', True).replace('gnome-icon-theme', 'icon-naming-utils')}/icon-name-mapping" |
23 | 22 | ||
24 | inherit autotools perlnative | 23 | FILES_${PN} += "${datadir}/*" |
24 | RRECOMMENDS_${PN} += "librsvg-gtk" | ||