diff options
author | Jussi Kukkonen <jussi.kukkonen@intel.com> | 2016-10-24 14:32:34 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-10-31 14:23:15 +0000 |
commit | ca386b14753975f366112d2aa539787961994909 (patch) | |
tree | f3938d9f41f40b87c9b6c6d59c2e19db5cbc69f6 /meta/recipes-gnome/gnome/gnome-themes-standard_3.22.2.bb | |
parent | 2e252c48408e22aa4f99ecac08f7db410564c072 (diff) | |
download | openembedded-core-ca386b14753975f366112d2aa539787961994909.tar.gz openembedded-core-ca386b14753975f366112d2aa539787961994909.tar.bz2 openembedded-core-ca386b14753975f366112d2aa539787961994909.zip |
gnome-themes-standard: Upgrade 3.20.2 -> 3.22.2
Six-monthly release.
Package the new dark variant of GTK2-Adwaita separately.
Signed-off-by: Jussi Kukkonen <jussi.kukkonen@intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'meta/recipes-gnome/gnome/gnome-themes-standard_3.22.2.bb')
-rw-r--r-- | meta/recipes-gnome/gnome/gnome-themes-standard_3.22.2.bb | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/meta/recipes-gnome/gnome/gnome-themes-standard_3.22.2.bb b/meta/recipes-gnome/gnome/gnome-themes-standard_3.22.2.bb new file mode 100644 index 0000000000..2b3cc975c2 --- /dev/null +++ b/meta/recipes-gnome/gnome/gnome-themes-standard_3.22.2.bb @@ -0,0 +1,45 @@ +SUMMARY = "GTK+2 standard themes" +HOMEPAGE = "http://ftp.gnome.org/pub/GNOME/sources/gnome-themes-standard/" +BUGTRACKER = "https://bugzilla.gnome.org/" +SECTION = "x11/gnome" + +LICENSE = "LGPL-2.1" +LIC_FILES_CHKSUM = "file://COPYING;md5=2d5025d4aa3495befef8f17206a5b0a1" + +inherit autotools pkgconfig gettext gtk-icon-cache upstream-version-is-even distro_features_check + +ANY_OF_DISTRO_FEATURES = "${GTK2DISTROFEATURES}" + +DEPENDS += "intltool-native gtk+" + +MAJ_VER = "${@oe.utils.trim_version("${PV}", 2)}" +SRC_URI = "${GNOME_MIRROR}/${BPN}/${MAJ_VER}/${BPN}-${PV}.tar.xz \ + " + +SRC_URI[md5sum] = "84624dbcecab7add32672abae030314d" +SRC_URI[sha256sum] = "b34516cd59b873c187c1897c25bac3b9ce2d30a472f1fd7ae9d7105d93e17da5" + +EXTRA_OECONF = "--disable-gtk3-engine" + +do_install_append() { + # Only building Adwaita, remove highcontrast files + rm -rf ${D}${prefix}/share/themes/HighContrast \ + ${D}${prefix}/share/icons +} + +# There could be gnome-theme-highcontrast as well but that requires +# gtk+3 and includes lots of icons (is also broken with B != S). +PACKAGES += "gnome-theme-adwaita \ + gnome-theme-adwaita-dbg \ + gnome-theme-adwaita-devĀ \ + gnome-theme-adwaita-dark \ + " + +FILES_gnome-theme-adwaita = "${prefix}/share/themes/Adwaita \ + ${libdir}/gtk-2.0/2.10.0/engines/libadwaita.so" +FILES_gnome-theme-adwaita-dev = "${libdir}/gtk-2.0/2.10.0/engines/libadwaita.la" +FILES_gnome-theme-adwaita-dbg = "${libdir}/gtk-2.0/2.10.0/engines/.debug/libadwaita.so" + +FILES_gnome-theme-adwaita-dark = "${prefix}/share/themes/Adwaita-dark" +RDEPENDS_gnome-theme-adwaita-dark = "gnome-theme-adwaita" + |