diff options
Diffstat (limited to 'import-layers/meta-openembedded/meta-gnome')
116 files changed, 866 insertions, 7589 deletions
diff --git a/import-layers/meta-openembedded/meta-gnome/README b/import-layers/meta-openembedded/meta-gnome/README index 25ef85d3f..2a682e72d 100644 --- a/import-layers/meta-openembedded/meta-gnome/README +++ b/import-layers/meta-openembedded/meta-gnome/README @@ -1,17 +1,38 @@ +meta-gnome +=========== + +The recipe in this layer needs to have 'x11' in DISTRO_FEATURES +to have effect. To enable them, add in configuration file the following line. + + DISTRO_FEATURES_append = " x11" + +If meta-gnome is included, but x11 is not enabled as a +distro feature a warning is printed at parse time: + + You have included the meta-gnome layer, but + 'x11' has not been enabled in your DISTRO_FEATURES. + +If you know what you are doing, this warning can be disabled by setting the following +variable in your configuration: + + SKIP_META_GNOME_SANITY_CHECK = 1 + + +Dependencies +------------ This layer depends on: URI: git://github.com/openembedded/oe-core.git -branch: rocko +branch: master revision: HEAD URI: git://github.com/openembedded/meta-oe.git -branch: rocko +branch: master revision: HEAD -Send pull requests to openembedded-devel@lists.openembedded.org with '[meta-gnome][rocko]' in the subject' +Send pull requests to openembedded-devel@lists.openembedded.org with '[meta-gnome]' in the subject' When sending single patches, please using something like: -'git send-email -M -1 --to openembedded-devel@lists.openembedded.org --subject-prefix=meta-gnome][rocko][PATCH' +'git send-email -M -1 --to openembedded-devel@lists.openembedded.org --subject-prefix=meta-gnome][PATCH' -rocko Branch Maintainer: -Armin Kuster <akuster808@gmail.com> +Layer maintainer: Andreas Müller <schnitzeltony@googlemail.com> diff --git a/import-layers/meta-openembedded/meta-gnome/classes/sanity-meta-gnome.bbclass b/import-layers/meta-openembedded/meta-gnome/classes/sanity-meta-gnome.bbclass new file mode 100644 index 000000000..331ea193d --- /dev/null +++ b/import-layers/meta-openembedded/meta-gnome/classes/sanity-meta-gnome.bbclass @@ -0,0 +1,10 @@ +addhandler gnome_bbappend_distrocheck +gnome_bbappend_distrocheck[eventmask] = "bb.event.SanityCheck" +python gnome_bbappend_distrocheck() { + skip_check = e.data.getVar('SKIP_META_GNOME_SANITY_CHECK') == "1" + if 'x11' not in e.data.getVar('DISTRO_FEATURES').split() and not skip_check: + bb.warn("You have included the meta-gnome layer, but \ +'x11' has not been enabled in your DISTRO_FEATURES. Some bbappend files \ +may not take effect. See the meta-gnome README for details on enabling \ +meta-gnome support.") +} diff --git a/import-layers/meta-openembedded/meta-gnome/conf/layer.conf b/import-layers/meta-openembedded/meta-gnome/conf/layer.conf index a13881848..e6e9532b4 100644 --- a/import-layers/meta-openembedded/meta-gnome/conf/layer.conf +++ b/import-layers/meta-openembedded/meta-gnome/conf/layer.conf @@ -14,4 +14,8 @@ LAYERVERSION_gnome-layer = "1" LAYERDEPENDS_gnome-layer = "core openembedded-layer networking-layer" -AVAHI_GTK_pn-avahi-ui = "gtk gtk3" +LAYERSERIES_COMPAT_gnome-layer = "sumo" + +# Sanity check for meta-gnome layer. +# Setting SKIP_META_GNOME_SANITY_CHECK to "1" would skip the bbappend files check. +INHERIT += "sanity-meta-gnome" diff --git a/import-layers/meta-openembedded/meta-gnome/recipes-connectivity/network-manager-applet/network-manager-applet_1.4.4.bb b/import-layers/meta-openembedded/meta-gnome/recipes-connectivity/network-manager-applet/network-manager-applet_1.8.10.bb index 14b336a1e..dc2b964be 100644 --- a/import-layers/meta-openembedded/meta-gnome/recipes-connectivity/network-manager-applet/network-manager-applet_1.4.4.bb +++ b/import-layers/meta-openembedded/meta-gnome/recipes-connectivity/network-manager-applet/network-manager-applet_1.8.10.bb @@ -7,17 +7,19 @@ DEPENDS = "gtk+3 libnotify libsecret networkmanager dbus-glib \ intltool-native \ " -inherit gnomebase gsettings gtk-icon-cache gobject-introspection +inherit distro_features_check gnomebase gsettings gtk-icon-cache gobject-introspection -GNOME_COMPRESS_TYPE = "xz" +REQUIRED_DISTRO_FEATURES = "x11" -SRC_URI[archive.md5sum] = "3f82cedc4703df0277c76d9feb5bf2c8" -SRC_URI[archive.sha256sum] = "693846eeae0986e79eb1cedfbc499f132f27a9976ef189a0f16938ac59ec3226" +SRC_URI[archive.md5sum] = "eae3be75e77ff1a7ea3174be25e62d03" +SRC_URI[archive.sha256sum] = "0adc4bfae8b49f7a1d929c22ef20933bd41fb4a8b458280f44c65f9e45b4c9c3" PACKAGECONFIG[modemmanager] = "--with-wwan,--without-wwan,modemmanager" PACKAGECONFIG ??= "" -GI_DATA_ENABLED_libc-musl = "False" +EXTRA_OECONF = " \ + --without-selinux \ +" do_configure_append() { # Sigh... --enable-compile-warnings=no doesn't actually turn off -Werror @@ -26,6 +28,13 @@ do_configure_append() { done } +# gobject-introspection related +GI_DATA_ENABLED_libc-musl = "False" + +do_compile_prepend() { + export GIR_EXTRA_LIBS_PATH="${B}/src/libnma/.libs:${B}/src/libnm-gtk/.libs" +} + RDEPENDS_${PN} =+ "networkmanager" FILES_${PN} += " \ diff --git a/import-layers/meta-openembedded/meta-gnome/recipes-connectivity/obex/obexd/ssize_t_definition.patch b/import-layers/meta-openembedded/meta-gnome/recipes-connectivity/obex/obexd/ssize_t_definition.patch index 2009dcd22..570cb9ef3 100644 --- a/import-layers/meta-openembedded/meta-gnome/recipes-connectivity/obex/obexd/ssize_t_definition.patch +++ b/import-layers/meta-openembedded/meta-gnome/recipes-connectivity/obex/obexd/ssize_t_definition.patch @@ -1,4 +1,7 @@ -include unistd.h to get ssize_t definitions +From fb5056fea9559b3ec3bb61967a112b6c793b700d Mon Sep 17 00:00:00 2001 +From: Khem Raj <raj.khem@gmail.com> +Date: Tue, 8 Jan 2013 21:33:34 -0800 +Subject: [PATCH] include unistd.h to get ssize_t definitions Fixes errors like @@ -18,15 +21,20 @@ Fixes errors like Upstream-Status: Pending Signed-off-by: Khem Raj <raj.khem@gmail.com> -Index: obexd-0.44/plugins/mas.c -=================================================================== ---- obexd-0.44.orig/plugins/mas.c 2012-01-11 14:53:53.000000000 -0800 -+++ obexd-0.44/plugins/mas.c 2013-01-08 12:51:12.681882174 -0800 -@@ -29,6 +29,7 @@ + +--- + plugins/mas.c | 1 + + 1 file changed, 1 insertion(+) + +diff --git a/plugins/mas.c b/plugins/mas.c +index 1b18059..b519507 100644 +--- a/plugins/mas.c ++++ b/plugins/mas.c +@@ -30,6 +30,7 @@ #include <glib.h> #include <fcntl.h> #include <inttypes.h> +#include <unistd.h> - #include "obexd.h" - #include "plugin.h" + #include <gobex/gobex.h> + #include <gobex/gobex-apparam.h> diff --git a/import-layers/meta-openembedded/meta-gnome/recipes-devtools/glade/glade3/0001-Add-G_GNUC_PRINTF-on-functions-with-format-strings.patch b/import-layers/meta-openembedded/meta-gnome/recipes-devtools/glade/glade3/0001-Add-G_GNUC_PRINTF-on-functions-with-format-strings.patch new file mode 100644 index 000000000..03cb762ce --- /dev/null +++ b/import-layers/meta-openembedded/meta-gnome/recipes-devtools/glade/glade3/0001-Add-G_GNUC_PRINTF-on-functions-with-format-strings.patch @@ -0,0 +1,62 @@ +From fcf29abe59607b5791f9de18ddb86b9ae3c9b7cc Mon Sep 17 00:00:00 2001 +From: Khem Raj <raj.khem@gmail.com> +Date: Sat, 26 Aug 2017 23:50:05 -0700 +Subject: [PATCH] Add G_GNUC_PRINTF on functions with format strings + +This allows compilation with clang without errors, even when +-Wformat-nonliteral is active (as long as there are no real cases of +non literal formatting). + +Signed-off-by: Khem Raj <raj.khem@gmail.com> +--- + gladeui/glade-command.c | 4 ++-- + gladeui/glade-utils.c | 4 ++-- + 2 files changed, 4 insertions(+), 4 deletions(-) + +diff --git a/gladeui/glade-command.c b/gladeui/glade-command.c +index 9819766..4ac40ee 100644 +--- a/gladeui/glade-command.c ++++ b/gladeui/glade-command.c +@@ -266,7 +266,7 @@ glade_command_collapse (GladeCommand *command, + * + * Marks the begining of a group. + */ +-void ++G_GNUC_PRINTF(1, 2) void + glade_command_push_group (const gchar *fmt, ...) + { + va_list args; +@@ -655,7 +655,7 @@ glade_command_set_properties_list (GladeProject *project, GList *props) + + multiple = g_list_length (me->sdata) > 1; + if (multiple) +- glade_command_push_group (cmd->description); ++ glade_command_push_group ("%s", cmd->description); + + + glade_command_check_group (GLADE_COMMAND (me)); +diff --git a/gladeui/glade-utils.c b/gladeui/glade-utils.c +index ae52501..c51ae59 100644 +--- a/gladeui/glade-utils.c ++++ b/gladeui/glade-utils.c +@@ -197,7 +197,7 @@ glade_utils_get_pspec_from_funcname (const gchar *funcname) + * selected "OK", True if the @type was GLADE_UI_YES_OR_NO and + * the user selected "YES"; False otherwise. + */ +-gint ++G_GNUC_PRINTF(4, 5) gint + glade_util_ui_message (GtkWidget *parent, + GladeUIMessageType type, + GtkWidget *widget, +@@ -320,7 +320,7 @@ remove_message_timeout (FlashInfo * fi) + * + * Flash a temporary message on the statusbar. + */ +-void ++G_GNUC_PRINTF(3, 4) void + glade_util_flash_message (GtkWidget *statusbar, guint context_id, gchar *format, ...) + { + va_list args; +-- +2.14.1 + diff --git a/import-layers/meta-openembedded/meta-gnome/recipes-devtools/glade/glade3/0001-gnome-doc-utils.make-sysrooted-pkg-config.patch b/import-layers/meta-openembedded/meta-gnome/recipes-devtools/glade/glade3/0001-gnome-doc-utils.make-sysrooted-pkg-config.patch new file mode 100644 index 000000000..1b24c39ce --- /dev/null +++ b/import-layers/meta-openembedded/meta-gnome/recipes-devtools/glade/glade3/0001-gnome-doc-utils.make-sysrooted-pkg-config.patch @@ -0,0 +1,51 @@ +From aed002cd9ff9e8f972120fbac33b4a65aba952e1 Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?Andreas=20M=C3=BCller?= <schnitzeltony@googlemail.com> +Date: Tue, 25 Sep 2012 10:28:33 +0200 +Subject: [PATCH] gnome-doc-utils.make: sysrooted pkg-config +MIME-Version: 1.0 +Content-Type: text/plain; charset=UTF-8 +Content-Transfer-Encoding: 8bit + +same approach as used used in gnome-disk-utility: + +In cross environment we have to prepend the sysroot to the path found by +pkgconfig since the path returned from pkgconfig does not have sysroot prefixed +it ends up using the files from host system. Now usually people have gnome installed +so the build succeeds but if you dont have gnome installed on build host then +it wont find the files on host system and packages using gnome-doc-utils wont +compile. + +This should work ok with non sysrooted builds too since in those cases PKG_CONFIG_SYSROOT_DIR +will be empty + +Upstream-Status: pending + +Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> +--- + gnome-doc-utils.make | 10 +++++----- + 1 files changed, 5 insertions(+), 5 deletions(-) + +diff --git a/gnome-doc-utils.make b/gnome-doc-utils.make +index 42d9df3..f71bbfa 100644 +--- a/gnome-doc-utils.make ++++ b/gnome-doc-utils.make +@@ -133,11 +133,11 @@ _DOC_ABS_SRCDIR = @abs_srcdir@ + _xml2po ?= `which xml2po` + _xml2po_mode = $(if $(DOC_ID),mallard,docbook) + +-_db2html ?= `$(PKG_CONFIG) --variable db2html gnome-doc-utils` +-_db2omf ?= `$(PKG_CONFIG) --variable db2omf gnome-doc-utils` +-_chunks ?= `$(PKG_CONFIG) --variable xmldir gnome-doc-utils`/gnome/xslt/docbook/utils/chunks.xsl +-_credits ?= `$(PKG_CONFIG) --variable xmldir gnome-doc-utils`/gnome/xslt/docbook/utils/credits.xsl +-_ids ?= $(shell $(PKG_CONFIG) --variable xmldir gnome-doc-utils)/gnome/xslt/docbook/utils/ids.xsl ++_db2html ?= ${PKG_CONFIG_SYSROOT_DIR}`$(PKG_CONFIG) --variable db2html gnome-doc-utils` ++_db2omf ?= ${PKG_CONFIG_SYSROOT_DIR}`$(PKG_CONFIG) --variable db2omf gnome-doc-utils` ++_chunks ?= ${PKG_CONFIG_SYSROOT_DIR}`$(PKG_CONFIG) --variable xmldir gnome-doc-utils`/gnome/xslt/docbook/utils/chunks.xsl ++_credits ?= ${PKG_CONFIG_SYSROOT_DIR}`$(PKG_CONFIG) --variable xmldir gnome-doc-utils`/gnome/xslt/docbook/utils/credits.xsl ++_ids ?= ${PKG_CONFIG_SYSROOT_DIR}`$(PKG_CONFIG) --variable xmldir gnome-doc-utils`/gnome/xslt/docbook/utils/ids.xsl + + if ENABLE_SK + _ENABLE_SK = true +-- +1.7.6.5 + diff --git a/import-layers/meta-openembedded/meta-gnome/recipes-devtools/glade/glade3/0002-fix-gcc-6-build.patch b/import-layers/meta-openembedded/meta-gnome/recipes-devtools/glade/glade3/0002-fix-gcc-6-build.patch new file mode 100644 index 000000000..f735ff819 --- /dev/null +++ b/import-layers/meta-openembedded/meta-gnome/recipes-devtools/glade/glade3/0002-fix-gcc-6-build.patch @@ -0,0 +1,39 @@ +From 5aa3d2abb905fa8594f6c6572a87809da54c9342 Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?Andreas=20M=C3=BCller?= <schnitzeltony@googlemail.com> +Date: Mon, 5 Sep 2016 11:25:27 +0200 +Subject: [PATCH] fix gcc-6 build +MIME-Version: 1.0 +Content-Type: text/plain; charset=UTF-8 +Content-Transfer-Encoding: 8bit + +Upstream-Status: Pending + +Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> +--- + gladeui/glade-editor-property.c | 3 +++ + 1 file changed, 3 insertions(+) + +diff --git a/gladeui/glade-editor-property.c b/gladeui/glade-editor-property.c +index a0c1039..5e9ac38 100644 +--- a/gladeui/glade-editor-property.c ++++ b/gladeui/glade-editor-property.c +@@ -2703,6 +2703,8 @@ glade_eprop_object_view (gboolean radio) + } + + ++#pragma GCC diagnostic push ++#pragma GCC diagnostic ignored "-Wformat-nonliteral" + static gchar * + glade_eprop_object_dialog_title (GladeEditorProperty *eprop) + { +@@ -2731,6 +2733,7 @@ glade_eprop_object_dialog_title (GladeEditorProperty *eprop) + return g_strdup_printf (format, g_type_name + (eprop->klass->pspec->value_type)); + } ++#pragma GCC diagnostic pop + + + gboolean +-- +2.5.5 + diff --git a/import-layers/meta-openembedded/meta-gnome/recipes-devtools/glade/glade3_%.bbappend b/import-layers/meta-openembedded/meta-gnome/recipes-devtools/glade/glade3_%.bbappend deleted file mode 100644 index 3abacfb86..000000000 --- a/import-layers/meta-openembedded/meta-gnome/recipes-devtools/glade/glade3_%.bbappend +++ /dev/null @@ -1 +0,0 @@ -PACKAGECONFIG ??= "gnome" diff --git a/import-layers/meta-openembedded/meta-gnome/recipes-devtools/glade/glade3_3.8.5.bb b/import-layers/meta-openembedded/meta-gnome/recipes-devtools/glade/glade3_3.8.5.bb new file mode 100644 index 000000000..c3da3e9b9 --- /dev/null +++ b/import-layers/meta-openembedded/meta-gnome/recipes-devtools/glade/glade3_3.8.5.bb @@ -0,0 +1,23 @@ +SUMMARY = "Glade - A User Interface Designer" +HOMEPAGE = "http://www.gnu.org/software/gnash" +LICENSE = "GPLv2 & LGPLv2" +LIC_FILES_CHKSUM = "file://COPYING;md5=aabe87591cb8ae0f3c68be6977bb5522 \ + file://COPYING.GPL;md5=9ac2e7cff1ddaf48b6eab6028f23ef88 \ + file://COPYING.LGPL;md5=252890d9eee26aab7b432e8b8a616475" +DEPENDS = "gtk+ gnome-doc-utils gnome-common libxml2 intltool-native" + +inherit distro_features_check autotools pkgconfig pythonnative gtk-icon-cache + +REQUIRED_DISTRO_FEATURES = "x11" + +SRC_URI = "http://ftp.gnome.org/pub/GNOME/sources/glade3/3.8/glade3-${PV}.tar.xz \ + file://0001-gnome-doc-utils.make-sysrooted-pkg-config.patch \ + file://0002-fix-gcc-6-build.patch \ + file://0001-Add-G_GNUC_PRINTF-on-functions-with-format-strings.patch \ + " +SRC_URI[md5sum] = "4e4b4f5ee34a03e017e4cef97d796c1f" +SRC_URI[sha256sum] = "58a5f6e4df4028230ddecc74c564808b7ec4471b1925058e29304f778b6b2735" + +EXTRA_OECONF += "--disable-scrollkeeper" + +FILES_${PN} += "${datadir}/icons" diff --git a/import-layers/meta-openembedded/meta-gnome/recipes-extended/gparted/gparted_0.28.1.bb b/import-layers/meta-openembedded/meta-gnome/recipes-extended/gparted/gparted_0.31.0.bb index 83ab6f29d..58beaf6c5 100644 --- a/import-layers/meta-openembedded/meta-gnome/recipes-extended/gparted/gparted_0.28.1.bb +++ b/import-layers/meta-openembedded/meta-gnome/recipes-extended/gparted/gparted_0.31.0.bb @@ -3,15 +3,17 @@ HOMEPAGE = "http://gparted.org/index.php" LICENSE = "GPLv2" LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f" -inherit autotools pkgconfig gtk-icon-cache +inherit distro_features_check autotools pkgconfig gtk-icon-cache + +REQUIRED_DISTRO_FEATURES = "x11" SRC_URI = " \ ${SOURCEFORGE_MIRROR}/project/${BPN}/${BPN}/${BPN}-${PV}/${BPN}-${PV}.tar.gz \ file://org.yoctoproject.pkexec.run-gparted.policy \ file://gparted_polkit \ " -SRC_URI[md5sum] = "ab72464a3ab2137664d9df8462befd3f" -SRC_URI[sha256sum] = "76891f14394754f7d6ecceba2af0e585bf89f9d780c389a255dcd41a2f45d333" +SRC_URI[md5sum] = "c554cc5734c50459dd551bd3fa10710e" +SRC_URI[sha256sum] = "3b7b49a434d9e4b397bc41a1f5acab8539b9ff402b472dfd83ad77b2decd07ba" DEPENDS = "glib-2.0 glib-2.0-native gtkmm parted gnome-doc-utils intltool-native" diff --git a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/abiword/abiword_3.0.2.bb b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/abiword/abiword_3.0.2.bb index 2a13e4839..d2c0186b5 100644 --- a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/abiword/abiword_3.0.2.bb +++ b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/abiword/abiword_3.0.2.bb @@ -8,7 +8,6 @@ DEPENDS = " \ gtk+ \ gtkmathview \ wv \ - libglade \ libfribidi \ jpeg \ libpng \ @@ -38,7 +37,9 @@ SRC_URI[sha256sum] = "afbfd458fd02989d8b0c6362ba8a4c14686d89666f54cfdb5501bd2090 #want 3.x from 3.x.y for the installation directory SHRT_VER = "${@d.getVar('PV').split('.')[0]}.${@d.getVar('PV').split('.')[1]}" -inherit autotools-brokensep pkgconfig +inherit distro_features_check autotools-brokensep pkgconfig + +REQUIRED_DISTRO_FEATURES = "x11" PACKAGECONFIG ??= " \ collab-backend-xmpp collab-backend-tcp \ diff --git a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/bonobo/files/0001-bonobo-ui-node-qualify-functions-with-G_GNUC_PRINTF.patch b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/bonobo/files/0001-bonobo-ui-node-qualify-functions-with-G_GNUC_PRINTF.patch deleted file mode 100644 index e9aebb853..000000000 --- a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/bonobo/files/0001-bonobo-ui-node-qualify-functions-with-G_GNUC_PRINTF.patch +++ /dev/null @@ -1,49 +0,0 @@ -From b75879e8c3e24d338c0e5843d616bc9b02da4d04 Mon Sep 17 00:00:00 2001 -From: Khem Raj <raj.khem@gmail.com> -Date: Sat, 26 Aug 2017 09:52:17 -0700 -Subject: [PATCH] bonobo-ui-node: qualify functions with G_GNUC_PRINTF - -This helps compiler in doing format checking correctly -Fixes -bonobo-ui-node.c:864:38: error: format string is not a string literal [-Werror,-Wformat-nonliteral] -| g_logv ("XML", G_LOG_LEVEL_ERROR, msg, args); - -Signed-off-by: Khem Raj <raj.khem@gmail.com> ---- - bonobo/bonobo-ui-node.c | 6 +++--- - 1 file changed, 3 insertions(+), 3 deletions(-) - -diff --git a/bonobo/bonobo-ui-node.c b/bonobo/bonobo-ui-node.c -index 9bab5e5..6ec66e2 100644 ---- a/bonobo/bonobo-ui-node.c -+++ b/bonobo/bonobo-ui-node.c -@@ -835,7 +835,7 @@ uiCharacters (ParseState *ps, const xmlChar *chars, int len) - g_string_append_len (ps->content, chars, len); - } - --static void -+static G_GNUC_PRINTF(2, 3) void - uiWarning (ParseState *ps, const char *msg, ...) - { - va_list args; -@@ -845,7 +845,7 @@ uiWarning (ParseState *ps, const char *msg, ...) - va_end (args); - } - --static void -+static G_GNUC_PRINTF(2, 3) void - uiError (ParseState *ps, const char *msg, ...) - { - va_list args; -@@ -855,7 +855,7 @@ uiError (ParseState *ps, const char *msg, ...) - va_end (args); - } - --static void -+static G_GNUC_PRINTF(2, 3) void - uiFatalError (ParseState *ps, const char *msg, ...) - { - va_list args; --- -2.14.1 - diff --git a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/bonobo/files/gcc5.patch b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/bonobo/files/gcc5.patch deleted file mode 100644 index f7528adad..000000000 --- a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/bonobo/files/gcc5.patch +++ /dev/null @@ -1,12 +0,0 @@ -Index: libbonoboui-2.24.5/tools/browser/Makefile.am -=================================================================== ---- libbonoboui-2.24.5.orig/tools/browser/Makefile.am -+++ libbonoboui-2.24.5/tools/browser/Makefile.am -@@ -2,7 +2,6 @@ INCLUDES = \ - -DBONOBO_BROWSER_DATADIR=\""$(datadir)"\" \ - -DBONOBO_SUPPORT_LOCALEDIR=\""$(datadir)/locale"\" \ - -I$(srcdir) -I$(top_srcdir) \ -- -I$(top_srcdir)/bonobo-browser \ - $(BONOBOUI_CFLAGS) \ - $(WARN_CFLAGS) - diff --git a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/bonobo/files/gtk-doc.m4 b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/bonobo/files/gtk-doc.m4 deleted file mode 100644 index 3ec41666b..000000000 --- a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/bonobo/files/gtk-doc.m4 +++ /dev/null @@ -1,53 +0,0 @@ -dnl -*- mode: autoconf -*- - -# serial 1 - -dnl Usage: -dnl GTK_DOC_CHECK([minimum-gtk-doc-version]) -AC_DEFUN([GTK_DOC_CHECK], -[ - AC_BEFORE([AC_PROG_LIBTOOL],[$0])dnl setup libtool first - AC_BEFORE([AM_PROG_LIBTOOL],[$0])dnl setup libtool first - dnl for overriding the documentation installation directory - AC_ARG_WITH(html-dir, - AC_HELP_STRING([--with-html-dir=PATH], [path to installed docs]),, - [with_html_dir='${datadir}/gtk-doc/html']) - HTML_DIR="$with_html_dir" - AC_SUBST(HTML_DIR) - - dnl enable/disable documentation building - AC_ARG_ENABLE(gtk-doc, - AC_HELP_STRING([--enable-gtk-doc], - [use gtk-doc to build documentation [default=no]]),, - enable_gtk_doc=no) - - have_gtk_doc=no - if test -z "$PKG_CONFIG"; then - AC_PATH_PROG(PKG_CONFIG, pkg-config, no) - fi - if test "$PKG_CONFIG" != "no" && $PKG_CONFIG --exists gtk-doc; then - have_gtk_doc=yes - fi - - dnl do we want to do a version check? -ifelse([$1],[],, - [gtk_doc_min_version=$1 - if test "$have_gtk_doc" = yes; then - AC_MSG_CHECKING([gtk-doc version >= $gtk_doc_min_version]) - if $PKG_CONFIG --atleast-version $gtk_doc_min_version gtk-doc; then - AC_MSG_RESULT(yes) - else - AC_MSG_RESULT(no) - have_gtk_doc=no - fi - fi -]) - if test x$enable_gtk_doc = xyes; then - if test "$have_gtk_doc" != yes; then - enable_gtk_doc=no - fi - fi - - AM_CONDITIONAL(ENABLE_GTK_DOC, test x$enable_gtk_doc = xyes) - AM_CONDITIONAL(GTK_DOC_USE_LIBTOOL, test -n "$LIBTOOL") -]) diff --git a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/bonobo/files/gtk-doc.make b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/bonobo/files/gtk-doc.make deleted file mode 100644 index 354ffb7c6..000000000 --- a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/bonobo/files/gtk-doc.make +++ /dev/null @@ -1,173 +0,0 @@ -# -*- mode: makefile -*- - -#################################### -# Everything below here is generic # -#################################### - -if GTK_DOC_USE_LIBTOOL -GTKDOC_CC = $(LIBTOOL) --mode=compile $(CC) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -GTKDOC_LD = $(LIBTOOL) --mode=link $(CC) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -else -GTKDOC_CC = $(CC) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -GTKDOC_LD = $(CC) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -endif - -# We set GPATH here; this gives us semantics for GNU make -# which are more like other make's VPATH, when it comes to -# whether a source that is a target of one rule is then -# searched for in VPATH/GPATH. -# -GPATH = $(srcdir) - -TARGET_DIR=$(HTML_DIR)/$(DOC_MODULE) - -EXTRA_DIST = \ - $(content_files) \ - $(HTML_IMAGES) \ - $(DOC_MAIN_SGML_FILE) \ - $(DOC_MODULE)-sections.txt \ - $(DOC_MODULE)-overrides.txt - -DOC_STAMPS=scan-build.stamp tmpl-build.stamp sgml-build.stamp html-build.stamp \ - $(srcdir)/tmpl.stamp $(srcdir)/sgml.stamp $(srcdir)/html.stamp - -SCANOBJ_FILES = \ - $(DOC_MODULE).args \ - $(DOC_MODULE).hierarchy \ - $(DOC_MODULE).interfaces \ - $(DOC_MODULE).prerequisites \ - $(DOC_MODULE).signals - -REPORT_FILES = \ - $(DOC_MODULE)-undocumented.txt \ - $(DOC_MODULE)-undeclared.txt \ - $(DOC_MODULE)-unused.txt - -CLEANFILES = $(SCANOBJ_FILES) $(REPORT_FILES) $(DOC_STAMPS) - -if ENABLE_GTK_DOC -all-local: html-build.stamp -else -all-local: -endif - -docs: html-build.stamp - -#### scan #### - -scan-build.stamp: $(HFILE_GLOB) $(CFILE_GLOB) - @echo 'gtk-doc: Scanning header files' - @-chmod -R u+w $(srcdir) - cd $(srcdir) && \ - gtkdoc-scan --module=$(DOC_MODULE) --source-dir=$(DOC_SOURCE_DIR) --ignore-headers="$(IGNORE_HFILES)" $(SCAN_OPTIONS) $(EXTRA_HFILES) - if grep -l '^..*$$' $(srcdir)/$(DOC_MODULE).types > /dev/null 2>&1 ; then \ - CC="$(GTKDOC_CC)" LD="$(GTKDOC_LD)" CFLAGS="$(GTKDOC_CFLAGS)" LDFLAGS="$(GTKDOC_LIBS)" gtkdoc-scangobj $(SCANGOBJ_OPTIONS) --module=$(DOC_MODULE) --output-dir=$(srcdir) ; \ - else \ - cd $(srcdir) ; \ - for i in $(SCANOBJ_FILES) ; do \ - test -f $$i || touch $$i ; \ - done \ - fi - touch scan-build.stamp - -$(DOC_MODULE)-decl.txt $(SCANOBJ_FILES) $(DOC_MODULE)-sections.txt $(DOC_MODULE)-overrides.txt: scan-build.stamp - @true - -#### templates #### - -tmpl-build.stamp: $(DOC_MODULE)-decl.txt $(SCANOBJ_FILES) $(DOC_MODULE)-sections.txt $(DOC_MODULE)-overrides.txt - @echo 'gtk-doc: Rebuilding template files' - @-chmod -R u+w $(srcdir) - cd $(srcdir) && gtkdoc-mktmpl --module=$(DOC_MODULE) $(MKTMPL_OPTIONS) - touch tmpl-build.stamp - -tmpl.stamp: tmpl-build.stamp - @true - -tmpl/*.sgml: - @true - - -#### xml #### - -sgml-build.stamp: tmpl.stamp $(HFILE_GLOB) $(CFILE_GLOB) $(DOC_MODULE)-sections.txt $(srcdir)/tmpl/*.sgml $(expand_content_files) - @echo 'gtk-doc: Building XML' - @-chmod -R u+w $(srcdir) - cd $(srcdir) && \ - gtkdoc-mkdb --module=$(DOC_MODULE) --source-dir=$(DOC_SOURCE_DIR) --output-format=xml --expand-content-files="$(expand_content_files)" --main-sgml-file=$(DOC_MAIN_SGML_FILE) $(MKDB_OPTIONS) - touch sgml-build.stamp - -sgml.stamp: sgml-build.stamp - @true - -#### html #### - -html-build.stamp: sgml.stamp $(DOC_MAIN_SGML_FILE) $(content_files) - @echo 'gtk-doc: Building HTML' - @-chmod -R u+w $(srcdir) - rm -rf $(srcdir)/html - mkdir $(srcdir)/html - cd $(srcdir)/html && gtkdoc-mkhtml $(DOC_MODULE) ../$(DOC_MAIN_SGML_FILE) - test "x$(HTML_IMAGES)" = "x" || ( cd $(srcdir) && cp $(HTML_IMAGES) html ) - @echo 'gtk-doc: Fixing cross-references' - cd $(srcdir) && gtkdoc-fixxref --module-dir=html --html-dir=$(HTML_DIR) $(FIXXREF_OPTIONS) - touch html-build.stamp - -############## - -clean-local: - rm -f *~ *.bak - rm -rf .libs - -distclean-local: - cd $(srcdir) && \ - rm -rf xml $(REPORT_FILES) \ - $(DOC_MODULE)-decl-list.txt $(DOC_MODULE)-decl.txt - -maintainer-clean-local: clean - cd $(srcdir) && rm -rf xml html - -install-data-local: - -installfiles=`echo $(srcdir)/html/*`; \ - if test "$$installfiles" = '$(srcdir)/html/*'; \ - then echo '-- Nothing to install' ; \ - else \ - $(mkinstalldirs) $(DESTDIR)$(TARGET_DIR); \ - for i in $$installfiles; do \ - echo '-- Installing '$$i ; \ - $(INSTALL_DATA) $$i $(DESTDIR)$(TARGET_DIR); \ - done; \ - echo '-- Installing $(srcdir)/html/index.sgml' ; \ - $(INSTALL_DATA) $(srcdir)/html/index.sgml $(DESTDIR)$(TARGET_DIR) || :; \ - which gtkdoc-rebase >/dev/null && \ - gtkdoc-rebase --relative --dest-dir=$(DESTDIR) --html-dir=$(DESTDIR)$(TARGET_DIR) ; \ - fi - - -uninstall-local: - rm -f $(DESTDIR)$(TARGET_DIR)/* - -# -# Require gtk-doc when making dist -# -if ENABLE_GTK_DOC -dist-check-gtkdoc: -else -dist-check-gtkdoc: - @echo "*** gtk-doc must be installed and enabled in order to make dist" - @false -endif - -dist-hook: dist-check-gtkdoc dist-hook-local - mkdir $(distdir)/tmpl - mkdir $(distdir)/xml - mkdir $(distdir)/html - -cp $(srcdir)/tmpl/*.sgml $(distdir)/tmpl - -cp $(srcdir)/xml/*.xml $(distdir)/xml - cp $(srcdir)/html/* $(distdir)/html - -cp $(srcdir)/$(DOC_MODULE).types $(distdir)/ - -cp $(srcdir)/$(DOC_MODULE)-sections.txt $(distdir)/ - cd $(distdir) && rm -f $(DISTCLEANFILES) - -gtkdoc-rebase --online --relative --html-dir=$(distdir)/html - -.PHONY : dist-hook-local docs diff --git a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/bonobo/libbonobo.inc b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/bonobo/libbonobo.inc deleted file mode 100644 index e4759a87c..000000000 --- a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/bonobo/libbonobo.inc +++ /dev/null @@ -1,30 +0,0 @@ -DESCRIPTION = "Bonobo CORBA interfaces library" -LICENSE = "GPLv2 & LGPLv2.1" -LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f \ - file://COPYING.LIB;md5=7fbc338309ac38fefcd64b04bb903e34" -SECTION = "x11/gnome/libs" -DEPENDS = "gnome-common-native glib-2.0 orbit2-native orbit2 intltool-native libxml2 dbus dbus-glib" - -inherit gnomebase gtk-doc lib_package - -EXTRA_OECONF += "'PERL_PATH=${USRBINPATH}/env perl'" -ORBIT_IDL_SRC = "${STAGING_BINDIR_NATIVE}/orbit-idl-2" - -RDEPENDS_${PN}-bin = "${PN} perl" -FILES_${PN} += "${libdir}/orbit-2.0/*.so ${libdir}/bonobo/monikers/*.so" -FILES_${PN}-dbg += "${libdir}/bonobo/monikers/.debug \ - ${libdir}/bonobo-2.0/samples/.debug ${libdir}/orbit-2.0/.debug" -FILES_${PN}-dev += "${libdir}/orbit-2.0/*.la ${libdir}/bonobo/monikers/*.la ${libdir}/bonobo-2.0/samples" -FILES_${PN}-staticdev += "${libdir}/orbit-2.0/*.a ${libdir}/bonobo/monikers/*.a" - -LEAD_SONAME = "libbonobo-2.so" - -PARALLEL_MAKE = "" - -do_compile() { - oe_runmake ORBIT_IDL="${ORBIT_IDL_SRC}" -} - -do_install() { - oe_runmake ORBIT_IDL="${ORBIT_IDL_SRC}" DESTDIR="${D}" install -} diff --git a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/bonobo/libbonobo/0001-Remove-use-of-G_DISABLE_DEPRECATED.patch b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/bonobo/libbonobo/0001-Remove-use-of-G_DISABLE_DEPRECATED.patch deleted file mode 100644 index 44cf1f9fa..000000000 --- a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/bonobo/libbonobo/0001-Remove-use-of-G_DISABLE_DEPRECATED.patch +++ /dev/null @@ -1,47 +0,0 @@ -From fef13a371fc91f6d9b42518126c2a8b459fdf0e8 Mon Sep 17 00:00:00 2001 -From: Colin Walters <walters@verbum.org> -Date: Thu, 2 May 2013 14:17:38 -0400 -Subject: [PATCH] Remove use of G_DISABLE_DEPRECATED -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit - -This now trips up on GStaticRecMutex; I'm not going to bother to port, -realistically no one is actively maintaining this code anymore. - -Upstream-Status: Applied - -Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> ---- - activation-server/Makefile.am | 1 - - configure.in | 2 +- - 2 files changed, 1 insertions(+), 2 deletions(-) - -diff --git a/activation-server/Makefile.am b/activation-server/Makefile.am -index efb18a8..ffa90f6 100644 ---- a/activation-server/Makefile.am -+++ b/activation-server/Makefile.am -@@ -17,7 +17,6 @@ INCLUDES= \ - $(SERVER_CFLAGS) \ - $(WARN_CFLAGS) \ - -DSERVER_CONFDIR=\"$(sysconfdir)\" \ -- -DG_DISABLE_DEPRECATED \ - -DG_LOG_DOMAIN=\"Bonobo-Activation-Server\" \ - $(NULL) - -diff --git a/configure.in b/configure.in -index 70a4e26..6be2bca 100644 ---- a/configure.in -+++ b/configure.in -@@ -132,7 +132,7 @@ AC_SUBST(SERVER_LIBS) - AC_SUBST(SERVER_CFLAGS) - - if test "$enable_maintainer_mode" = "yes"; then -- DISABLE_DEPRECATED_CFLAGS="-DG_DISABLE_DEPRECATED -DG_DISABLE_SINGLE_INCLUDES" -+ DISABLE_DEPRECATED_CFLAGS="-DG_DISABLE_SINGLE_INCLUDES" - AC_SUBST(DISABLE_DEPRECATED_CFLAGS) - fi - --- -1.7.6.5 - diff --git a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/bonobo/libbonobo/do-not-use-srcdir-variable.patch b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/bonobo/libbonobo/do-not-use-srcdir-variable.patch deleted file mode 100644 index a20edda84..000000000 --- a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/bonobo/libbonobo/do-not-use-srcdir-variable.patch +++ /dev/null @@ -1,24 +0,0 @@ -| tests/Makefile.am:55: error: using '$(srcdir)' in TESTS is currently broken: '$(srcdir)/te -st-properties.sh' -| tests/test-activation/Makefile.am:76: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS -' (or '*_CPPFLAGS') -| utils/Makefile.am:9: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS -') -| autoreconf: automake failed with exit status: 1 - -Signed-off-by: Khem Raj <raj.khem@gmail.com> -Upstream-Status: Not Submitted - -Index: libbonobo-2.32.1/tests/Makefile.am -=================================================================== ---- libbonobo-2.32.1.orig/tests/Makefile.am 2010-08-29 04:56:00.000000000 -0700 -+++ libbonobo-2.32.1/tests/Makefile.am 2014-04-25 15:38:22.024744384 -0700 -@@ -55,7 +55,7 @@ - MODELS_DIR="$(srcdir)/models" - - TESTS = test-moniker$(EXEEXT) test-event-source$(EXEEXT) test-object$(EXEEXT) \ -- test-stream-mem$(EXEEXT) $(srcdir)/test-properties.sh test-storage-mem$(EXEEXT) \ -+ test-stream-mem$(EXEEXT) test-properties.sh test-storage-mem$(EXEEXT) \ - test-main-loop$(EXEEXT) - - # TESTS += test-generic-factory.sh diff --git a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/bonobo/libbonobo/fix-nonliteral-in-string.patch b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/bonobo/libbonobo/fix-nonliteral-in-string.patch deleted file mode 100644 index 20db671e0..000000000 --- a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/bonobo/libbonobo/fix-nonliteral-in-string.patch +++ /dev/null @@ -1,26 +0,0 @@ -This checks whether the format string is a literal on the calling function. As bonobo_debug_print() -takes already a va_list, we specify the format on the functions that call it -The second number, which is 0 here, should then be the argument index of the variadic argument - -Fixed warning with clang - -| ../../libbonobo-2.32.1/bonobo/bonobo-debug.c:58:32: error: format string is not a string literal [-Werror,-Wformat-nonliteral] -| vfprintf (_bonobo_debug_file, fmt, args); -| ^~~ -| 1 error generated. - -Upstream-Status: Pending -Signed-off-by: Khem Raj <raj.khem@gmail.com> - -Index: libbonobo-2.32.1/bonobo/bonobo-debug.c -=================================================================== ---- libbonobo-2.32.1.orig/bonobo/bonobo-debug.c -+++ libbonobo-2.32.1/bonobo/bonobo-debug.c -@@ -47,6 +47,7 @@ bonobo_debug_init(void) - _bonobo_debug_file = stderr; - } - -+__attribute__((__format__ (printf, 2, 0))) - void - bonobo_debug_print (const char *name, char *fmt, ...) - { diff --git a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/bonobo/libbonobo_2.32.1.bb b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/bonobo/libbonobo_2.32.1.bb deleted file mode 100644 index 8e00eb4d2..000000000 --- a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/bonobo/libbonobo_2.32.1.bb +++ /dev/null @@ -1,9 +0,0 @@ -require libbonobo.inc - -SRC_URI += "file://0001-Remove-use-of-G_DISABLE_DEPRECATED.patch \ - file://do-not-use-srcdir-variable.patch \ - file://fix-nonliteral-in-string.patch \ - " -SRC_URI[archive.md5sum] = "27fa902d4fdf6762ee010e7053aaf77b" -SRC_URI[archive.sha256sum] = "9160d4f277646400d3bb6b4fa73636cc6d1a865a32b9d0760e1e9e6ee624976b" -GNOME_COMPRESS_TYPE="bz2" diff --git a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/bonobo/libbonoboui_2.24.5.bb b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/bonobo/libbonoboui_2.24.5.bb deleted file mode 100644 index b3ca0a465..000000000 --- a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/bonobo/libbonoboui_2.24.5.bb +++ /dev/null @@ -1,23 +0,0 @@ -SECTION = "x11/gnome/libs" -LICENSE = "GPLv2 & LGPLv2.1" -LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f \ - file://COPYING.LIB;md5=7fbc338309ac38fefcd64b04bb903e34" - -inherit gnomebase pkgconfig gtk-doc - -SRC_URI += "file://gcc5.patch \ - file://0001-bonobo-ui-node-qualify-functions-with-G_GNUC_PRINTF.patch \ - " - -SRC_URI[archive.md5sum] = "853be8e28aaa4ce48ba60be7d9046bf4" -SRC_URI[archive.sha256sum] = "fab5f2ac6c842d949861c07cb520afe5bee3dce55805151ce9cd01be0ec46fcd" -GNOME_COMPRESS_TYPE="bz2" - -DEPENDS = "libgnomecanvas libbonobo libgnome glib-2.0 gconf libxml2 libglade gnome-common intltool-native" - -FILES_${PN} += "${libdir}/libglade/2.0/*.so" -FILES_${PN}-dev += "${libdir}/libglade/2.0/*.la ${datadir}/gnome-2.0/ui \ - ${libdir}/bonobo-2.0/samples" -FILES_${PN}-staticdev += "${libdir}/libglade/2.0/*.a" -FILES_${PN}-dbg += "${libdir}/bonobo-2.0/samples/.debug \ - ${libdir}/libglade/2.0/.debug" diff --git a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/devilspie/devilspie2_0.42.bb b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/devilspie/devilspie2_0.43.bb index ae2ec5a59..6ef8e8a62 100644 --- a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/devilspie/devilspie2_0.42.bb +++ b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/devilspie/devilspie2_0.43.bb @@ -11,10 +11,12 @@ SRC_URI = " \ file://default.lua \ file://devilspie2.desktop \ " -SRC_URI[md5sum] = "f205409e921aa2d86481f1b8d518da45" -SRC_URI[sha256sum] = "11f5bc310fba4df404c057461ffb3fadac8ef51d211008c665c48f587a5a3f85" +SRC_URI[md5sum] = "26eed0b5b4af5c7e13c551eceaeab832" +SRC_URI[sha256sum] = "ecffc17c62b41e196b72340192a90c4223329df041f135e74c0990860595f828" -inherit pkgconfig gettext +inherit distro_features_check pkgconfig gettext + +REQUIRED_DISTRO_FEATURES = "x11" do_compile() { export GTK2=1 diff --git a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/devilspie/files/devilspie2.desktop b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/devilspie/files/devilspie2.desktop index e34e881cd..b80904a0d 100644 --- a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/devilspie/files/devilspie2.desktop +++ b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/devilspie/files/devilspie2.desktop @@ -1,5 +1,6 @@ [Desktop Entry] Type=Application Name=Devilspie2 +Comment=Perform scripted actions on windows as they are created Exec=devilspie2 -f /etc/devilspie2 diff --git a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/eds/evolution-data-server/0001-CMakeLists.txt-Remove-TRY_RUN-for-iconv.patch b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/eds/evolution-data-server/0001-CMakeLists.txt-Remove-TRY_RUN-for-iconv.patch new file mode 100644 index 000000000..a821a14ab --- /dev/null +++ b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/eds/evolution-data-server/0001-CMakeLists.txt-Remove-TRY_RUN-for-iconv.patch @@ -0,0 +1,39 @@ +From 131b88a81aba3d72d566bc8a9d968941a98e0007 Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?Andreas=20M=C3=BCller?= <schnitzeltony@gmail.com> +Date: Tue, 19 Dec 2017 16:37:20 +0100 +Subject: [PATCH] CMakeLists.txt: Remove TRY_RUN for iconv +MIME-Version: 1.0 +Content-Type: text/plain; charset=UTF-8 +Content-Transfer-Encoding: 8bit + +| CMake Error: TRY_RUN() invoked in cross-compiling mode, please set the following cache variables appropriately: +| _correct_iconv_EXITCODE (advanced) + +Upstream-Status: Inappropriate [OE specific] + +Signed-off-by: Andreas Müller <schnitzeltony@gmail.com> +--- + CMakeLists.txt | 5 ----- + 1 file changed, 5 deletions(-) + +diff --git a/CMakeLists.txt b/CMakeLists.txt +index 8d07772..a2396f2 100644 +--- a/CMakeLists.txt ++++ b/CMakeLists.txt +@@ -521,13 +521,8 @@ if(NOT HAVE_ICONV) + endif(NOT HAVE_ICONV) + + set(CMAKE_REQUIRED_LIBRARIES ${ICONV_LIBS}) +-CHECK_C_SOURCE_RUNS("#include \"${CMAKE_SOURCE_DIR}/iconv-detect.c\"" _correct_iconv) + unset(CMAKE_REQUIRED_LIBRARIES) + +-if(NOT _correct_iconv) +- message(FATAL_ERROR "You need to install a working iconv implementation, such as ftp://ftp.gnu.org/pub/gnu/libiconv") +-endif(NOT _correct_iconv) +- + # ****************************** + # Backtraces for debugging + # ****************************** +-- +2.14.3 + diff --git a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/eds/evolution-data-server/0001-imapx-Fix-signature-for-imapx_tokenise_struct.patch b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/eds/evolution-data-server/0001-imapx-Fix-signature-for-imapx_tokenise_struct.patch deleted file mode 100644 index f82a76df3..000000000 --- a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/eds/evolution-data-server/0001-imapx-Fix-signature-for-imapx_tokenise_struct.patch +++ /dev/null @@ -1,33 +0,0 @@ -From 0e10e976025b21d12df099e82951f759024ad649 Mon Sep 17 00:00:00 2001 -From: Khem Raj <raj.khem@gmail.com> -Date: Thu, 24 Aug 2017 22:04:56 -0700 -Subject: [PATCH] imapx: Fix signature for imapx_tokenise_struct() - -clang complains about different signature for this patch - -Fixes -camel/providers/imapx/camel-imapx-tokens.txt:56:1: error: conflicting types for 'imapx_tokenise_struct' -| imapx_tokenise_struct (register const char *str, register size_t len) -| ^ - -Signed-off-by: Khem Raj <raj.khem@gmail.com> ---- - camel/providers/imapx/camel-imapx-tokens.txt | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/camel/providers/imapx/camel-imapx-tokens.txt b/camel/providers/imapx/camel-imapx-tokens.txt -index d48501865..994c368c0 100644 ---- a/camel/providers/imapx/camel-imapx-tokens.txt -+++ b/camel/providers/imapx/camel-imapx-tokens.txt -@@ -1,7 +1,7 @@ - /* This contains all of the keywords we care about. These - can be converted to an id very efficiently */ - struct _imapx_keyword {const gchar *name; camel_imapx_id_t id; }; --struct _imapx_keyword *imapx_tokenise_struct (register const char *str, register unsigned int len); -+struct _imapx_keyword *imapx_tokenise_struct (register const char *str, register size_t len); - %% - ALERT, IMAPX_ALERT - APPENDUID, IMAPX_APPENDUID --- -2.14.1 - diff --git a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/eds/evolution-data-server/0002-CMakeLists.txt-remove-CHECK_C_SOURCE_RUNS-check.patch b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/eds/evolution-data-server/0002-CMakeLists.txt-remove-CHECK_C_SOURCE_RUNS-check.patch new file mode 100644 index 000000000..c8dc7e12c --- /dev/null +++ b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/eds/evolution-data-server/0002-CMakeLists.txt-remove-CHECK_C_SOURCE_RUNS-check.patch @@ -0,0 +1,53 @@ +From 210b204d9edd71202454ff04013cc52b23c598e4 Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?Andreas=20M=C3=BCller?= <schnitzeltony@gmail.com> +Date: Tue, 19 Dec 2017 16:55:13 +0100 +Subject: [PATCH] CMakeLists.txt: remove CHECK_C_SOURCE_RUNS check +MIME-Version: 1.0 +Content-Type: text/plain; charset=UTF-8 +Content-Transfer-Encoding: 8bit + +* TRY_RUN: does not work for OE +* HAVE_LKSTRFTIME is set by recipe as configure option + +Signed-off-by: Andreas Müller <schnitzeltony@gmail.com> +--- + CMakeLists.txt | 23 ----------------------- + 1 file changed, 23 deletions(-) + +diff --git a/CMakeLists.txt b/CMakeLists.txt +index a2396f2..f3b271b 100644 +--- a/CMakeLists.txt ++++ b/CMakeLists.txt +@@ -573,29 +573,6 @@ CHECK_C_SOURCE_COMPILES("#include <langinfo.h> + CHECK_C_SOURCE_COMPILES("#include <langinfo.h> + int main(void) { char *detail = nl_langinfo (_NL_ADDRESS_COUNTRY_AB2); return 0; }" HAVE__NL_ADDRESS_COUNTRY_AB2) + +-# ******************************************************* +-# Check to see if strftime supports the use of %l and %k +-# ******************************************************* +- +-CHECK_C_SOURCE_RUNS(" +- #include <stdlib.h> +- #include <string.h> +- #include <time.h> +- int main(int argc, char **argv) { +- char buf[10]; +- time_t rawtime; +- struct tm *timeinfo; +- +- time(&rawtime); +- timeinfo=localtime(&rawtime); +- buf[0] = 0; +- strftime(buf, 10, \"%lx%k\", timeinfo); +- +- if (!buf[0] || buf[0] == 'x' || strstr(buf, \"l\") || strstr(buf, \"k\")) +- return 1; +- return 0; +- }" HAVE_LKSTRFTIME) +- + # ****************************** + # system mail stuff + # ****************************** +-- +2.14.3 + diff --git a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/eds/evolution-data-server/0002-Fix-for-automake-1.12.x.patch b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/eds/evolution-data-server/0002-Fix-for-automake-1.12.x.patch deleted file mode 100644 index 5f222aeaa..000000000 --- a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/eds/evolution-data-server/0002-Fix-for-automake-1.12.x.patch +++ /dev/null @@ -1,32 +0,0 @@ -From f46423c9e4b8b19eda27b307456a717de79b75f3 Mon Sep 17 00:00:00 2001 -From: Nitin A Kamble <nitin.a.kamble@intel.com> -Date: Sun, 4 Aug 2013 09:15:43 +0200 -Subject: [PATCH 2/5] Fix for automake-1.12.x - -Fixed these kinds if warning-errors - -warning: 'libebookbackendfile.la': linking libtool libraries using a non-POSIX archiver requires 'AM_PROG_AR' in 'configure.ac' - -Upstream-Status: Pending - -Signed-Off-By: Nitin A Kamble <nitin.a.kamble@intel.com> -Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> ---- - configure.ac | 1 + - 1 file changed, 1 insertion(+) - -diff --git a/configure.ac b/configure.ac -index 9bd97db..49d7506 100644 ---- a/configure.ac -+++ b/configure.ac -@@ -31,6 +31,7 @@ AC_LANG(C) - - dnl Automake 1.11 - Silent Build Rules - m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) -+m4_ifdef([AM_PROG_AR], [AM_PROG_AR]) # required by automake 1.12 - - dnl Required Package Versions - m4_define([glib_minimum_version], [2.28]) --- -1.8.3.2 - diff --git a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/eds/evolution-data-server/0003-Disable-Werror-for-automake.patch b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/eds/evolution-data-server/0003-Disable-Werror-for-automake.patch deleted file mode 100644 index a182d4d5e..000000000 --- a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/eds/evolution-data-server/0003-Disable-Werror-for-automake.patch +++ /dev/null @@ -1,97 +0,0 @@ -From 37b227cff78fd4c652651662dafd71537280824e Mon Sep 17 00:00:00 2001 -From: Nitin A Kamble <nitin.a.kamble@intel.com> -Date: Sun, 4 Aug 2013 09:16:59 +0200 -Subject: [PATCH 3/5] Disable Werror for automake - -Avoid these warning-errors - -automake: warnings are treated as errors -Makefile.am:15: warning: '%'-style pattern rules are a GNU make extension -Makefile.am:21: warning: pkgconfig_DATA:-$(API_VERSION: non-POSIX variable name -addressbook/backends/file/Makefile.am: installing './depcomp' -addressbook/libebook/Makefile.am:55: warning: '%'-style pattern rules are a GNU make extension -addressbook/libebook/Makefile.am:65: warning: '%'-style pattern rules are a GNU make extension -addressbook/libebook/Makefile.am:66: warning: subst -,_,$*: non-POSIX variable name -addressbook/libebook/Makefile.am:66: (probably a GNU make extension) -addressbook/libebook/Makefile.am:72: warning: pkgconfig_DATA:-$(API_VERSION: non-POSIX variable name -addressbook/libedata-book/Makefile.am:2: warning: '%'-style pattern rules are a GNU make extension -addressbook/libedata-book/Makefile.am:3: warning: subst -,_,$*: non-POSIX variable name -addressbook/libedata-book/Makefile.am:3: (probably a GNU make extension) -glib-gen.mak:9: warning: '%'-style pattern rules are a GNU make extension -addressbook/libedata-book/Makefile.am:5: 'glib-gen.mak' included from here -glib-gen.mak:13: warning: '%'-style pattern rules are a GNU make extension -addressbook/libedata-book/Makefile.am:5: 'glib-gen.mak' included from here -glib-gen.mak:18: warning: '%'-style pattern rules are a GNU make extension -addressbook/libedata-book/Makefile.am:5: 'glib-gen.mak' included from here -glib-gen.mak:26: warning: '%'-style pattern rules are a GNU make extension -addressbook/libedata-book/Makefile.am:5: 'glib-gen.mak' included from here -glib-gen.mak:38: warning: '%'-style pattern rules are a GNU make extension -addressbook/libedata-book/Makefile.am:5: 'glib-gen.mak' included from here -glib-gen.mak:41: warning: '%'-style pattern rules are a GNU make extension -addressbook/libedata-book/Makefile.am:5: 'glib-gen.mak' included from here -addressbook/libedata-book/Makefile.am:86: warning: '%'-style pattern rules are a GNU make extension -addressbook/libedata-book/Makefile.am:101: warning: pkgconfig_DATA:-$(API_VERSION: non-POSIX variable name -calendar/backends/weather/Makefile.am:44: warning: '%'-style pattern rules are a GNU make extension -calendar/libecal/Makefile.am:53: warning: '%'-style pattern rules are a GNU make extension -calendar/libecal/Makefile.am:61: warning: '%'-style pattern rules are a GNU make extension -calendar/libecal/Makefile.am:62: warning: subst -,_,$*: non-POSIX variable name -calendar/libecal/Makefile.am:62: (probably a GNU make extension) calendar/libecal/Makefile.am:68: warning: pkgconfig_DATA:-$(API_VERSION: non-POSIX variable name -calendar/libedata-cal/Makefile.am:5: warning: '%'-style pattern rules are a GNU make extension -calendar/libedata-cal/Makefile.am:6: warning: subst -,_,$*: non-POSIX variable name -calendar/libedata-cal/Makefile.am:6: (probably a GNU make extension) -glib-gen.mak:9: warning: '%'-style pattern rules are a GNU make extension -calendar/libedata-cal/Makefile.am:8: 'glib-gen.mak' included from here -glib-gen.mak:13: warning: '%'-style pattern rules are a GNU make extension -calendar/libedata-cal/Makefile.am:8: 'glib-gen.mak' included from here -glib-gen.mak:18: warning: '%'-style pattern rules are a GNU make extension -calendar/libedata-cal/Makefile.am:8: 'glib-gen.mak' included from here -glib-gen.mak:26: warning: '%'-style pattern rules are a GNU make extension -calendar/libedata-cal/Makefile.am:8: 'glib-gen.mak' included from here -glib-gen.mak:38: warning: '%'-style pattern rules are a GNU make extension -calendar/libedata-cal/Makefile.am:8: 'glib-gen.mak' included from here -glib-gen.mak:41: warning: '%'-style pattern rules are a GNU make extension -calendar/libedata-cal/Makefile.am:8: 'glib-gen.mak' included from here -calendar/libedata-cal/Makefile.am:71: warning: '%'-style pattern rules are a GNU make extension -calendar/libedata-cal/Makefile.am:86: warning: pkgconfig_DATA:-$(API_VERSION: non-POSIX variable name -camel/Makefile.am:17: warning: '%'-style pattern rules are a GNU make extension -libebackend/Makefile.am:35: warning: '%'-style pattern rules are a GNU make extension -libebackend/Makefile.am:41: warning: pkgconfig_DATA:-$(API_VERSION: non-POSIX variable name -libedataserver/Makefile.am:91: warning: '%'-style pattern rules are a GNU make extension -libedataserver/Makefile.am:97: warning: pkgconfig_DATA:-$(API_VERSION: non-POSIX variable name -libedataserverui/Makefile.am:108: warning: '%'-style pattern rules are a GNU make extension -libedataserverui/Makefile.am:118: warning: pkgconfig_DATA:-$(API_VERSION: non-POSIX variable name -servers/google/libgdata-google/Makefile.am:27: warning: '%'-style pattern rules are a GNU make extension -servers/google/libgdata-google/Makefile.am:33: warning: pkgconfig_DATA:-$(API_VERSION: non-POSIX variable name -servers/google/libgdata/Makefile.am:31: warning: '%'-style pattern rules are a GNU make extension -servers/google/libgdata/Makefile.am:37: warning: pkgconfig_DATA:-$(API_VERSION: non-POSIX variable name -servers/groupwise/Makefile.am:85: warning: '%'-style pattern rules are a GNU make extension -servers/groupwise/Makefile.am:91: warning: pkgconfig_DATA:-$(API_VERSION: non-POSIX variable name -autoreconf: automake failed with exit status: 1 - -Upstream-Status: Inappropriate [embedded specific] - -Signed-Off-By: Nitin A Kamble <nitin.a.kamble@intel.com> -Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> - -Conflicts: - configure.ac ---- - configure.ac | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/configure.ac b/configure.ac -index 49d7506..1c802ff 100644 ---- a/configure.ac -+++ b/configure.ac -@@ -21,7 +21,7 @@ m4_define([api_version], [1.2]) - dnl Autoconf / Automake Initialization - AC_PREREQ(2.62) - AC_INIT([evolution-data-server],[eds_version],[http://bugzilla.gnome.org/enter_bug.cgi?product=Evolution-Data-Server]) --AM_INIT_AUTOMAKE([gnu 1.10 tar-ustar dist-xz no-dist-gzip -Wall -Wno-portability -Werror foreign]) -+AM_INIT_AUTOMAKE([gnu 1.10 tar-ustar dist-xz no-dist-gzip -Wall -Wno-portability foreign]) - AC_CONFIG_MACRO_DIR([m4]) - AC_CONFIG_SRCDIR(README) - AC_CONFIG_HEADERS(config.h) --- -1.8.3.2 - diff --git a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/eds/evolution-data-server/0001-contact-Replace-the-Novell-sample-contact-with-somet.patch b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/eds/evolution-data-server/0003-contact-Replace-the-Novell-sample-contact-with-somet.patch index b77e7b9bd..3cdfa8b6f 100644 --- a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/eds/evolution-data-server/0001-contact-Replace-the-Novell-sample-contact-with-somet.patch +++ b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/eds/evolution-data-server/0003-contact-Replace-the-Novell-sample-contact-with-somet.patch @@ -7,26 +7,13 @@ Subject: [PATCH 1/5] contact: Replace the Novell sample contact with something Upstream-Status: Inappropriate [configuration] Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> --- - addressbook/backends/file/Makefile.am | 1 + - addressbook/libedata-book/ximian-vcard.h | 179 ++++++++++++++++++------------- + src/addressbook/libedata-book/ximian-vcard.h | 179 ++++++++++++++++++------------- 2 files changed, 103 insertions(+), 77 deletions(-) -diff --git a/addressbook/backends/file/Makefile.am b/addressbook/backends/file/Makefile.am -index 08cf58f..17e7149 100644 ---- a/addressbook/backends/file/Makefile.am -+++ b/addressbook/backends/file/Makefile.am -@@ -2,6 +2,7 @@ ebook_backend_LTLIBRARIES = libebookbackendfile.la - - libebookbackendfile_la_CPPFLAGS = \ - $(AM_CPPFLAGS) \ -+ -DCREATE_DEFAULT_VCARD \ - -DG_LOG_DOMAIN=\"libebookbackend\" \ - -I$(top_srcdir) \ - -I$(top_builddir) \ -diff --git a/addressbook/libedata-book/ximian-vcard.h b/addressbook/libedata-book/ximian-vcard.h +diff --git a/src/addressbook/libedata-book/ximian-vcard.h b/src/addressbook/libedata-book/ximian-vcard.h index 782d37b..5b0b250 100644 ---- a/addressbook/libedata-book/ximian-vcard.h -+++ b/addressbook/libedata-book/ximian-vcard.h +--- a/src/addressbook/libedata-book/ximian-vcard.h ++++ b/src/addressbook/libedata-book/ximian-vcard.h @@ -1,80 +1,105 @@ #define XIMIAN_VCARD \ "BEGIN:VCARD\n" \ diff --git a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/eds/evolution-data-server/0004-configure-Fix-libical-pkg-config-trying-to-use-host-.patch b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/eds/evolution-data-server/0004-configure-Fix-libical-pkg-config-trying-to-use-host-.patch deleted file mode 100644 index 138334798..000000000 --- a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/eds/evolution-data-server/0004-configure-Fix-libical-pkg-config-trying-to-use-host-.patch +++ /dev/null @@ -1,39 +0,0 @@ -From 2c73b588b9018cb59c666eae3a15fa1af42c56be Mon Sep 17 00:00:00 2001 -From: Martin Jansa <Martin.Jansa@gmail.com> -Date: Sun, 4 Aug 2013 10:57:08 +0200 -Subject: [PATCH 4/5] configure: Fix libical pkg-config trying to use host - paths - -Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> ---- - calendar/libecal/libecal.pc.in | 2 +- - configure.ac | 3 ++- - 2 files changed, 3 insertions(+), 2 deletions(-) - -diff --git a/calendar/libecal/libecal.pc.in b/calendar/libecal/libecal.pc.in -index fc6b359..d3435bb 100644 ---- a/calendar/libecal/libecal.pc.in -+++ b/calendar/libecal/libecal.pc.in -@@ -12,4 +12,4 @@ Description: Client library for evolution calendars - Version: @VERSION@ - Requires: libical >= @LIBICAL_REQUIRED@ libedataserver-1.2 gio-2.0 - Libs: -L${libdir} -lecal-1.2 --Cflags: -I${privincludedir} @LIBICAL_EXTRA_CFLAGS@ -+Cflags: -I${privincludedir} -diff --git a/configure.ac b/configure.ac -index 1c802ff..f1d4ce8 100644 ---- a/configure.ac -+++ b/configure.ac -@@ -1351,7 +1351,8 @@ dnl to differentiate between <libical/ical.h> and <ical.h> - dnl We have fixed all our instances to use <libical/ical.h>. Until the .pc from - dnl libical is fixed, we have to work-around the buggy CFlags. - dnl ***** -- LIBICAL_EXTRA_CFLAGS=" -I`$PKG_CONFIG --variable=includedir libical` " -+ m4_pattern_allow([^PKG_CONFIG_SYSROOT_DIR$]) -+ LIBICAL_EXTRA_CFLAGS=" -I$PKG_CONFIG_SYSROOT_DIR`$PKG_CONFIG --variable=includedir libical` " - LIBICAL_EXTRA_LIBS="" - AC_SUBST(LIBICAL_EXTRA_CFLAGS) - AC_SUBST(LIBICAL_EXTRA_LIBS) --- -1.8.3.2 - diff --git a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/eds/evolution-data-server/0005-soup-adapt-to-new-libxml2-API-from-2.9.0.patch b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/eds/evolution-data-server/0005-soup-adapt-to-new-libxml2-API-from-2.9.0.patch deleted file mode 100644 index addf2ee8d..000000000 --- a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/eds/evolution-data-server/0005-soup-adapt-to-new-libxml2-API-from-2.9.0.patch +++ /dev/null @@ -1,77 +0,0 @@ -From ac95e89749a01618f98b554a98e78d7c988bfc10 Mon Sep 17 00:00:00 2001 -From: Martin Jansa <Martin.Jansa@gmail.com> -Date: Tue, 27 Nov 2012 08:46:51 +0100 -Subject: [PATCH 5/5] soup: adapt to new libxml2 API from 2.9.0 - -* for more info see - https://mail.gnome.org/archives/xml/2012-August/msg00005.html - -Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> ---- - calendar/backends/caldav/e-cal-backend-caldav.c | 21 +++++++++++++++++++++ - 1 file changed, 21 insertions(+) - -diff --git a/calendar/backends/caldav/e-cal-backend-caldav.c b/calendar/backends/caldav/e-cal-backend-caldav.c -index 12f8f22..5555a3e 100644 ---- a/calendar/backends/caldav/e-cal-backend-caldav.c -+++ b/calendar/backends/caldav/e-cal-backend-caldav.c -@@ -1172,8 +1172,13 @@ check_calendar_changed_on_server (ECalBackendCalDAV *cbdav) - soup_message_set_request (message, - "application/xml", - SOUP_MEMORY_COPY, -+#ifdef LIBXML2_NEW_BUFFER -+ (gchar *) xmlOutputBufferGetContent(buf), -+ xmlOutputBufferGetSize(buf)); -+#else - (gchar *) buf->buffer->content, - buf->buffer->use); -+#endif - - /* Send the request now */ - send_and_handle_redirection (priv->session, message, NULL); -@@ -1321,8 +1326,13 @@ caldav_server_list_objects (ECalBackendCalDAV *cbdav, - soup_message_set_request (message, - "application/xml", - SOUP_MEMORY_COPY, -+#ifdef LIBXML2_NEW_BUFFER -+ (gchar *) xmlOutputBufferGetContent(buf), -+ xmlOutputBufferGetSize(buf)); -+#else - (gchar *) buf->buffer->content, - buf->buffer->use); -+#endif - - /* Send the request now */ - send_and_handle_redirection (priv->session, message, NULL); -@@ -1715,8 +1725,14 @@ caldav_receive_schedule_outbox_url (ECalBackendCalDAV *cbdav) - soup_message_set_request (message, - "application/xml", - SOUP_MEMORY_COPY, -+#ifdef LIBXML2_NEW_BUFFER -+ (gchar *) xmlOutputBufferGetContent(buf), -+ xmlOutputBufferGetSize(buf)); -+#else - (gchar *) buf->buffer->content, - buf->buffer->use); -+#endif -+ - - /* Send the request now */ - send_and_handle_redirection (priv->session, message, NULL); -@@ -1765,8 +1781,13 @@ caldav_receive_schedule_outbox_url (ECalBackendCalDAV *cbdav) - soup_message_set_request (message, - "application/xml", - SOUP_MEMORY_COPY, -+#ifdef LIBXML2_NEW_BUFFER -+ (gchar *) xmlOutputBufferGetContent(buf), -+ xmlOutputBufferGetSize(buf)); -+#else - (gchar *) buf->buffer->content, - buf->buffer->use); -+#endif - - /* Send the request now */ - send_and_handle_redirection (priv->session, message, NULL); --- -1.8.3.2 - diff --git a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/eds/evolution-data-server/0006-configure.ac-do-not-overwrite-localedir.patch b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/eds/evolution-data-server/0006-configure.ac-do-not-overwrite-localedir.patch deleted file mode 100644 index 741e5e97d..000000000 --- a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/eds/evolution-data-server/0006-configure.ac-do-not-overwrite-localedir.patch +++ /dev/null @@ -1,34 +0,0 @@ -From 3feaea8e84b3ad8dc2d551e42224f3b4a9413e7d Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?Andreas=20M=C3=BCller?= <schnitzeltony@googlemail.com> -Date: Thu, 3 Sep 2015 11:14:24 +0200 -Subject: [PATCH] configure.ac: do not overwrite localedir -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit - -Upstream-Status: Backport [1] - -[1] https://git.gnome.org/browse/evolution-data-server/tree/configure.ac#n298 - -Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> ---- - configure.ac | 3 --- - 1 file changed, 3 deletions(-) - -diff --git a/configure.ac b/configure.ac -index f1d4ce8..cee847f 100644 ---- a/configure.ac -+++ b/configure.ac -@@ -257,9 +257,6 @@ GETTEXT_PACKAGE=evolution-data-server-$BASE_VERSION - AC_SUBST(GETTEXT_PACKAGE) - AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE, "$GETTEXT_PACKAGE", [Package name for gettext]) - --localedir='$(prefix)/$(DATADIRNAME)/locale' --AC_SUBST(localedir) -- - dnl ****************************** - dnl Initialize libtool - dnl ****************************** --- -2.1.0 - diff --git a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/eds/evolution-data-server_git.bb b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/eds/evolution-data-server_3.26.3.bb index aadc4b5e3..2303b8f18 100644 --- a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/eds/evolution-data-server_git.bb +++ b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/eds/evolution-data-server_3.26.3.bb @@ -4,58 +4,72 @@ BUGTRACKER = "https://bugzilla.gnome.org/" LICENSE = "LGPLv2 & LGPLv2+" LIC_FILES_CHKSUM = "file://COPYING;md5=6a6e689d19255cf0557f3fe7d7068212 \ - file://camel/camel.h;endline=24;md5=b02175c88f821224746b347a89731a2b \ - file://libedataserver/e-data-server-util.h;endline=20;md5=934502f03c84523aa059d4825887b380 \ - file://calendar/libecal/e-cal.h;endline=24;md5=5d496b9b6fd2a4fdbbfc31ef9455c9d0" - -DEPENDS = "intltool-native glib-2.0 gtk+3 gconf dbus db virtual/libiconv zlib libsoup-2.4 libglade libical libgnome-keyring gperf-native libgdata nss" - -SRCREV = "a9e4e74ec4473a4fd09e56b690bd4fa72f686687" - -# 3.4 series needs libgdata-0.10*, 3.8 series needs also libsecret instead of gnome-keyring -PV = "3.2.3+git${SRCPV}" - -SRC_URI = "git://git.gnome.org/evolution-data-server;branch=gnome-3-2 \ - file://0001-contact-Replace-the-Novell-sample-contact-with-somet.patch \ - file://0002-Fix-for-automake-1.12.x.patch \ - file://0003-Disable-Werror-for-automake.patch \ - file://0004-configure-Fix-libical-pkg-config-trying-to-use-host-.patch \ - file://0005-soup-adapt-to-new-libxml2-API-from-2.9.0.patch \ - file://0006-configure.ac-do-not-overwrite-localedir.patch \ - file://iconv-detect.h \ - file://0001-imapx-Fix-signature-for-imapx_tokenise_struct.patch \ - " - -S = "${WORKDIR}/git" - -inherit autotools gtk-doc pkgconfig gettext gobject-introspection + file://src/camel/camel.h;endline=24;md5=342fc5e9357254bc30c24e43ae47d9a1 \ + file://src/libedataserver/e-data-server-util.h;endline=20;md5=8f21a9c80ea82a4fb80b5f959f672543 \ + file://src/calendar/libecal/e-cal.h;endline=24;md5=e699ec3866f73f129f7a4ffffdcfc196" + +DEPENDS = " \ + intltool-native gperf-native \ + glib-2.0 gtk+3 gconf libgnome-keyring libgdata \ + dbus db virtual/libiconv zlib libsoup-2.4 libical nss libsecret \ +" + +inherit distro_features_check gnomebase cmake gtk-doc gettext gobject-introspection perlnative pythonnative + +REQUIRED_DISTRO_FEATURES = "x11" + +SRC_URI += " \ + file://0001-CMakeLists.txt-Remove-TRY_RUN-for-iconv.patch \ + file://0002-CMakeLists.txt-remove-CHECK_C_SOURCE_RUNS-check.patch \ + file://0003-contact-Replace-the-Novell-sample-contact-with-somet.patch \ + file://iconv-detect.h \ +" +SRC_URI[archive.md5sum] = "568a21a4df4e0ec985c849b38fc66908" +SRC_URI[archive.sha256sum] = "63b1ae5f76be818862f455bf841b5ebb1ec3e1f4df6d3a16dc2be348b7e0a1c5" + +LKSTRFTIME = "HAVE_LKSTRFTIME=ON" +LKSTRFTIME_libc-musl = "HAVE_LKSTRFTIME=OFF" + +EXTRA_OECMAKE = " \ + -DWITH_KRB5=OFF \ + -DENABLE_GOA=OFF \ + -DENABLE_UOA=OFF \ + -DENABLE_GOOGLE_AUTH=OFF \ + -DENABLE_WEATHER=OFF \ + -D${LKSTRFTIME} \ +" + +PACKAGECONFIG ??= "" +PACKAGECONFIG[openldap] = "-DWITH_OPENLDAP=ON,-DWITH_OPENLDAP=OFF,openldap" + +EXTRA_OECONF = "--with-libdb=${STAGING_DIR_HOST}${prefix} \ + --disable-nntp --disable-gtk-doc" # -ldb needs this on some platforms LDFLAGS += "-lpthread -lgmodule-2.0 -lgthread-2.0" -# Parallel make shows many issues with this source code. -# Current problems seem to be duplicate execution of the calander/backends -# directories by make resulting in truncated/corrupt .la files -#PARALLEL_MAKE = "" - do_configure_append () { - cp ${WORKDIR}/iconv-detect.h ${S} + cp ${WORKDIR}/iconv-detect.h ${S}/src + + # fix native perl shebang + sed -i 's:${STAGING_BINDIR_NATIVE}/perl-native:${bindir}:' ${B}/src/tools/addressbook-export/csv2vcard } do_compile_prepend() { - export GIR_EXTRA_LIBS_PATH="${B}/camel/.libs:${B}/libedataserver/.libs" + export GIR_EXTRA_LIBS_PATH="${B}/camel/.libs:${B}/libedataserver/.libs" } -EXTRA_OECONF = "--without-openldap \ - --with-libdb=${STAGING_DIR_HOST}${prefix} \ - --disable-nntp --disable-goa --disable-weather --disable-gtk-doc" PACKAGES =+ "libcamel libcamel-dev libebook libebook-dev libecal libecal-dev \ libedata-book libedata-book-dev libedata-cal libedata-cal-dev \ libedataserver libedataserver-dev \ libedataserverui libedataserverui-dev" -FILES_${PN} =+ "${datadir}/evolution-data-server-*/ui/" +FILES_${PN} =+ "${systemd_user_unitdir} \ + ${datadir}/dbus-1 \ + ${datadir}/evolution-data-server-*/ui/" +RDEPENDS_${PN} += "perl" + FILES_${PN}-dev =+ "${libdir}/pkgconfig/evolution-data-server-*.pc" FILES_${PN}-dbg =+ "${libdir}/evolution-data-server*/camel-providers/.debug \ ${libdir}/evolution-data-server*/calendar-backends/.debug \ diff --git a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/evince/evince_3.24.0.bb b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/evince/evince_3.24.0.bb index 78a949526..c7ecf2ba5 100644 --- a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/evince/evince_3.24.0.bb +++ b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/evince/evince_3.24.0.bb @@ -7,6 +7,8 @@ PR = "r5" inherit gnome pkgconfig gtk-icon-cache gsettings gobject-introspection distro_features_check systemd +REQUIRED_DISTRO_FEATURES = "x11" + SRC_URI = "${GNOME_MIRROR}/${GNOMEBN}/${@gnome_verdir("${PV}")}/${GNOMEBN}-${PV}.tar.${GNOME_COMPRESS_TYPE};name=archive \ file://0001-help-remove-YELP-macro.patch \ file://0001-Add-format-attribute-to-_synctex_malloc.patch \ diff --git a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/gdm/gdm/%gconf-tree.xml b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/gdm/gdm/%gconf-tree.xml deleted file mode 100644 index f8c2e9cc2..000000000 --- a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/gdm/gdm/%gconf-tree.xml +++ /dev/null @@ -1,492 +0,0 @@ -<?xml version="1.0"?> -<gconf> - <dir name="desktop"> - <dir name="gnome"> - <dir name="url-handlers"> - <dir name="ymsgr"> - <entry name="command" mtime="1227173197" type="string"> - <stringvalue>/bin/true</stringvalue> - </entry> - </dir> - <dir name="xmpp"> - <entry name="command" mtime="1227173197" type="string"> - <stringvalue>/bin/true</stringvalue> - </entry> - </dir> - <dir name="webcal"> - <entry name="command" mtime="1227173197" type="string"> - <stringvalue>/bin/true</stringvalue> - </entry> - </dir> - <dir name="uvox"> - <entry name="command" mtime="1227173197" type="string"> - <stringvalue>/bin/true</stringvalue> - </entry> - </dir> - <dir name="trash"> - <entry name="command" mtime="1227173197" type="string"> - <stringvalue>/bin/true</stringvalue> - </entry> - </dir> - <dir name="sip"> - <entry name="command" mtime="1227173197" type="string"> - <stringvalue>/bin/true</stringvalue> - </entry> - </dir> - <dir name="rtsp"> - <entry name="command" mtime="1227173197" type="string"> - <stringvalue>/bin/true</stringvalue> - </entry> - </dir> - <dir name="rtp"> - <entry name="command" mtime="1227173197" type="string"> - <stringvalue>/bin/true</stringvalue> - </entry> - </dir> - <dir name="pnm"> - <entry name="command" mtime="1227173197" type="string"> - <stringvalue>/bin/true</stringvalue> - </entry> - </dir> - <dir name="note"> - <entry name="command" mtime="1227173197" type="string"> - <stringvalue>/bin/true</stringvalue> - </entry> - </dir> - <dir name="net"> - <entry name="command" mtime="1227173197" type="string"> - <stringvalue>/bin/true</stringvalue> - </entry> - </dir> - <dir name="msnim"> - <entry name="command" mtime="1227173197" type="string"> - <stringvalue>/bin/true</stringvalue> - </entry> - </dir> - <dir name="mmsh"> - <entry name="command" mtime="1227173197" type="string"> - <stringvalue>/bin/true</stringvalue> - </entry> - </dir> - <dir name="mms"> - <entry name="command" mtime="1227173197" type="string"> - <stringvalue>/bin/true</stringvalue> - </entry> - </dir> - <dir name="man"> - <entry name="command" mtime="1227173197" type="string"> - <stringvalue>/bin/true</stringvalue> - </entry> - </dir> - <dir name="mailto"> - <entry name="command" mtime="1227173197" type="string"> - <stringvalue>/bin/true</stringvalue> - </entry> - </dir> - <dir name="lastfm"> - <entry name="command" mtime="1227173197" type="string"> - <stringvalue>/bin/true</stringvalue> - </entry> - </dir> - <dir name="itpc"> - <entry name="command" mtime="1227173197" type="string"> - <stringvalue>/bin/true</stringvalue> - </entry> - </dir> - <dir name="itms"> - <entry name="command" mtime="1227173197" type="string"> - <stringvalue>/bin/true</stringvalue> - </entry> - </dir> - <dir name="irc"> - <entry name="command" mtime="1227173197" type="string"> - <stringvalue>/bin/true</stringvalue> - </entry> - </dir> - <dir name="info"> - <entry name="command" mtime="1227173197" type="string"> - <stringvalue>/bin/true</stringvalue> - </entry> - </dir> - <dir name="icyx"> - <entry name="command" mtime="1227173197" type="string"> - <stringvalue>/bin/true</stringvalue> - </entry> - </dir> - <dir name="icy"> - <entry name="command" mtime="1227173197" type="string"> - <stringvalue>/bin/true</stringvalue> - </entry> - </dir> - <dir name="icq"> - <entry name="command" mtime="1227173197" type="string"> - <stringvalue>/bin/true</stringvalue> - </entry> - </dir> - <dir name="https"> - <entry name="command" mtime="1227173197" type="string"> - <stringvalue>/bin/true</stringvalue> - </entry> - </dir> - <dir name="http"> - <entry name="command" mtime="1227173197" type="string"> - <stringvalue>/bin/true</stringvalue> - </entry> - </dir> - <dir name="h323"> - <entry name="command" mtime="1227173197" type="string"> - <stringvalue>/bin/true</stringvalue> - </entry> - </dir> - <dir name="ghelp"> - <entry name="command" mtime="1227173197" type="string"> - <stringvalue>/bin/true</stringvalue> - </entry> - </dir> - <dir name="gg"> - <entry name="command" mtime="1227173197" type="string"> - <stringvalue>/bin/true</stringvalue> - </entry> - </dir> - <dir name="ftp"> - <entry name="command" mtime="1227173197" type="string"> - <stringvalue>/bin/true</stringvalue> - </entry> - </dir> - <dir name="file"> - <entry name="command" mtime="1227173197" type="string"> - <stringvalue>/bin/true</stringvalue> - </entry> - </dir> - <dir name="feed"> - <entry name="command" mtime="1227173197" type="string"> - <stringvalue>/bin/true</stringvalue> - </entry> - </dir> - <dir name="cdda"> - <entry name="command" mtime="1227173197" type="string"> - <stringvalue>/bin/true</stringvalue> - </entry> - </dir> - <dir name="callto"> - <entry name="command" mtime="1227173197" type="string"> - <stringvalue>/bin/true</stringvalue> - </entry> - </dir> - <dir name="aim"> - <entry name="command" mtime="1227173197" type="string"> - <stringvalue>/bin/true</stringvalue> - </entry> - </dir> - <dir name="about"> - <entry name="command" mtime="1227173197" type="string"> - <stringvalue>/bin/true</stringvalue> - </entry> - </dir> - </dir> - <dir name="lockdown"> - <entry name="disable_url_handlers" mtime="1227173197" type="bool" value="true"> - </entry> - <entry name="disable_save_to_disk" mtime="1227173197" type="bool" value="true"> - </entry> - <entry name="disable_print_setup" mtime="1227173197" type="bool" value="true"> - </entry> - <entry name="disable_printing" mtime="1227173197" type="bool" value="true"> - </entry> - <entry name="disable_lock_screen" mtime="1227173197" type="bool" value="true"> - </entry> - <entry name="disable_command_line" mtime="1227173197" type="bool" value="true"> - </entry> - </dir> - <dir name="applications"> - <dir name="terminal"> - <entry name="exec" mtime="1227173197" type="string"> - <stringvalue>/bin/true</stringvalue> - </entry> - </dir> - </dir> - <dir name="accessibility"> - <dir name="keyboard"> - <entry name="enable" mtime="1227173197" type="bool" value="true"> - </entry> - </dir> - </dir> - </dir> - </dir> - <dir name="apps"> - <dir name="gnome_settings_daemon"> - <dir name="keybindings"> - <entry name="www" mtime="1227173197" type="string"> - <stringvalue></stringvalue> - </entry> - <entry name="stop" mtime="1227173197" type="string"> - <stringvalue></stringvalue> - </entry> - <entry name="sleep" mtime="1227173197" type="string"> - <stringvalue></stringvalue> - </entry> - <entry name="search" mtime="1227173197" type="string"> - <stringvalue></stringvalue> - </entry> - <entry name="screensaver" mtime="1227173197" type="string"> - <stringvalue></stringvalue> - </entry> - <entry name="previous" mtime="1227173197" type="string"> - <stringvalue></stringvalue> - </entry> - <entry name="power" mtime="1227173197" type="string"> - <stringvalue></stringvalue> - </entry> - <entry name="play" mtime="1227173197" type="string"> - <stringvalue></stringvalue> - </entry> - <entry name="pause" mtime="1227173197" type="string"> - <stringvalue></stringvalue> - </entry> - <entry name="next" mtime="1227173197" type="string"> - <stringvalue></stringvalue> - </entry> - <entry name="media" mtime="1227173197" type="string"> - <stringvalue></stringvalue> - </entry> - <entry name="home" mtime="1227173197" type="string"> - <stringvalue></stringvalue> - </entry> - <entry name="help" mtime="1227173197" type="string"> - <stringvalue></stringvalue> - </entry> - <entry name="email" mtime="1227173197" type="string"> - <stringvalue></stringvalue> - </entry> - <entry name="calculator" mtime="1227173197" type="string"> - <stringvalue></stringvalue> - </entry> - <entry name="eject" mtime="1227173197" type="string"> - <stringvalue></stringvalue> - </entry> - </dir> - </dir> - <dir name="metacity"> - <dir name="keybinding_commands"> - <entry name="command_window_screenshot" mtime="1227173197" type="string"> - <stringvalue>/bin/true</stringvalue> - </entry> - <entry name="command_screenshot" mtime="1227173197" type="string"> - <stringvalue>gdm-screenshot</stringvalue> - </entry> - </dir> - <dir name="global_keybindings"> - <entry name="switch_to_workspace_up" mtime="1227173197" type="string"> - <stringvalue>disabled</stringvalue> - </entry> - <entry name="switch_to_workspace_right" mtime="1227173197" type="string"> - <stringvalue>disabled</stringvalue> - </entry> - <entry name="switch_to_workspace_left" mtime="1227173197" type="string"> - <stringvalue>disabled</stringvalue> - </entry> - <entry name="switch_to_workspace_down" mtime="1227173197" type="string"> - <stringvalue>disabled</stringvalue> - </entry> - <entry name="switch_group" mtime="1227173197" type="string"> - <stringvalue>disabled</stringvalue> - </entry> - <entry name="show_desktop" mtime="1227173197" type="string"> - <stringvalue>disabled</stringvalue> - </entry> - <entry name="run_command_window_screenshot" mtime="1227173197" type="string"> - <stringvalue>disabled</stringvalue> - </entry> - <entry name="run_command_screenshot" mtime="1227173197" type="string"> - <stringvalue>Print</stringvalue> - </entry> - <entry name="panel_run_dialog" mtime="1227173197" type="string"> - <stringvalue>disabled</stringvalue> - </entry> - <entry name="panel_main_menu" mtime="1227173197" type="string"> - <stringvalue>disabled</stringvalue> - </entry> - </dir> - <dir name="general"> - <entry name="num_workspaces" mtime="1227173197" type="int" value="1"> - </entry> - </dir> - </dir> - <dir name="compiz"> - <dir name="general"> - <dir name="allscreens"> - <dir name="options"> - <entry name="run_command11_key" mtime="1227173197" type="string"> - <stringvalue>Disabled</stringvalue> - </entry> - <entry name="run_command11_button" mtime="1227173197" type="string"> - <stringvalue>Disabled</stringvalue> - </entry> - <entry name="run_command10_key" mtime="1227173197" type="string"> - <stringvalue>Disabled</stringvalue> - </entry> - <entry name="run_command10_button" mtime="1227173197" type="string"> - <stringvalue>Disabled</stringvalue> - </entry> - <entry name="run_command8_key" mtime="1227173197" type="string"> - <stringvalue>Disabled</stringvalue> - </entry> - <entry name="run_command8_button" mtime="1227173197" type="string"> - <stringvalue>Disabled</stringvalue> - </entry> - <entry name="run_command7_key" mtime="1227173197" type="string"> - <stringvalue>Disabled</stringvalue> - </entry> - <entry name="run_command7_button" mtime="1227173197" type="string"> - <stringvalue>Disabled</stringvalue> - </entry> - <entry name="run_command6_key" mtime="1227173197" type="string"> - <stringvalue>Disabled</stringvalue> - </entry> - <entry name="run_command6_button" mtime="1227173197" type="string"> - <stringvalue>Disabled</stringvalue> - </entry> - <entry name="run_command5_key" mtime="1227173197" type="string"> - <stringvalue>Disabled</stringvalue> - </entry> - <entry name="run_command5_button" mtime="1227173197" type="string"> - <stringvalue>Disabled</stringvalue> - </entry> - <entry name="run_command4_key" mtime="1227173197" type="string"> - <stringvalue>Disabled</stringvalue> - </entry> - <entry name="run_command4_button" mtime="1227173197" type="string"> - <stringvalue>Disabled</stringvalue> - </entry> - <entry name="run_command3_key" mtime="1227173197" type="string"> - <stringvalue>Disabled</stringvalue> - </entry> - <entry name="run_command3_button" mtime="1227173197" type="string"> - <stringvalue>Disabled</stringvalue> - </entry> - <entry name="run_command2_key" mtime="1227173197" type="string"> - <stringvalue>Disabled</stringvalue> - </entry> - <entry name="run_command2_button" mtime="1227173197" type="string"> - <stringvalue>Disabled</stringvalue> - </entry> - <entry name="run_command1_key" mtime="1227173197" type="string"> - <stringvalue>Disabled</stringvalue> - </entry> - <entry name="run_command1_button" mtime="1227173197" type="string"> - <stringvalue>Disabled</stringvalue> - </entry> - <entry name="run_command0_key" mtime="1227173197" type="string"> - <stringvalue>Disabled</stringvalue> - </entry> - <entry name="run_command0_button" mtime="1227173197" type="string"> - <stringvalue>Disabled</stringvalue> - </entry> - <entry name="run_key" mtime="1227173197" type="string"> - <stringvalue>Disabled</stringvalue> - </entry> - <entry name="run_button" mtime="1227173197" type="string"> - <stringvalue>Disabled</stringvalue> - </entry> - <entry name="main_menu_key" mtime="1227173197" type="string"> - <stringvalue>Disabled</stringvalue> - </entry> - <entry name="main_menu_button" mtime="1227173197" type="string"> - <stringvalue>Disabled</stringvalue> - </entry> - <entry name="command_window_screenshot" mtime="1227173197" type="string"> - <stringvalue></stringvalue> - </entry> - <entry name="command11" mtime="1227173197" type="string"> - <stringvalue></stringvalue> - </entry> - <entry name="command10" mtime="1227173197" type="string"> - <stringvalue></stringvalue> - </entry> - <entry name="command9" mtime="1227173197" type="string"> - <stringvalue></stringvalue> - </entry> - <entry name="command8" mtime="1227173197" type="string"> - <stringvalue></stringvalue> - </entry> - <entry name="command7" mtime="1227173197" type="string"> - <stringvalue></stringvalue> - </entry> - <entry name="command6" mtime="1227173197" type="string"> - <stringvalue></stringvalue> - </entry> - <entry name="command5" mtime="1227173197" type="string"> - <stringvalue></stringvalue> - </entry> - <entry name="command4" mtime="1227173197" type="string"> - <stringvalue></stringvalue> - </entry> - <entry name="command3" mtime="1227173197" type="string"> - <stringvalue></stringvalue> - </entry> - <entry name="command2" mtime="1227173197" type="string"> - <stringvalue></stringvalue> - </entry> - <entry name="command1" mtime="1227173197" type="string"> - <stringvalue></stringvalue> - </entry> - <entry name="command0" mtime="1227173197" type="string"> - <stringvalue></stringvalue> - </entry> - <entry name="command_terminal" mtime="1227173197" type="string"> - <stringvalue></stringvalue> - </entry> - <entry name="command_screenshot" mtime="1227173197" type="string"> - <stringvalue>gdm-screenshot</stringvalue> - </entry> - <entry name="active_plugins" mtime="1227173197" type="list" ltype="string"> - <li type="string"> - <stringvalue>cube</stringvalue> - </li> - <li type="string"> - <stringvalue>decoration</stringvalue> - </li> - <li type="string"> - <stringvalue>gconf</stringvalue> - </li> - <li type="string"> - <stringvalue>glib</stringvalue> - </li> - <li type="string"> - <stringvalue>move</stringvalue> - </li> - <li type="string"> - <stringvalue>place</stringvalue> - </li> - <li type="string"> - <stringvalue>resize</stringvalue> - </li> - <li type="string"> - <stringvalue>screenshot</stringvalue> - </li> - <li type="string"> - <stringvalue>wobbly</stringvalue> - </li> - </entry> - </dir> - </dir> - </dir> - </dir> - <dir name="gnome-power-manager"> - <dir name="ui"> - <entry name="show_context_menu" mtime="1227173197" type="bool" value="false"> - </entry> - </dir> - </dir> - <dir name="gnome-screensaver"> - <entry name="power_management_delay" mtime="1227173197" type="int" value="30"> - </entry> - </dir> - <dir name="nautilus"> - <dir name="preferences"> - <entry name="show_desktop" mtime="1227173197" type="bool" value="false"> - </entry> - </dir> - </dir> - </dir> -</gconf> diff --git a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/gdm/gdm/Default b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/gdm/gdm/Default deleted file mode 100755 index a7a7fcf7f..000000000 --- a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/gdm/gdm/Default +++ /dev/null @@ -1,96 +0,0 @@ -#!/bin/sh -# Stolen from the debian kdm setup, aren't I sneaky -# Plus a lot of fun stuff added -# -George - -PATH="/usr/bin:$PATH" -OLD_IFS=$IFS - -gdmwhich () { - COMMAND="$1" - OUTPUT= - IFS=: - for dir in $PATH - do - if test -x "$dir/$COMMAND" ; then - if test "x$OUTPUT" = "x" ; then - OUTPUT="$dir/$COMMAND" - fi - fi - done - IFS=$OLD_IFS - echo "$OUTPUT" -} - -sysresources=/etc/X11/Xresources - -# merge in defaults -if [ -f "$sysresources" ]; then - xrdb -merge "$sysresources" -fi - -sysmodmap=/etc/X11/Xmodmap - -XMODMAP=`gdmwhich xmodmap` -if [ "x$XMODMAP" != "x" ] ; then - if [ "x$GDM_PARENT_DISPLAY" = "x" ]; then - if [ -f $sysmodmap ]; then - $XMODMAP $sysmodmap - fi - else - ( DISPLAY=$GDM_PARENT_DISPLAY XAUTHORITY=$GDM_PARENT_XAUTHORITY $XMODMAP -pke ) | $XMODMAP - - fi - - # - # Switch Sun's Alt and Meta mod mappings - # - - UNAME=`gdmwhich uname` - PROCESSOR=`$UNAME -p` - if [ "x$PROCESSOR" = "xsparc" ]; then - if $XMODMAP | /usr/bin/grep mod4 | /usr/bin/grep Alt > /dev/null 2>/dev/null - then - $XMODMAP -e "clear Mod1" \ - -e "clear Mod4" \ - -e "add Mod1 = Alt_L" \ - -e "add Mod1 = Alt_R" \ - -e "add Mod4 = Meta_L" \ - -e "add Mod4 = Meta_R" - fi - fi -fi - -SETXKBMAP=`gdmwhich setxkbmap` -if [ "x$SETXKBMAP" != "x" ] ; then - # FIXME: is this all right? Is this completely on crack? - # What this does is move the xkb configuration from the GDM_PARENT_DISPLAY - # FIXME: This should be done in code. Or there must be an easier way ... - if [ -n "$GDM_PARENT_DISPLAY" ]; then - XKBSETUP=`( DISPLAY=$GDM_PARENT_DISPLAY XAUTHORITY=$GDM_PARENT_XAUTHORITY $SETXKBMAP -v )` - if [ -n "$XKBSETUP" ]; then - XKBKEYMAP=`echo "$XKBSETUP" | grep '^keymap' | awk '{ print $2 }'` - XKBTYPES=`echo "$XKBSETUP" | grep '^types' | awk '{ print $2 }'` - XKBCOMPAT=`echo "$XKBSETUP" | grep '^compat' | awk '{ print $2 }'` - XKBSYMBOLS=`echo "$XKBSETUP" | grep '^symbols' | awk '{ print $2 }'` - XKBGEOMETRY=`echo "$XKBSETUP" | grep '^geometry' | awk '{ print $2 }'` - if [ -n "$XKBKEYMAP" ]; then - $SETXKBMAP -keymap "$XKBKEYMAP" - elif [ -n "$XKBTYPES" -a -n "$XKBCOMPAT" -a -n "$XKBSYMBOLS" -a -n "$XKBGEOMETRY" ]; then - $SETXKBMAP -types "$XKBTYPES" -compat "$XKBCOMPAT" -symbols "$XKBSYMBOLS" -geometry "$XKBGEOMETRY" - elif [ -n "$XKBTYPES" -a -n "$XKBCOMPAT" -a -n "$XKBSYMBOLS" ]; then - $SETXKBMAP -types "$XKBTYPES" -compat "$XKBCOMPAT" -symbols "$XKBSYMBOLS" - elif [ -n "$XKBSYMBOLS" ]; then - $SETXKBMAP -symbols "$XKBSYMBOLS" - fi - fi - fi -fi - -# FIXME: the housekeeping below really should be moved to the postinst of packages that require it -# brute force approach for now -update-desktop-database -glib-compile-schemas /usr/share/glib-2.0/schemas/ - -#x11vnc -q -bg -display :0 -forever -avahi -xkb - -exit 0 diff --git a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/gdm/gdm/cross-xdetection.diff b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/gdm/gdm/cross-xdetection.diff deleted file mode 100644 index bee35116e..000000000 --- a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/gdm/gdm/cross-xdetection.diff +++ /dev/null @@ -1,96 +0,0 @@ -From 60084e7e973634971c9643f2459e5d3e248ee3f1 Mon Sep 17 00:00:00 2001 -From: Koen Kooi <koen@dominion.thruhere.net> -Date: Thu, 9 Jun 2011 18:12:45 +0200 -Subject: [PATCH] build-sys: hardcode x paths to fix crosscompiling - -Signed-off-by: Koen Kooi <koen@dominion.thruhere.net> ---- - configure.ac | 72 ++++----------------------------------------------------- - 1 files changed, 5 insertions(+), 67 deletions(-) - -diff --git a/configure.ac b/configure.ac -index eeaf3dc..841efe0 100644 ---- a/configure.ac -+++ b/configure.ac -@@ -1101,73 +1101,11 @@ dnl --------------------------------------------------------------------------- - dnl - Check for X Server location - dnl --------------------------------------------------------------------------- - --# First check with "! -h" for /usr/X11R6 and /usr/X11 since they often --# symlink to each other, and configure should use the more stable --# location (the real directory) if possible. --# --# On Solaris, the /usr/bin/Xserver script is used to decide whether to --# use Xsun or Xorg, so this is used on Solaris. --# --# When testing for /usr/X11R6, first check with "! -h" for /usr/X11R6 --# and /usr/X11 since they often symlink to each other, and configure --# should use the more stable location (the real directory) if possible. --# --if test -x /usr/X11/bin/Xserver; then -- X_PATH="/usr/X11/bin" -- X_SERVER_PATH="/usr/X11/bin" -- X_SERVER="/usr/X11/bin/Xserver" -- X_CONFIG_OPTIONS="-audit 0" --elif test ! -h /usr/X11R6 -a -x /usr/X11R6/bin/X; then -- X_PATH="/usr/X11R6/bin" -- X_SERVER_PATH="/usr/X11R6/bin" -- X_SERVER="/usr/X11R6/bin/X" -- X_CONFIG_OPTIONS="-audit 0" --elif test ! -h /usr/X11 -a -x /usr/X11/bin/X; then -- X_PATH="/usr/X11/bin" -- X_SERVER_PATH="/usr/X11/bin" -- X_SERVER="/usr/X11/bin/X" -- X_CONFIG_OPTIONS="-audit 0" --elif test -x /usr/X11R6/bin/X; then -- X_PATH="/usr/X11R6/bin" -- X_SERVER_PATH="/usr/X11R6/bin" -- X_SERVER="/usr/X11R6/bin/X" -- X_CONFIG_OPTIONS="-audit 0" --elif test -x /usr/bin/Xorg; then -- X_PATH="/usr/bin" -- X_SERVER_PATH="/usr/bin" -- X_SERVER="/usr/bin/Xorg" -- X_CONFIG_OPTIONS="-audit 0" --elif test -x /usr/X11/bin/X; then -- X_PATH="/usr/X11/bin" -- X_SERVER_PATH="/usr/X11/bin" -- X_SERVER="/usr/X11/bin/X" -- X_CONFIG_OPTIONS="-audit 0" --elif test -x /usr/openwin/bin/Xsun; then -- # Do not add /usr/openwin/bin here because on Solaris you need -- # /usr/openwin/bin in your PATH even if you are using the Xorg -- # Xserver. We add this to the path below. -- X_PATH="/usr/openwin/bin" -- X_SERVER_PATH="/usr/openwin/bin" -- X_SERVER="/usr/openwin/bin/Xsun" -- X_CONFIG_OPTIONS="-audit 0 -nobanner" --elif test -x /opt/X11R6/bin/X; then -- X_PATH="/opt/X11R6/bin" -- X_SERVER_PATH="/opt/X11R6/bin" -- X_SERVER="/opt/X11R6/bin/X" -- X_CONFIG_OPTIONS="-audit 0" --elif test -x /usr/bin/X; then -- X_PATH="/usr/bin" -- X_SERVER_PATH="/usr/bin" -- X_SERVER="/usr/bin/X" -- X_CONFIG_OPTIONS="-audit 0" --else -- # what to do, what to do, this is wrong, but this just sets the -- # defaults, perhaps this user is cross compiling or some such -- X_PATH="/usr/bin/X11:/usr/X11R6/bin:/opt/X11R6/bin" -- X_SERVER_PATH="/usr/bin" -- X_SERVER="/usr/bin/X" -- X_CONFIG_OPTIONS="-audit 0" --fi -+# We hardcode the X paths since we know where it will be in the OE univers -+X_PATH="/usr/bin" -+X_SERVER_PATH="/usr/bin" -+X_SERVER="/usr/bin/X" -+X_CONFIG_OPTIONS="-audit 0" - - dnl --------------------------------------------------------------------------- - dnl - Check for Xnest / Xephyr support --- -1.6.6.1 - diff --git a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/gdm/gdm/gdm b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/gdm/gdm/gdm deleted file mode 100755 index bb5b41864..000000000 --- a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/gdm/gdm/gdm +++ /dev/null @@ -1,89 +0,0 @@ -#! /bin/sh -### BEGIN INIT INFO -# Provides: gdm -# Should-Start: console-screen acpid dbus hal network-manager -# Required-Start: $local_fs $remote_fs -# Required-Stop: $local_fs $remote_fs -# Default-Start: 5 -# Default-Stop: 0 1 2 3 6 -# Short-Description: GNOME Display Manager -# Description: Debian init script for the GNOME Display Manager -### END INIT INFO -# -# Author: Ryan Murray <rmurray@debian.org> -# -set -e - -PATH=/sbin:/bin:/usr/sbin:/usr/bin -DAEMON=/usr/sbin/gdm - -test -x $DAEMON || exit 0 - -if [ -r /etc/default/locale ]; then - . /etc/default/locale - export LANG LANGUAGE -fi - -# To start gdm even if it is not the default display manager, change -# HEED_DEFAULT_DISPLAY_MANAGER to "false." -HEED_DEFAULT_DISPLAY_MANAGER=true -DEFAULT_DISPLAY_MANAGER_FILE=/etc/X11/default-display-manager - -case "$1" in - start) - # make needed directories in volatile - - if [ -e /var/log/gdm ] ; then - rm -rf /var/log/gdm - fi - - mkdir -m 01770 /var/log/gdm - chown gdm:gdm /var/log/gdm - - if [ -e /tmp/.ICE-unix ] ; then - rm -rf /tmp/.ICE-unix - fi - - mkdir -m 01777 /tmp/.ICE-unix - chown root:root /tmp/.ICE-unix - - CONFIGURED_DAEMON=$(basename "$(cat $DEFAULT_DISPLAY_MANAGER_FILE 2> /dev/null)") - if grep -wqs text /proc/cmdline; then - echo "Not starting GNOME Display Manager (gdm); found 'text' in kernel commandline." - elif [ -e "$DEFAULT_DISPLAY_MANAGER_FILE" ] && \ - [ "$HEED_DEFAULT_DISPLAY_MANAGER" = "true" ] && \ - [ "$CONFIGURED_DAEMON" != gdm ] ; then - echo "Not starting GNOME Display Manager; it is not the default display manager" - else - echo "Starting GNOME Display Manager" "gdm" - start-stop-daemon --start -b --exec $DAEMON - fi - ;; - stop) - echo "Stopping GNOME Display Manager" "gdm" - set +e - start-stop-daemon --stop --quiet --pidfile /var/run/gdm.pid \ - --name gdm --retry 5 - set -e - ;; - reload) - echo "Scheduling reload of GNOME Display Manager configuration" "gdm" - set +e - start-stop-daemon --stop --signal USR1 --quiet --pidfile \ - /var/run/gdm.pid --name gdm - set -e - ;; - status) - status_of_proc -p "$PIDFILE" "$DAEMON" gdm && exit 0 || exit $? - ;; - restart|force-reload) - $0 stop - $0 start - ;; - *) - echo "Usage: /etc/init.d/gdm {start|stop|restart|reload|force-reload|status}" - exit 1 - ;; -esac - -exit 0 diff --git a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/gdm/gdm/gdm-pam b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/gdm/gdm/gdm-pam deleted file mode 100644 index f9fafed9d..000000000 --- a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/gdm/gdm/gdm-pam +++ /dev/null @@ -1,11 +0,0 @@ -# -# default; standard UN*X access -# -auth required pam_unix.so -account required pam_unix.so -password required pam_unix.so -session required pam_unix.so - -auth optional pam_gnome_keyring.so -session optional pam_gnome_keyring.so auto_start - diff --git a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/gdm/gdm/gdm.conf b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/gdm/gdm/gdm.conf deleted file mode 100644 index 559823b86..000000000 --- a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/gdm/gdm/gdm.conf +++ /dev/null @@ -1,80 +0,0 @@ -# GDM Custom Configuration file. -# -# This file is the appropriate place for specifying your customizations to the -# GDM configuration. If you run gdmsetup, it will automatically edit this -# file for you and will cause the daemon and any running GDM GUI programs to -# automatically update with the new configuration. Not all configuration -# options are supported by gdmsetup, so to modify some values it may be -# necessary to modify this file directly by hand. -# -# This file overrides the default configuration settings. These settings -# are stored in the GDM System Defaults configuration file, which is found -# at the following location. -# -# /usr/share/gdm/defaults.conf. -# -# This file contains comments about the meaning of each configuration option, -# so is also a useful reference. Also refer to the documentation links at -# the end of this comment for further information. In short, to hand-edit -# this file, simply add or modify the key=value combination in the -# appropriate section in the template below this comment section. -# -# For example, if you want to specify a different value for the Enable key -# in the "[debug]" section of your GDM System Defaults configuration file, -# then add "Enable=true" in the "[debug]" section of this file. If the -# key already exists in this file, then simply modify it. -# -# Older versions of GDM used the "gdm.conf" file for configuration. If your -# system has an old gdm.conf file on the system, it will be used instead of -# this file - so changes made to this file will not take effect. Consider -# migrating your configuration to this file and removing the gdm.conf file. -# -# If you hand edit a GDM configuration file, you can run the following -# command and the GDM daemon will immediately reflect the change. Any -# running GDM GUI programs will also be notified to update with the new -# configuration. -# -# gdmflexiserver --command="UPDATE_CONFIG <configuration key>" -# -# e.g, the "Enable" key in the "[debug]" section would be "debug/Enable". -# -# You can also run gdm-restart or gdm-safe-restart to cause GDM to restart and -# re-read the new configuration settings. You can also restart GDM by sending -# a HUP or USR1 signal to the daemon. HUP behaves like gdm-restart and causes -# any user session started by GDM to exit immediately while USR1 behaves like -# gdm-safe-restart and will wait until all users log out before restarting GDM. -# -# For full reference documentation see the gnome help browser under -# GNOME|System category. You can also find the docs in HTML form on -# http://www.gnome.org/projects/gdm/ -# -# NOTE: Lines that begin with "#" are considered comments. -# -# Have fun! - -[daemon] - -[security] - -[xdmcp] - -[gui] - -[greeter] - -[chooser] - -[debug] - -# Note that to disable servers defined in the GDM System Defaults -# configuration file (such as 0=Standard, you must put a line in this file -# that says 0=inactive, as described in the Configuration section of the GDM -# documentation. -# -[servers] - -# Also note, that if you redefine a [server-foo] section, then GDM will -# use the definition in this file, not the GDM System Defaults configuration -# file. It is currently not possible to disable a [server-foo] section -# defined in the GDM System Defaults configuration file. -# diff --git a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/gdm/gdm/gdm.service.in b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/gdm/gdm/gdm.service.in deleted file mode 100644 index 3e1556ae0..000000000 --- a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/gdm/gdm/gdm.service.in +++ /dev/null @@ -1,10 +0,0 @@ -[Unit] -Description=Gnome Display Manager -After=systemd-user-sessions.service - -[Service] -ExecStart=%sbindir%/gdm -nodaemon -StandardOutput=syslog - -[Install] -Alias=display-manager.service diff --git a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/gedit/gedit_2.30.4.bb b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/gedit/gedit_2.30.4.bb index 5d244de64..ba425ad6b 100644 --- a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/gedit/gedit_2.30.4.bb +++ b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/gedit/gedit_2.30.4.bb @@ -7,7 +7,10 @@ DEPENDS = "gvfs enchant gconf gnome-doc-utils glib-2.0 gtk+ gtksourceview2 iso-c LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f" -inherit gnome gettext pythonnative +inherit distro_features_check gnome gettext pythonnative + +REQUIRED_DISTRO_FEATURES = "x11" + SRC_URI = "${GNOME_MIRROR}/${GNOMEBN}/${@gnome_verdir("${PV}")}/${GNOMEBN}-${PV}.tar.${GNOME_COMPRESS_TYPE};name=archive \ file://0001-workaround-void-pointer-arithmetic.patch \ file://0001-Remove-help-directory-from-build.patch \ diff --git a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/gnome-keyring/gnome-keyring/egg-asn1x.patch b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/gnome-keyring/gnome-keyring/egg-asn1x.patch deleted file mode 100644 index ad8a40ccf..000000000 --- a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/gnome-keyring/gnome-keyring/egg-asn1x.patch +++ /dev/null @@ -1,55 +0,0 @@ -Fixed build error with gcc 4.8 - -Errors like below - -egg-asn1x.c: In function 'anode_encode_build': -egg-asn1x.c:1280:7: warning: variable 'type' set but not used [-Wunused-but-set-variable] -egg-asn1x.c: In function 'traverse_and_prepare': -egg-asn1x.c:3354:3: warning: passing argument 1 of 'egg_asn1x_create' from incompatible pointer type [enabled by default] -In file included from egg-asn1x.c:50:0: -egg-asn1x.h:38:8: note: expected 'const struct static_struct_asn *' but argument is of type 'const struct asn1_static_node *' -egg-asn1x.c: At top level: -egg-asn1x.c:3509:1: error: conflicting types for 'egg_asn1x_create' -In file included from egg-asn1x.c:50:0: -egg-asn1x.h:38:8: note: previous declaration of 'egg_asn1x_create' was here -egg-asn1x.c:3572:1: error: conflicting types for 'egg_asn1x_create_quark' -In file included from egg-asn1x.c:50:0: -egg-asn1x.h:41:8: note: previous declaration of 'egg_asn1x_create_quark' was here -egg-asn1x.c:3579:1: error: conflicting types for 'egg_asn1x_create_and_decode' -In file included from egg-asn1x.c:50:0: -egg-asn1x.h:44:8: note: previous declaration of 'egg_asn1x_create_and_decode' was here -make[4]: *** [libegg_la-egg-asn1x.lo] Error 1 - - -Signed-off-by: Khem Raj <raj.khem@gmail.com> - -Upstream-Status: Pending -Index: gnome-keyring-2.32.1/egg/egg-asn1x.h -=================================================================== ---- gnome-keyring-2.32.1.orig/egg/egg-asn1x.h 2010-10-18 19:11:38.000000000 -0700 -+++ gnome-keyring-2.32.1/egg/egg-asn1x.h 2013-06-11 15:15:00.675399263 -0700 -@@ -25,6 +25,7 @@ - #define EGG_ASN1X_H_ - - #include <glib.h> -+#include <libtasn1.h> - - #ifndef HAVE_EGG_ALLOCATOR - typedef void* (*EggAllocator) (void* p, gsize); -@@ -35,13 +36,13 @@ - - struct static_struct_asn; - --GNode* egg_asn1x_create (const struct static_struct_asn *defs, -+GNode* egg_asn1x_create (const ASN1_ARRAY_TYPE *defs, - const gchar *type); - --GNode* egg_asn1x_create_quark (const struct static_struct_asn *defs, -+GNode* egg_asn1x_create_quark (const ASN1_ARRAY_TYPE *defs, - GQuark type); - --GNode* egg_asn1x_create_and_decode (const struct static_struct_asn *defs, -+GNode* egg_asn1x_create_and_decode (const ASN1_ARRAY_TYPE *defs, - const gchar *type, - gconstpointer data, - gsize n_data); diff --git a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/gnome-keyring/gnome-keyring_2.32.1.bb b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/gnome-keyring/gnome-keyring_2.32.1.bb deleted file mode 100644 index fd6ca73a4..000000000 --- a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/gnome-keyring/gnome-keyring_2.32.1.bb +++ /dev/null @@ -1,56 +0,0 @@ -SUMMARY = "Password and keyring managing daemon" -HOMEPAGE = "http://www.gnome.org/" -BUGTRACKER = "https://bugzilla.gnome.org/" - -LICENSE = "GPLv2+ & LGPLv2+ & LGPLv2.1+" -LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f \ - file://gcr/gcr.h;endline=22;md5=a272df1e633e27ecf35e74fb5576250e \ - file://egg/egg-dbus.h;endline=25;md5=eb6f531af37165dc53420c073d774e61 \ - file://gp11/gp11.h;endline=24;md5=bd8c7a8a21d6c28d40536d96a35e3469 \ - file://pkcs11/pkcs11i.h;endline=24;md5=e72cfbb718389b76a4dae838d1c1f439" - -SECTION = "x11/gnome" - -PR = "r12" - -inherit autotools gnome gtk-doc pkgconfig gsettings - -SRC_URI += "file://egg-asn1x.patch \ - file://musl.patch \ -" - -DEPENDS = "gtk+ libgcrypt libtasn1 libtasn1-native gconf ${@bb.utils.contains('DISTRO_FEATURES', 'pam', 'libpam', '', d)} intltool-native" -RDEPENDS_${PN} = "libgnome-keyring glib-2.0-utils" - -LDFLAGS += "-lgmodule-2.0" - -EXTRA_OECONF = "${@bb.utils.contains('DISTRO_FEATURES', 'pam', '--enable-pam --with-pam-dir=${base_libdir}/security', '--disable-pam', d)}" - -SRC_URI[archive.md5sum] = "9a8aa74e03361676f29d6e73155786fc" -SRC_URI[archive.sha256sum] = "31fecec1430a97f59a6159a5a2ea8d6a1b44287f1e9e595b3594df46bf7f18f9" -GNOME_COMPRESS_TYPE="bz2" - -FILES_${PN} += "${datadir}/dbus-1/services ${datadir}/gcr \ - ${base_libdir}/security/*${SOLIBSDEV} \ - " - -FILES_${PN}-dev += "${libdir}/${BPN}/devel/*.la \ - ${libdir}/${BPN}/devel/*${SOLIBSDEV} \ - ${libdir}/${BPN}/standalone/*.la \ - ${base_libdir}/security/*.la \ - " - -INSANE_SKIP_${PN}-dev += "dev-elf" - -FILES_${PN}-dbg += "${libdir}/${BPN}/standalone/.debug/ \ - ${libdir}/${BPN}/devel/.debug/ \ - ${base_libdir}/security/.debug/" - -# Make compatible with gcr version 3 or newer by removing -# org.gnome.crypto.pgp.*, which is the provider for this optional -# functionality. - -do_install_append() { - rm ${D}${datadir}/GConf/gsettings/org.gnome.crypto.pgp.convert - rm ${D}${datadir}/glib-2.0/schemas/org.gnome.crypto.pgp.gschema.xml -} diff --git a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/gnome-keyring/gnome-keyring_3.20.0.bb b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/gnome-keyring/gnome-keyring_3.20.0.bb new file mode 100644 index 000000000..55640625d --- /dev/null +++ b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/gnome-keyring/gnome-keyring_3.20.0.bb @@ -0,0 +1,42 @@ +SUMMARY = "Password and keyring managing daemon" +HOMEPAGE = "http://www.gnome.org/" +BUGTRACKER = "https://bugzilla.gnome.org/" +SECTION = "x11/gnome" + +LICENSE = "GPLv2+ & LGPLv2+ & LGPLv2.1+" +LIC_FILES_CHKSUM = " \ + file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263 \ + file://COPYING.LIB;md5=4fbd65380cdd255951079008b364516c \ +" + +inherit distro_features_check gnomebase remove-libtool + +DEPENDS = " \ + intltool-native \ + glib-2.0-native \ + gtk+3 \ + gcr \ + libgcrypt \ + ${@bb.utils.contains('DISTRO_FEATURES', 'pam', 'libpam', '', d)} \ +" + +SRC_URI[archive.md5sum] = "e09efe8021944dae404736b5a2adb98e" +SRC_URI[archive.sha256sum] = "bc17cecd748a0e46e302171d11c3ae3d76bba5258c441fabec3786f418e7ec99" +SRC_URI += "file://musl.patch" + +REQUIRED_DISTRO_FEATURES = "x11" + +RDEPENDS_${PN} = "libgnome-keyring glib-2.0-utils" + +EXTRA_OECONF = " \ + --disable-doc \ + ${@bb.utils.contains('DISTRO_FEATURES', 'pam', '--enable-pam --with-pam-dir=${base_libdir}/security', '--disable-pam', d)} \ +" + + +FILES_${PN} += " \ + ${datadir}/dbus-1/services \ + ${datadir}/p11-kit \ + ${base_libdir}/security/*${SOLIBSDEV} \ + ${libdir}/pkcs11/gnome-keyring-pkcs11.so \ +" diff --git a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/gnome-keyring/libgnome-keyring_2.32.0.bb b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/gnome-keyring/libgnome-keyring_2.32.0.bb deleted file mode 100644 index e24188232..000000000 --- a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/gnome-keyring/libgnome-keyring_2.32.0.bb +++ /dev/null @@ -1,20 +0,0 @@ -SUMMARY = "Compatibility library for accessing secrets" -HOMEPAGE = "http://www.gnome.org/" -BUGTRACKER = "https://bugzilla.gnome.org/" - -LICENSE = "LGPLv2 & LGPLv2+ & LGPLv2.1+" -LIC_FILES_CHKSUM = "file://COPYING;md5=0914b9d3ebaba41ef2e3e0ae16f296cf \ - file://library/gnome-keyring.h;endline=25;md5=68ea64f81c160d670c37da5f137be4fb \ - file://library/gnome-keyring.c;endline=26;md5=8d7a4fb674aaa012ea5a98e7c368b4a5 \ - file://egg/egg-dh.h;endline=22;md5=1626c16af2a8da1f88324cf3ced33f08" - -SECTION = "x11/gnome/libs" -PR = "r3" - -inherit gnomebase gtk-doc - -DEPENDS = "dbus libgcrypt glib-2.0 intltool-native" - -SRC_URI[archive.md5sum] = "c42b2ca66204835d901d3dbfc1fa5ae6" -SRC_URI[archive.sha256sum] = "56388c0d81ddfdb57d30e4963c83ecc1c18498aab99395420e0fff69929a0f0c" -GNOME_COMPRESS_TYPE="bz2" diff --git a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/gnome-keyring/libgnome-keyring_3.12.0.bb b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/gnome-keyring/libgnome-keyring_3.12.0.bb new file mode 100644 index 000000000..82abe3349 --- /dev/null +++ b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/gnome-keyring/libgnome-keyring_3.12.0.bb @@ -0,0 +1,17 @@ +SUMMARY = "Compatibility library for accessing secrets" +HOMEPAGE = "http://www.gnome.org/" +BUGTRACKER = "https://bugzilla.gnome.org/" + +LICENSE = "GPLv2 & LGPLv2" +LIC_FILES_CHKSUM = " \ + file://COPYING;md5=0914b9d3ebaba41ef2e3e0ae16f296cf \ + file://COPYING.GPL;md5=94d55d512a9ba36caa9b7df079bae19f \ +" +SECTION = "x11/gnome/libs" + +inherit gnomebase gtk-doc gobject-introspection + +DEPENDS = "dbus libgcrypt glib-2.0 glib-2.0-native intltool-native" + +SRC_URI[archive.md5sum] = "6696e4f2e9aed4625cdc3af30bd8c238" +SRC_URI[archive.sha256sum] = "c4c178fbb05f72acc484d22ddb0568f7532c409b0a13e06513ff54b91e947783" diff --git a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/gnome-menus/gnome-menus3_3.10.1.bb b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/gnome-menus/gnome-menus3_3.10.1.bb index 01da347bd..647ae914f 100644 --- a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/gnome-menus/gnome-menus3_3.10.1.bb +++ b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/gnome-menus/gnome-menus3_3.10.1.bb @@ -6,7 +6,9 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263 \ DEPENDS = "python libxml2 gconf popt gtk+3 intltool-native gnome-common-native" -inherit gnomebase pkgconfig python-dir pythonnative gobject-introspection +inherit distro_features_check gnomebase pkgconfig python-dir pythonnative gobject-introspection + +REQUIRED_DISTRO_FEATURES = "x11" BPN = "gnome-menus" diff --git a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/gnome-mime-data/gnome-mime-data/pkgconfig.patch b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/gnome-mime-data/gnome-mime-data/pkgconfig.patch deleted file mode 100644 index 09034255d..000000000 --- a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/gnome-mime-data/gnome-mime-data/pkgconfig.patch +++ /dev/null @@ -1,14 +0,0 @@ -Upstream-Status: Inappropriate [configuration] - -Index: gnome-mime-data-2.18.0/Makefile.am -=================================================================== ---- gnome-mime-data-2.18.0.orig/Makefile.am 2009-06-11 17:27:48.000000000 +0100 -+++ gnome-mime-data-2.18.0/Makefile.am 2009-06-11 17:27:59.000000000 +0100 -@@ -1,6 +1,6 @@ - SUBDIRS = man po - --pkgconfigdir = $(datadir)/pkgconfig -+pkgconfigdir = $(libdir)/pkgconfig - pkgconfig_DATA = gnome-mime-data-2.0.pc - - NULL= diff --git a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/gnome-mime-data/gnome-mime-data_2.18.0.bb b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/gnome-mime-data/gnome-mime-data_2.18.0.bb deleted file mode 100644 index eeac1bb4a..000000000 --- a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/gnome-mime-data/gnome-mime-data_2.18.0.bb +++ /dev/null @@ -1,19 +0,0 @@ -SUMMARY = "Base MIME and Application database for GNOME" -HOMEPAGE = "http://www.gnome.org/" -BUGTRACKER = "https://bugzilla.gnome.org/" - -LICENSE = "GPLv2 & GPLv2+" -LIC_FILES_CHKSUM = "file://COPYING;md5=59530bdf33659b29e73d4adb9f9f6552 \ - file://check-mime.pl;endline=26;md5=a95b63c92c33d4ca1af61a315888f450" - -inherit gnomebase mime -PR = "r4" - -SRC_URI += "file://pkgconfig.patch" - -SRC_URI[archive.md5sum] = "541858188f80090d12a33b5a7c34d42c" -SRC_URI[archive.sha256sum] = "37196b5b37085bbcd45c338c36e26898fe35dd5975295f69f48028b1e8436fd7" -GNOME_COMPRESS_TYPE="bz2" - -DEPENDS += "shared-mime-info intltool-native glib-2.0-native" -RDEPENDS_${PN} = "shared-mime-info" diff --git a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/gnome-system-monitor/files/0001-help-remove-YELP-macro.patch b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/gnome-system-monitor/files/0001-help-remove-YELP-macro.patch new file mode 100644 index 000000000..57b60a0d5 --- /dev/null +++ b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/gnome-system-monitor/files/0001-help-remove-YELP-macro.patch @@ -0,0 +1,28 @@ +From 4a3ee8b46d25b3d310448bfa4446e15a686fc685 Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?Andreas=20M=C3=BCller?= <schnitzeltony@gmail.com> +Date: Fri, 23 Mar 2018 13:50:18 +0100 +Subject: [PATCH] help: remove YELP macro +MIME-Version: 1.0 +Content-Type: text/plain; charset=UTF-8 +Content-Transfer-Encoding: 8bit + +Upstream-Status: Inappropriate [embedded-specific] + +Signed-off-by: Andreas Müller <schnitzeltony@gmail.com> +--- + help/Makefile.am | 2 -- + 1 file changed, 2 deletions(-) + +diff --git a/help/Makefile.am b/help/Makefile.am +index c5cd0d3..4b83adf 100644 +--- a/help/Makefile.am ++++ b/help/Makefile.am +@@ -1,5 +1,3 @@ +-@YELP_HELP_RULES@ +- + HELP_ID = gnome-system-monitor + + HELP_FILES = \ +-- +2.14.3 + diff --git a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/gnome-system-monitor/gnome-system-monitor_3.26.0.bb b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/gnome-system-monitor/gnome-system-monitor_3.26.0.bb new file mode 100644 index 000000000..9b6ce17ca --- /dev/null +++ b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/gnome-system-monitor/gnome-system-monitor_3.26.0.bb @@ -0,0 +1,34 @@ +SUMMARY = "Gnome system monitor" +LICENSE = "GPLv2" +LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe" + +DEPENDS = " \ + intltool-native \ + gnome-common-native \ + glib-2.0-native \ + gtkmm3 \ + libgtop \ + librsvg \ + libwnck3 \ +" + +inherit gnomebase distro_features_check + +REQUIRED_DISTRO_FEATURES = "x11" + +SRC_URI[archive.md5sum] = "fcd59867c07f8c4853b1e28d60cbc037" +SRC_URI[archive.sha256sum] = "f848a8c2ca5e164cf09d3a205dd49e4e4bf4b60d43b0969c10443eb519d0e6b3" +SRC_URI += "file://0001-help-remove-YELP-macro.patch" + +RRECOMMENDS_${PN} = "adwaita-icon-theme" + +FILES_${PN} += " \ + ${datadir}/icons \ + ${datadir}/dbus-1 \ + ${datadir}/gnome/autostart \ +" + +FILES_${PN}-doc += " \ + ${datadir}/omf \ + ${datadir}/gnome/help \ +" diff --git a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/gnome-vfs/gnome-vfs-2.24.4/0001-multiple-Makefile.am-remove-DG_DISABLE_DEPRECATED-to.patch b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/gnome-vfs/gnome-vfs-2.24.4/0001-multiple-Makefile.am-remove-DG_DISABLE_DEPRECATED-to.patch deleted file mode 100644 index 383329970..000000000 --- a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/gnome-vfs/gnome-vfs-2.24.4/0001-multiple-Makefile.am-remove-DG_DISABLE_DEPRECATED-to.patch +++ /dev/null @@ -1,77 +0,0 @@ -From 536e9b57cada4a9f92e073fdf01cdf1def435b6b Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?Andreas=20M=C3=BCller?= <schnitzeltony@googlemail.com> -Date: Tue, 7 May 2013 14:56:06 +0200 -Subject: [PATCH] multiple Makefile.am: remove -DG_DISABLE_DEPRECATED to fix - build with glib-2.36 -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit - -Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> ---- - daemon/Makefile.am | 1 - - libgnomevfs/Makefile.am | 1 - - 2 files changed, 0 insertions(+), 2 deletions(-) - -Index: gnome-vfs-2.24.4/daemon/Makefile.am -=================================================================== ---- gnome-vfs-2.24.4.orig/daemon/Makefile.am 2013-10-17 16:39:39.081024798 -0700 -+++ gnome-vfs-2.24.4/daemon/Makefile.am 2013-10-17 16:39:39.213024794 -0700 -@@ -8,7 +8,6 @@ - -D_LARGEFILE64_SOURCE \ - -D_POSIX_PTHREAD_SEMANTICS \ - -D_REENTRANT \ -- -DG_DISABLE_DEPRECATED \ - -DGNOME_VFS_PREFIX=\"$(prefix)\" \ - -DGNOME_VFS_DATADIR=\"$(datadir)\" \ - -DGNOME_VFS_LIBDIR=\"$(libdir)\" \ -Index: gnome-vfs-2.24.4/libgnomevfs/Makefile.am -=================================================================== ---- gnome-vfs-2.24.4.orig/libgnomevfs/Makefile.am 2013-10-17 16:39:39.081024798 -0700 -+++ gnome-vfs-2.24.4/libgnomevfs/Makefile.am 2013-10-17 16:39:39.213024794 -0700 -@@ -19,7 +19,6 @@ - -D_LARGEFILE64_SOURCE \ - -D_POSIX_PTHREAD_SEMANTICS \ - -D_REENTRANT \ -- -DG_DISABLE_DEPRECATED \ - -DGNOME_VFS_PREFIX=\"$(prefix)\" \ - -DGNOME_VFS_BINDIR=\"$(bindir)\" \ - -DGNOME_VFS_DATADIR=\"$(datadir)\" \ -Index: gnome-vfs-2.24.4/modules/Makefile.am -=================================================================== ---- gnome-vfs-2.24.4.orig/modules/Makefile.am 2013-10-17 16:39:39.081024798 -0700 -+++ gnome-vfs-2.24.4/modules/Makefile.am 2013-10-17 16:39:39.213024794 -0700 -@@ -18,7 +18,6 @@ - -D_POSIX_PTHREAD_SEMANTICS \ - -D_REENTRANT \ - -DSSH_PROGRAM=\"$(SSH_PROGRAM)\" \ -- -DG_DISABLE_DEPRECATED \ - -DGNOME_VFS_PREFIX=\"$(prefix)\" \ - -DGNOME_VFS_DATADIR=\"$(datadir)\" \ - -DGNOME_VFS_LIBDIR=\"$(libdir)\" \ -Index: gnome-vfs-2.24.4/programs/Makefile.am -=================================================================== ---- gnome-vfs-2.24.4.orig/programs/Makefile.am 2013-10-17 16:39:39.081024798 -0700 -+++ gnome-vfs-2.24.4/programs/Makefile.am 2013-10-17 16:39:39.213024794 -0700 -@@ -4,8 +4,7 @@ - -I$(top_srcdir) \ - -I$(top_builddir) \ - $(TEST_CFLAGS) \ -- $(VFS_CFLAGS) \ -- -DG_DISABLE_DEPRECATED -+ $(VFS_CFLAGS) - - libraries = \ - $(top_builddir)/libgnomevfs/libgnomevfs-2.la \ -Index: gnome-vfs-2.24.4/test/Makefile.am -=================================================================== ---- gnome-vfs-2.24.4.orig/test/Makefile.am 2010-02-09 04:16:14.000000000 -0800 -+++ gnome-vfs-2.24.4/test/Makefile.am 2013-10-17 16:42:49.109019172 -0700 -@@ -6,7 +6,6 @@ - -I$(top_builddir)/libgnomevfs \ - $(TEST_CFLAGS) \ - $(VFS_CFLAGS) \ -- -DG_DISABLE_DEPRECATED \ - -DMODULES_PATH=\"$(libdir)/vfs/modules\" - - if OS_WIN32 diff --git a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/gnome-vfs/gnome-vfs-2.24.4/do-not-use-srcdir-variable.patch b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/gnome-vfs/gnome-vfs-2.24.4/do-not-use-srcdir-variable.patch deleted file mode 100644 index 30ca29b10..000000000 --- a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/gnome-vfs/gnome-vfs-2.24.4/do-not-use-srcdir-variable.patch +++ /dev/null @@ -1,22 +0,0 @@ -Fixes errors with new autotools - -| automake: error: using '$(srcdir)' in TESTS is currently broken: '$(srcdir)/auto-test' -| autoreconf: automake failed with exit status: 1 -| ERROR: autoreconf execution failed. - -Upstream-Status: Not Submitted -Signed-off-by: Khem Raj <raj.khem@gmail.com> - -Index: gnome-vfs-2.24.4/test/Makefile.am -=================================================================== ---- gnome-vfs-2.24.4.orig/test/Makefile.am 2013-10-17 16:43:36.677017764 -0700 -+++ gnome-vfs-2.24.4/test/Makefile.am 2013-10-17 16:48:47.369008566 -0700 -@@ -64,7 +64,7 @@ - test-async-cancel \ - test-escape \ - test-uri \ -- $(srcdir)/auto-test -+ auto-test - - libraries = \ - $(top_builddir)/libgnomevfs/libgnomevfs-2.la \ diff --git a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/gnome-vfs/gnome-vfs-2.24.4/gconftool-lossage.patch b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/gnome-vfs/gnome-vfs-2.24.4/gconftool-lossage.patch deleted file mode 100644 index 0f52136e3..000000000 --- a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/gnome-vfs/gnome-vfs-2.24.4/gconftool-lossage.patch +++ /dev/null @@ -1,13 +0,0 @@ -Upstream-Status: Inappropriate [configuration] - ---- gnome-vfs-2.6.0/configure.in~ 2004-03-22 12:36:23.000000000 +0000 -+++ gnome-vfs-2.6.0/configure.in 2004-06-07 16:04:34.000000000 +0100 -@@ -154,7 +154,7 @@ - AC_PATH_PROG(GCONFTOOL, gconftool-2, no) - - if test x"$GCONFTOOL" = xno; then -- AC_MSG_ERROR([gconftool-2 executable not found in your path - should be installed with GConf]) -+ AC_MSG_WARN([gconftool-2 executable not found in your path - should be installed with GConf]) - fi - - AM_GCONF_SOURCE_2 diff --git a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/gnome-vfs/gnome-vfs-2.24.4/gnome-vfs-no-kerberos.patch b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/gnome-vfs/gnome-vfs-2.24.4/gnome-vfs-no-kerberos.patch deleted file mode 100644 index dabec32c6..000000000 --- a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/gnome-vfs/gnome-vfs-2.24.4/gnome-vfs-no-kerberos.patch +++ /dev/null @@ -1,53 +0,0 @@ -Upstream-Status: Inappropriate [configuration] - -removes kerberos completely to avoid conflicts with installed kerberos ---- configure.in.orig 2007-01-05 19:42:26.418541610 +0200 -+++ configure.in 2007-01-05 19:42:56.604261797 +0200 -@@ -436,47 +436,6 @@ - ]) - AM_CONDITIONAL(HAVE_CDDA, test $have_cdda = yes) - AC_SUBST(CDDA_LIBS) -- --dnl GSSAPI --dnl Check for Kerberos installation --have_gssapi=no --AC_PATH_PROG([KRB5_CONFIG], krb5-config, none, $PATH:/usr/kerberos/bin) -- --if test "x$KRB5_CONFIG" != "xnone"; then -- GSSAPI_LIBS="`${KRB5_CONFIG} --libs gssapi`" -- GSSAPI_CFLAGS="`${KRB5_CONFIG} --cflags gssapi`" -- -- saved_CPPFLAGS="$CPPFLAGS" -- saved_LIBS="$LIBS" -- LIBS="$LIBS $GSSAPI_LIBS" -- CPPFLAGS="$CPPFLAGS $GSSAPI_CFLAGS" -- # MIT and Heimdal put gssapi.h in different places -- AC_CHECK_HEADERS(gssapi/gssapi.h gssapi.h, [ -- AC_CHECK_FUNCS(gss_init_sec_context, [ -- AC_MSG_NOTICE([GSSAPI authentication support enabled]) -- AC_DEFINE(HAVE_GSSAPI, 1, [Define if GSSAPI support is enabled]) -- AC_CHECK_HEADERS(gssapi/gssapi_generic.h) -- have_gssapi=yes -- -- # MIT Kerberos lacks GSS_C_NT_HOSTBASED_SERVICE -- AC_CHECK_DECL([GSS_C_NT_HOSTBASED_SERVICE],, -- [AC_DEFINE([GSS_C_NT_HOSTBASED_SERVICE], gss_nt_service_name, -- [Define if GSS_C_NT_HOSTBASED_SERVICE is not defined otherwise]) -- ], [ -- #ifdef HAVE_GSSAPI_GSSAPI_H -- #include <gssapi/gssapi.h> -- #else -- #include <gssapi.h> -- #endif -- ]) -- ]) -- break -- ]) -- LIBS="$saved_LIBS" -- CPPFLAGS="$saved_CPPFLAGS" --fi --AC_SUBST(GSSAPI_LIBS) --AC_SUBST(GSSAPI_CFLAGS) - - dnl ****************************** - dnl http-method (neon checks) diff --git a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/gnome-vfs/gnome-vfs_2.24.4.bb b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/gnome-vfs/gnome-vfs_2.24.4.bb deleted file mode 100644 index 3ec646697..000000000 --- a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/gnome-vfs/gnome-vfs_2.24.4.bb +++ /dev/null @@ -1,58 +0,0 @@ -SUMMARY = "a userspace virtual filesystem" -HOMEPAGE = "http://www.gnome.org/" -BUGTRACKER = "https://bugzilla.gnome.org/" - -LICENSE = "GPLv2+ & LGPLv2+" -LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f \ - file://libgnomevfs/gnome-vfs.h;endline=25;md5=17071e69707a8f42887d88413f2623cb \ - file://programs/gnomevfs-ls.c;endline=23;md5=678a2e8bedaef5818ccabe633840196b \ - file://daemon/vfs-daemon.c;endline=21;md5=5f2c61553fb16abb07fc9498ca03fe1f \ - file://modules/cdda-cddb.h;endline=22;md5=20ed324ca64907c366ecd7f22b8e0c54" - -DEPENDS = "libxml2 gconf dbus bzip2 gnome-mime-data zlib intltool-native gnome-common-native" -RRECOMMENDS_${PN} = "gnome-vfs-plugin-file shared-mime-info" -# Some legacy packages will require gnome-mime-data to be installed, but use of -# it is deprecated. -PR = "r3" - -inherit gnome - -# This is to provide compatibility with the gnome-vfs DBus fork -RPROVIDES_${PN} = "gnome-vfs-plugin-dbus" - -SRC_URI += " \ - file://gconftool-lossage.patch \ - file://gnome-vfs-no-kerberos.patch;striplevel=0 \ - file://0001-multiple-Makefile.am-remove-DG_DISABLE_DEPRECATED-to.patch \ - file://do-not-use-srcdir-variable.patch \ -" - -SRC_URI[archive.md5sum] = "a05fab03eeef10a47dd156b758982f2e" -SRC_URI[archive.sha256sum] = "62de64b5b804eb04104ff98fcd6a8b7276d510a49fbd9c0feb568f8996444faa" -GNOME_COMPRESS_TYPE="bz2" - -PACKAGECONFIG ??= "${@bb.utils.contains('DISTRO_FEATURES', 'zeroconf', 'avahi', '', d)}" -PACKAGECONFIG[avahi] = "--enable-avahi,--disable-avahi,avahi" -PACKAGECONFIG[fam] = "--enable-fam,--disable-fam,gamin" - -EXTRA_OECONF = " --disable-hal \ - --disable-openssl \ - --disable-samba \ - ac_cv_lib_acl_acl_get_file=no \ - ac_cv_lib_sec_acl=no \ - gvfs_cv_HAVE_SOLARIS_ACLS=no \ - gvfs_cv_HAVE_POSIX_ACLS=no \ -" - -FILES_${PN} += "${libdir}/vfs ${datadir}/dbus-1/services" -FILES_${PN}-dbg += "${libdir}/gnome-vfs-2.0/modules/.debug" -FILES_${PN}-dev += "${libdir}/gnome-vfs-2.0/include/* ${libdir}/gnome-vfs-2.0/modules/*.la" -FILES_${PN}-staticdev += "${libdir}/gnome-vfs-2.0/modules/*.a" -FILES_${PN}-doc += "${datadir}/gtk-doc" - -PACKAGES_DYNAMIC += "^gnome-vfs-plugin-.*" - -python populate_packages_prepend () { - plugindir = d.expand('${libdir}/gnome-vfs-2.0/modules/') - do_split_packages(d, plugindir, '^lib(.*)\.so$', 'gnome-vfs-plugin-%s', 'GNOME VFS plugin for %s') -} diff --git a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/gnome/libgnomecups/libgnomecups-0.2.3-cups-1.6.patch b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/gnome/libgnomecups/libgnomecups-0.2.3-cups-1.6.patch deleted file mode 100644 index dba60ca69..000000000 --- a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/gnome/libgnomecups/libgnomecups-0.2.3-cups-1.6.patch +++ /dev/null @@ -1,288 +0,0 @@ -Imported from gentoo: -http://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-x86/net-print/libgnomecups/files/libgnomecups-0.2.3-cups-1.6.patch - -From ae783efde4fa69578651994505462f02b8639220 Mon Sep 17 00:00:00 2001 -From: Alexandre Rostovtsev <tetromino@gentoo.org> -Date: Tue, 7 Aug 2012 06:53:09 -0400 -Subject: [PATCH] Use CUPS-1.6 IPP API getter/setter functions - -CUPS 1.6 makes various structures private and introduces these ippGet -and ippSet functions for all of the fields in these structures. -http://www.cups.org/str.php?L3928 - -We define our own accessors when building against CUPS < 1.6. - -Based on work by Jiri Popelka <jpopelka@redhat.com> at -https://bugzilla.gnome.org/show_bug.cgi?id=679759 ---- - libgnomecups/gnome-cups-printer.c | 48 +++++++++++++++++++++++++++++------- - libgnomecups/gnome-cups-queue.c | 43 +++++++++++++++++++++++++++------ - libgnomecups/gnome-cups-request.c | 44 ++++++++++++++++++++++++++++----- - 3 files changed, 110 insertions(+), 25 deletions(-) - -diff --git a/libgnomecups/gnome-cups-printer.c b/libgnomecups/gnome-cups-printer.c -index c924af0..f5e1ef7 100644 ---- a/libgnomecups/gnome-cups-printer.c -+++ b/libgnomecups/gnome-cups-printer.c -@@ -37,6 +37,34 @@ - - #define UPDATE_TIMEOUT 5000 - -+#if (CUPS_VERSION_MAJOR > 1) || (CUPS_VERSION_MINOR > 5) -+#define HAVE_CUPS_1_6 1 -+#endif -+ -+#ifndef HAVE_CUPS_1_6 -+#define ippGetCount(attr) attr->num_values -+#define ippGetName(attr) attr->name -+#define ippGetInteger(attr, element) attr->values[element].integer -+#define ippGetString(attr, element, language) attr->values[element].string.text -+ -+static ipp_attribute_t * -+ippFirstAttribute(ipp_t *ipp) -+{ -+ if (!ipp) -+ return (NULL); -+ return (ipp->current = ipp->attrs); -+} -+ -+static ipp_attribute_t * -+ippNextAttribute(ipp_t *ipp) -+{ -+ if (!ipp || !ipp->current) -+ return (NULL); -+ return (ipp->current = ipp->current->next); -+} -+#endif -+ -+ - struct _GnomeCupsPPDFile { - char name[1]; - }; -@@ -173,9 +201,9 @@ map_reasons (GnomeCupsPrinter *printer, - printer->details->state_reasons = NULL; - - /* cf. RFC2911 4.4.12 */ -- for (i = 0; i < attr->num_values; i++) { -+ for (i = 0; i < ippGetCount (attr); i++) { - const char *p; -- const char *keyword = attr->values [i].string.text; -+ const char *keyword = ippGetString (attr, i, NULL); - - reason = g_new (GnomeCupsPrinterReason, 1); - -@@ -224,8 +252,8 @@ gnome_cups_printer_get_info (GnomeCupsPrinter *printer) - return printer->details->info; - } - --#define MAP_INT(v,a) {if (!g_ascii_strcasecmp (attr->name, (a))) { if ((v) != attr->values[0].integer) { changed = TRUE; } (v) = attr->values[0].integer; }} --#define MAP_STRING(v,a) {if (!g_ascii_strcasecmp (attr->name, (a))) { if (!v || strcmp (v, attr->values[0].string.text)) { g_free (v); changed = TRUE; (v) = g_strdup (attr->values[0].string.text); }}} -+#define MAP_INT(v,a) {if (!g_ascii_strcasecmp (ippGetName (attr), (a))) { if ((v) != ippGetInteger (attr, 0)) { changed = TRUE; } (v) = ippGetInteger (attr, 0); }} -+#define MAP_STRING(v,a) {if (!g_ascii_strcasecmp (ippGetName (attr), (a))) { if (!v || strcmp (v, ippGetString (attr, 0, NULL))) { g_free (v); changed = TRUE; (v) = g_strdup (ippGetString (attr, 0, NULL)); }}} - - static void - attributes_update_cb (guint id, -@@ -243,14 +271,14 @@ attributes_update_cb (guint id, - changed = FALSE; - - if (!error && response) { -- for (attr = response->attrs; attr != NULL; attr = attr->next) { -- if (!attr->name) { -+ for (attr = ippFirstAttribute (response); attr != NULL; attr = ippNextAttribute (response)) { -+ if (!ippGetName (attr)) { - continue; - } -- if (!g_ascii_strcasecmp (attr->name, "attributes-charset") || !strcmp (attr->name, "attributes-charset")) { -+ if (!g_ascii_strcasecmp (ippGetName (attr), "attributes-charset") || !strcmp (ippGetName (attr), "attributes-charset")) { - continue; - } -- if (!g_ascii_strcasecmp (attr->name, "printer-state-reasons")) { -+ if (!g_ascii_strcasecmp (ippGetName (attr), "printer-state-reasons")) { - map_reasons (printer, attr); - } - MAP_INT (printer->details->state, "printer-state"); -@@ -570,7 +598,7 @@ get_default (void) - - attr = ippFindAttribute (response, "printer-name", IPP_TAG_NAME); - if (attr) { -- name = g_strdup (attr->values[0].string.text); -+ name = g_strdup (ippGetString (attr, 0, NULL)); - } else { - name = NULL; - } -@@ -698,7 +726,7 @@ get_printer_names (void) - attr = ippFindAttribute (response, "printer-name", IPP_TAG_NAME); - while (attr) { - ret = g_list_prepend (ret, -- g_strdup (attr->values[0].string.text)); -+ g_strdup (ippGetString (attr, 0, NULL))); - - attr = ippFindNextAttribute (response, - "printer-name", -diff --git a/libgnomecups/gnome-cups-queue.c b/libgnomecups/gnome-cups-queue.c -index 9f98ed9..298db42 100644 ---- a/libgnomecups/gnome-cups-queue.c -+++ b/libgnomecups/gnome-cups-queue.c -@@ -15,6 +15,33 @@ - - #define UPDATE_TIMEOUT 3000 - -+#if (CUPS_VERSION_MAJOR > 1) || (CUPS_VERSION_MINOR > 5) -+#define HAVE_CUPS_1_6 1 -+#endif -+ -+#ifndef HAVE_CUPS_1_6 -+#define ippGetName(attr) attr->name -+#define ippGetInteger(attr, element) attr->values[element].integer -+#define ippGetString(attr, element, language) attr->values[element].string.text -+ -+static ipp_attribute_t * -+ippFirstAttribute(ipp_t *ipp) -+{ -+ if (!ipp) -+ return (NULL); -+ return (ipp->current = ipp->attrs); -+} -+ -+static ipp_attribute_t * -+ippNextAttribute(ipp_t *ipp) -+{ -+ if (!ipp || !ipp->current) -+ return (NULL); -+ return (ipp->current = ipp->current->next); -+} -+#endif -+ -+ - struct _GnomeCupsQueueDetails { - char *queue_name; - GList *jobs; -@@ -199,8 +226,8 @@ finish_job (GnomeCupsJob *job) - job->size = job->size * 1024; - } - --#define MAP_STR(dest, src) { if (!g_ascii_strcasecmp (attr->name, (src))) { if ((dest) != NULL) g_free (dest); (dest) = g_strdup (attr->values[0].string.text);}} --#define MAP_INT(dest, src) { if (!g_ascii_strcasecmp (attr->name, (src))) { (dest) = attr->values[0].integer; } } -+#define MAP_STR(dest, src) { if (!g_ascii_strcasecmp (ippGetName (attr), (src))) { if ((dest) != NULL) g_free (dest); (dest) = g_strdup (ippGetString (attr, 0, NULL));}} -+#define MAP_INT(dest, src) { if (!g_ascii_strcasecmp (ippGetName (attr), (src))) { (dest) = ippGetInteger (attr, 0); } } - - static void - get_jobs_cb (guint id, -@@ -231,8 +258,8 @@ get_jobs_cb (guint id, - - if (response) { - job = g_new0 (GnomeCupsJob, 1); -- for (attr = response->attrs; attr != NULL; attr = attr->next) { -- if (attr->name == NULL) { -+ for (attr = ippFirstAttribute (response); attr != NULL; attr = ippNextAttribute (response)) { -+ if (ippGetName (attr) == NULL) { - if (job->name) { - finish_job (job); - jobs = g_list_prepend (jobs, job); -@@ -244,7 +271,7 @@ get_jobs_cb (guint id, - continue; - } - -- if (!g_ascii_strcasecmp (attr->name, "attributes-charset") || !g_ascii_strcasecmp (attr->name, "attributes-charset")) { -+ if (!g_ascii_strcasecmp (ippGetName (attr), "attributes-charset") || !g_ascii_strcasecmp (ippGetName (attr), "attributes-charset")) { - continue; - - } -@@ -355,8 +382,8 @@ gnome_cups_queue_get_job_nocache (GnomeCupsQueue *queue, - - if (response) { - job = g_new0 (GnomeCupsJob, 1); -- for (attr = response->attrs; attr != NULL; attr = attr->next) { -- if (attr->name == NULL) { -+ for (attr = ippFirstAttribute (response); attr != NULL; attr = ippNextAttribute (response)) { -+ if (ippGetName (attr) == NULL) { - if (job->name) { - finish_job (job); - } else { -@@ -366,7 +393,7 @@ gnome_cups_queue_get_job_nocache (GnomeCupsQueue *queue, - break; - } - -- if (!g_ascii_strcasecmp (attr->name, "attributes-charset") || !g_ascii_strcasecmp (attr->name, "attributes-charset")) { -+ if (!g_ascii_strcasecmp (ippGetName (attr), "attributes-charset") || !g_ascii_strcasecmp (ippGetName (attr), "attributes-charset")) { - continue; - } - -diff --git a/libgnomecups/gnome-cups-request.c b/libgnomecups/gnome-cups-request.c -index c94f623..13f0948 100644 ---- a/libgnomecups/gnome-cups-request.c -+++ b/libgnomecups/gnome-cups-request.c -@@ -19,6 +19,36 @@ - #define STOP_UNUSED_THREADS_TIMEOUT 60 - #define CLOSE_UNUSED_CONNECTIONS_TIMEOUT 30 - -+#if (CUPS_VERSION_MAJOR > 1) || (CUPS_VERSION_MINOR > 5) -+#define HAVE_CUPS_1_6 1 -+#endif -+ -+#ifndef HAVE_CUPS_1_6 -+#define ippGetCount(attr) attr->num_values -+#define ippGetValueTag(attr) attr->value_tag -+#define ippGetName(attr) attr->name -+#define ippGetBoolean(attr, element) attr->values[element].boolean -+#define ippGetInteger(attr, element) attr->values[element].integer -+#define ippGetString(attr, element, language) attr->values[element].string.text -+ -+static ipp_attribute_t * -+ippFirstAttribute(ipp_t *ipp) -+{ -+ if (!ipp) -+ return (NULL); -+ return (ipp->current = ipp->attrs); -+} -+ -+static ipp_attribute_t * -+ippNextAttribute(ipp_t *ipp) -+{ -+ if (!ipp || !ipp->current) -+ return (NULL); -+ return (ipp->current = ipp->current->next); -+} -+#endif -+ -+ - typedef struct - { - GMutex *mutex; -@@ -276,14 +306,14 @@ dump_request (ipp_t const *req) - unsigned i; - ipp_attribute_t *attr; - -- for (attr = req->attrs; attr != NULL; attr = attr->next) { -- g_print ("%s", attr->name); -- for (i = 0 ; i < attr->num_values ; i++) { -+ for (attr = ippFirstAttribute (req); attr != NULL; attr = ippNextAttribute (req)) { -+ g_print ("%s", ippGetName (attr)); -+ for (i = 0 ; i < ippGetCount (attr) ; i++) { - g_print ("\t[%d] = ", i); -- switch (attr->value_tag & ~IPP_TAG_COPY) { -+ switch (ippGetValueTag (attr) & ~IPP_TAG_COPY) { - case IPP_TAG_INTEGER: - case IPP_TAG_ENUM: -- g_print ("%d\n", attr->values[i].integer); -+ g_print ("%d\n", ippGetInteger (attr, i)); - break; - - case IPP_TAG_STRING: -@@ -294,11 +324,11 @@ dump_request (ipp_t const *req) - case IPP_TAG_CHARSET: - case IPP_TAG_LANGUAGE: - case IPP_TAG_MIMETYPE: -- g_print ("'%s'\n", attr->values[i].string.text); -+ g_print ("'%s'\n", ippGetString (attr, i, NULL)); - break; - - case IPP_TAG_BOOLEAN: -- g_print ("%s\n", (int)attr->values[i].boolean ? "true" : "false"); -+ g_print ("%s\n", (int)ippGetBoolean (attr, i) ? "true" : "false"); - break; - - default: --- -1.7.8.6 - diff --git a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/gnome/libgnomecups/libgnomecups-0.2.3-glib.h.patch b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/gnome/libgnomecups/libgnomecups-0.2.3-glib.h.patch deleted file mode 100644 index c7b616578..000000000 --- a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/gnome/libgnomecups/libgnomecups-0.2.3-glib.h.patch +++ /dev/null @@ -1,42 +0,0 @@ -Imported from gentoo: - -http://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-x86/net-print/libgnomecups/files/libgnomecups-0.2.3-glib.h.patch - -From d84eee9450b3b6f6155074915efc61bedcc8d446 Mon Sep 17 00:00:00 2001 -From: Dominique Leuenberger <dimstar@opensuse.org> -Date: Sun, 27 Nov 2011 21:36:41 +0100 -Subject: [PATCH] Fix: Only glib.h can be included - ---- - libgnomecups/gnome-cups-i18n.c | 2 +- - libgnomecups/gnome-cups-init.h | 3 +-- - 2 files changed, 2 insertions(+), 3 deletions(-) - -diff --git a/libgnomecups/gnome-cups-i18n.c b/libgnomecups/gnome-cups-i18n.c -index 8987c5c..127756d 100644 ---- a/libgnomecups/gnome-cups-i18n.c -+++ b/libgnomecups/gnome-cups-i18n.c -@@ -1,5 +1,5 @@ - #include <config.h> --#include <glib/gmacros.h> -+#include <glib.h> - #include "gnome-cups-i18n.h" - - #ifdef ENABLE_NLS -diff --git a/libgnomecups/gnome-cups-init.h b/libgnomecups/gnome-cups-init.h -index 22b682a..c4600fc 100644 ---- a/libgnomecups/gnome-cups-init.h -+++ b/libgnomecups/gnome-cups-init.h -@@ -1,8 +1,7 @@ - #ifndef GNOME_CUPS_INIT - #define GNOME_CUPS_INIT - --#include <glib/gtypes.h> --#include <glib/gmacros.h> -+#include <glib.h> - - G_BEGIN_DECLS - --- -1.7.7 - diff --git a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/gtk-engines/files/glib-2.32.patch b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/gtk-engines/files/glib-2.32.patch deleted file mode 100644 index f0b878d37..000000000 --- a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/gtk-engines/files/glib-2.32.patch +++ /dev/null @@ -1,23 +0,0 @@ -From 8d49a386f467cbf8e0842d2218126f643e50f834 Mon Sep 17 00:00:00 2001 -From: Dominique Leuenberger <dimstar@opensuse.org> -Date: Sun, 27 Nov 2011 14:24:57 +0000 -Subject: Fix build with glib 2.31: Only glib.h can be #include'd. Fixes bug #664914 - -Upstream-Status: Backport - ---- -diff --git a/engines/clearlooks/src/animation.c b/engines/clearlooks/src/animation.c -index 1f7a41f..56a9286 100644 ---- a/engines/clearlooks/src/animation.c -+++ b/engines/clearlooks/src/animation.c -@@ -28,7 +28,7 @@ - #include "animation.h" - - #ifdef HAVE_WORKING_ANIMATION --#include <glib/gtimer.h> -+#include <glib.h> - - struct _AnimationInfo { - GTimer *timer; --- -cgit v0.9.0.2 diff --git a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/gtk-engines/files/substitute-tests.patch b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/gtk-engines/files/substitute-tests.patch deleted file mode 100644 index 5c557ba68..000000000 --- a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/gtk-engines/files/substitute-tests.patch +++ /dev/null @@ -1,37 +0,0 @@ -Upstream-Status: Pending - -Signed-off-by: Marko Lindqvist <cazfi74@gmail.com> -diff -Nurd gtk-engines-2.20.2/configure.ac gtk-engines-2.20.2/configure.ac ---- gtk-engines-2.20.2/configure.ac 2010-10-01 15:42:37.000000000 +0300 -+++ gtk-engines-2.20.2/configure.ac 2013-08-20 02:50:27.930510565 +0300 -@@ -166,6 +166,9 @@ - - AC_SUBST(DEVELOPMENT_CFLAGS) - -+AC_SUBST([exported_symbols_tests], [[$(EXPORTED_SYMBOLS_TESTS)]]) -+AC_SUBST([torture_test_tests], [[$(TORTURE_TEST_TESTS)]]) -+ - AM_CONFIG_HEADER([engines/support/config.h]) - - AC_CONFIG_FILES([ -diff -Nurd gtk-engines-2.20.2/test/Makefile.am gtk-engines-2.20.2/test/Makefile.am ---- gtk-engines-2.20.2/test/Makefile.am 2010-09-19 18:18:21.000000000 +0300 -+++ gtk-engines-2.20.2/test/Makefile.am 2013-08-20 02:50:36.842510865 +0300 -@@ -66,7 +66,7 @@ - # Prefix with exported_ - EXPORTED_SYMBOLS_TESTS = $(patsubst %,exported_%,$(BUILD_ENGINES)) - --TESTS += $(EXPORTED_SYMBOLS_TESTS) -+TESTS += @exported_symbols_tests@ - - - ############################################################# -@@ -88,7 +88,7 @@ - TORTURE_TEST_TESTS = torture_buildin $(patsubst %,torture_%,$(TORTURE_TEST_ENGINES)) - - # Add TORTURE_TEST_ENGINES to list of tests --TESTS += $(TORTURE_TEST_TESTS) -+TESTS += @torture_test_tests@ - - # Possible other tests: - # - An extensive theme switch tests that loads/unloads the engine diff --git a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/gtk-engines/gtk-engines_2.20.2.bb b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/gtk-engines/gtk-engines_2.20.2.bb deleted file mode 100644 index 83aa74968..000000000 --- a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/gtk-engines/gtk-engines_2.20.2.bb +++ /dev/null @@ -1,55 +0,0 @@ -SUMMARY = "GTK+ theme engines" -HOMEPAGE = "http://www.gnome.org/" -BUGTRACKER = "https://bugzilla.gnome.org/" - -LICENSE = "LGPLv2.1" -LIC_FILES_CHKSUM = "file://COPYING;md5=2d5025d4aa3495befef8f17206a5b0a1" - -SECTION = "x11/base" -DEPENDS = "intltool-native gtk+ gettext-native glib-2.0-native" - -PR = "r3" - -PACKAGES += "${PN}-schemas" -PACKAGES_DYNAMIC += "^gtk-engine-.* ^gtk-theme-.*" - -RDEPENDS_gtk-theme-redmond = "gtk-engine-redmond95" -RDEPENDS_gtk-theme-metal = "gtk-engine-metal" -RDEPENDS_gtk-theme-mist = "gtk-engine-mist" -RDEPENDS_gtk-theme-crux = "gtk-engine-crux-engine" -RDEPENDS_gtk-theme-lighthouseblue = "gtk-engine-lighthouseblue" -RDEPENDS_gtk-theme-thinice = "gtk-engine-thinice" -RDEPENDS_gtk-theme-industrial = "gtk-engine-industrial" -RDEPENDS_gtk-theme-clearlooks = "gtk-engine-clearlooks" - -FILES_${PN} = "" -FILES_${PN}-dev += "${libdir}/gtk-2.0/*/engines/*.la" -FILES_${PN}-schemas = "${datadir}/gtk-engines/*.xml" - -CFLAGS_prepend = "-DHAVE_ANIMATION " - -RDEPENDS_${PN}-dev = "" - -inherit gnomebase -GNOME_COMPRESS_TYPE="bz2" - -inherit distro_features_check -ANY_OF_DISTRO_FEATURES = "${GTK2DISTROFEATURES}" - -# This picks stable releases in the 2.x series (but not 2.90 onwards, -# which were GNOME 3 betas). -UPSTREAM_CHECK_REGEX = "(?P<pver>2\.([0-8]*[02468])+(\.\d+)+)" - -python populate_packages_prepend() { - engines_root = os.path.join(d.getVar('libdir'), "gtk-2.0/2.10.0/engines") - themes_root = os.path.join(d.getVar('datadir'), "themes") - - do_split_packages(d, engines_root, '^lib(.*)\.so$', 'gtk-engine-%s', 'GTK %s theme engine', extra_depends='') - do_split_packages(d, themes_root, '(.*)', 'gtk-theme-%s', 'GTK theme %s', allow_dirs=True, extra_depends='') - # TODO: mark theme packages as arch all -} - -SRC_URI += "file://glib-2.32.patch \ - file://substitute-tests.patch" -SRC_URI[archive.md5sum] = "5deb287bc6075dc21812130604c7dc4f" -SRC_URI[archive.sha256sum] = "15b680abca6c773ecb85253521fa100dd3b8549befeecc7595b10209d62d66b5" diff --git a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/gtksourceview/gtksourceview-classic-light/classic-light.xml b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/gtksourceview/gtksourceview-classic-light/classic-light.xml new file mode 100644 index 000000000..23b4b9a22 --- /dev/null +++ b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/gtksourceview/gtksourceview-classic-light/classic-light.xml @@ -0,0 +1,131 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + + Based on gtksourceview 'classic' + + This file is part of GtkSourceView + + Copyright (C) 2006-2007 GtkSourceView team + Author: Yevgen Muntyan <muntyan@tamu.edu> + + GtkSourceView is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + GtkSourceView is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with this library; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + +--> +<style-scheme id="classic-light" _name="Classic-Light" version="1.0"> + <author>GtkSourceView team</author> + <_description>Classic color scheme light</_description> + + <!-- The scheme tries to look like the default GVim scheme, + since it is also what the hardwired GtkSourceView 1 color + scheme did --> + + <!-- Palette --> + <color name="black" value="#000000"/> + <color name="white" value="#FFFFFF"/> + <color name="blue" value="#0000FF"/> + <color name="magenta" value="#FF00FF"/> + <color name="violet" value="#6A5ACD"/> + <color name="cyan" value="#008A8C"/> + <color name="gray" value="#BEBEBE"/> + <color name="lightgray" value="#E0E0E0"/> + <color name="green" value="#2E8B57"/> + <color name="bordeaux" value="#A52A2A"/> + <color name="red" value="#FF0000"/> + <color name="yellow" value="#FFFF00"/> + <color name="purple" value="#A020F0"/> + + <!-- Global Settings --> + <style name="current-line" background="#eeeeec"/> + <style name="current-line-number" background="#eeeeec"/> + <style name="draw-spaces" foreground="#babdb6"/> + <style name="background-pattern" background="#f3f3f3"/> + <style name="text" foreground="black" background="white"/> + <style name="selection" background="gray"/> + <style name="cursor" foreground="black"/> + <style name="line-numbers" foreground="black" background="gray"/> + + <!-- Bracket Matching --> + <style name="bracket-match" foreground="white" background="gray"/> + <style name="bracket-mismatch" foreground="white" background="red"/> + + <!-- Right Margin --> + <style name="right-margin" foreground="#000000" background="#000000"/> + + <!-- Search Matching --> + <style name="search-match" background="yellow"/> + + <!-- Comments --> + <style name="def:comment" foreground="blue"/> + <style name="def:shebang" foreground="blue" bold="true"/> + <style name="def:doc-comment-element" italic="true"/> + + <!-- Constants --> + <style name="def:constant" foreground="magenta"/> + <style name="def:special-char" foreground="violet"/> + + <!-- Identifiers --> + <style name="def:identifier" foreground="cyan"/> + + <!-- Statements --> + <style name="def:statement" foreground="bordeaux" bold="true"/> + + <!-- Types --> + <style name="def:type" foreground="green" bold="true"/> + + <!-- Others --> + <style name="def:preprocessor" foreground="purple"/> + <style name="def:error" background="red" bold="true"/> + <style name="def:warning" background="yellow"/> + <style name="def:note" foreground="blue" background="yellow" bold="true"/> + <style name="def:underlined" italic="true" underline="single"/> + + <!-- Heading styles, uncomment to enable --> + <!-- + <style name="def:heading0" scale="5.0"/> + <style name="def:heading1" scale="2.5"/> + <style name="def:heading2" scale="2.0"/> + <style name="def:heading3" scale="1.7"/> + <style name="def:heading4" scale="1.5"/> + <style name="def:heading5" scale="1.3"/> + <style name="def:heading6" scale="1.2"/> + --> + + <!-- Language specific styles --> + <style name="diff:added-line" foreground="#008B8B"/> + <style name="diff:removed-line" foreground="#6A5ACD"/> + <style name="diff:changed-line" use-style="def:preprocessor"/> + <style name="diff:special-case" use-style="def:constant"/> + <style name="diff:location" use-style="def:statement"/> + <style name="diff:diff-file" use-style="def:type"/> + + <style name="xml:tags" foreground="cyan"/> + <style name="xml:attribute-name" foreground="violet"/> + <style name="xml:namespace" foreground="green" bold="true"/> + + <style name="js:object" foreground="#2E8B57" bold="true"/> + <style name="js:constructors" foreground="#008B8B"/> + + <style name="latex:display-math" foreground="#6A5ACD"/> + <style name="latex:command" foreground="#2E8B57" bold="true"/> + <style name="latex:include" use-style="def:preprocessor"/> + + <style name="sh:variable" foreground="#6A5ACD"/> + + <!-- legacy styles for old lang files --> + <style name="Others" foreground="#2E8B57" bold="true"/> + <style name="Others 2" foreground="#008B8B"/> + <style name="Others 3" foreground="#6A5ACD"/> + +</style-scheme> diff --git a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/gtksourceview/gtksourceview-classic-light_1.0.bb b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/gtksourceview/gtksourceview-classic-light_1.0.bb new file mode 100644 index 000000000..e7dc0f865 --- /dev/null +++ b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/gtksourceview/gtksourceview-classic-light_1.0.bb @@ -0,0 +1,21 @@ +DESCRIPTION = "Gtksourceview Classic-Light theme" +LICENSE = "LGPLv2.1" +LIC_FILES_CHKSUM = "file://classic-light.xml;beginline=6;endline=23;md5=2b4f75364fad00a4d752214dcbd7d7c3" + +inherit allarch + +SRC_URI = "file://classic-light.xml" + +S = "${WORKDIR}" + +do_install() { + install -d ${D}${datadir}/gtksourceview-2.0/styles + install -m 0644 ${WORKDIR}/classic-light.xml ${D}${datadir}/gtksourceview-2.0/styles/ + install -d ${D}${datadir}/gtksourceview-3.0/styles + install -m 0644 ${WORKDIR}/classic-light.xml ${D}${datadir}/gtksourceview-3.0/styles/ +} + +FILES_${PN} = " \ + ${datadir}/gtksourceview-2.0/styles \ + ${datadir}/gtksourceview-3.0/styles \ +" diff --git a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/gtksourceview/gtksourceview3_3.24.6.bb b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/gtksourceview/gtksourceview3_3.24.6.bb new file mode 100644 index 000000000..87e48ed3c --- /dev/null +++ b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/gtksourceview/gtksourceview3_3.24.6.bb @@ -0,0 +1,21 @@ +SUMMARY = "Portable C library for multiline text editing" +HOMEPAGE = "http://projects.gnome.org/gtksourceview/" + +LICENSE = "LGPLv2.1" +LIC_FILES_CHKSUM = "file://COPYING;md5=fbc093901857fcd118f065f900982c24" + +DEPENDS = "gtk+3 libxml2 intltool-native gnome-common-native glib-2.0-native" + +PNAME = "gtksourceview" + +S = "${WORKDIR}/${PNAME}-${PV}" + +inherit gnomebase lib_package gettext distro_features_check gtk-doc gobject-introspection + +REQUIRED_DISTRO_FEATURES = "x11" + +SRC_URI = "http://ftp.gnome.org/pub/gnome/sources/gtksourceview/3.24/${PNAME}-${PV}.tar.xz" +SRC_URI[md5sum] = "c09ccfc80f78083841f8fe266c1ac52a" +SRC_URI[sha256sum] = "7aa6bdfebcdc73a763dddeaa42f190c40835e6f8495bb9eb8f78587e2577c188" + +FILES_${PN} += " ${datadir}/gtksourceview-3.0" diff --git a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/gvfs/gvfs_1.32.1.bb b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/gvfs/gvfs_1.36.0.bb index d38068836..5f7391285 100644 --- a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/gvfs/gvfs_1.32.1.bb +++ b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/gvfs/gvfs_1.36.0.bb @@ -8,15 +8,18 @@ DEPENDS += "libsecret glib-2.0 gconf intltool-native libgudev udisks2 polkit sha SRC_URI = "https://download.gnome.org/sources/${BPN}/${@gnome_verdir("${PV}")}/${BPN}-${PV}.tar.xz;name=archive" -SRC_URI[archive.md5sum] = "cbe766b46f324e17d7abcfb4a89a1684" -SRC_URI[archive.sha256sum] = "d0b6c9edab09d52472355657a2f0a14831b2e6c58caba395f721ab683f836ade" +SRC_URI[archive.md5sum] = "216d461c5e96e2cea74253be407af6dc" +SRC_URI[archive.sha256sum] = "9ec388afeb373a213f2cc489184f76a17ae273a000e8a4ec720c1995943256bb" + +do_configure_prepend() { + # make automake happy.. + touch ${S}/ABOUT-NLS +} EXTRA_OECONF = " \ --disable-gdu \ --enable-udisks2 \ --disable-documentation \ - --with-archive-includes=${STAGING_INCDIR} \ - --with-archive-libs=${STAGING_LIBDIR} \ " PACKAGES =+ "gvfsd-ftp gvfsd-sftp gvfsd-trash" @@ -46,7 +49,6 @@ PACKAGECONFIG[afc] = "--enable-afc, --disable-afc, libimobiledevice libplist" PACKAGECONFIG[archive] = "--enable-archive, --disable-archive, libarchive" PACKAGECONFIG[avahi] = "--enable-avahi, --disable-avahi, avahi" PACKAGECONFIG[gcr] = "--enable-gcr, --disable-gcr, gcr" -PACKAGECONFIG[gtk] = "--enable-gtk, --disable-gtk, gtk+3" PACKAGECONFIG[http] = "--enable-http, --disable-http, libsoup-2.4" PACKAGECONFIG[libmtp] = "--enable-libmtp, --disable-libmtp, libmtp" PACKAGECONFIG[libgphoto2] = "--enable-gphoto2, --disable-gphoto2, libgphoto2" diff --git a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/libgdata/libgdata_0.16.1.bb b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/libgdata/libgdata_0.16.1.bb index c2157df0c..80cbae39f 100644 --- a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/libgdata/libgdata_0.16.1.bb +++ b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/libgdata/libgdata_0.16.1.bb @@ -9,12 +9,18 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=fbc093901857fcd118f065f900982c24 \ DEPENDS = "gnome-common-native libxml2 glib-2.0 libsoup-2.4 intltool-native liboauth gcr json-glib" -inherit gnomebase pkgconfig autotools-brokensep gettext gtk-doc vala gobject-introspection +inherit distro_features_check gnomebase pkgconfig autotools-brokensep gettext gtk-doc vala gobject-introspection + +REQUIRED_DISTRO_FEATURES = "x11" do_configure_prepend_class-target () { # introspection.m4 pre-packaged with upstream tarballs does not yet # have our fixes rm -f ${S}/introspection.m4 + + # remove the pre-built gtk-doc files, as they're installed (or attempted to be installed) + # even if gtk-doc is explicitly disabled + rm -rf ${S}/docs/reference/html } do_compile_prepend() { diff --git a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/libgnome/libgnome/0001-libgnome-Makefile.am-allow-deprecated-symbols.patch b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/libgnome/libgnome/0001-libgnome-Makefile.am-allow-deprecated-symbols.patch deleted file mode 100644 index b6583034f..000000000 --- a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/libgnome/libgnome/0001-libgnome-Makefile.am-allow-deprecated-symbols.patch +++ /dev/null @@ -1,35 +0,0 @@ -From ce1cd20fceea7dbcc5b983d94de771461eccf7cf Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?Andreas=20M=C3=BCller?= <schnitzeltony@googlemail.com> -Date: Mon, 29 Apr 2013 14:17:13 +0200 -Subject: [PATCH] libgnome/Makefile.am: allow deprecated symbols -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit - -fixes: - -| gnome-program.c: In function 'gnome_program_init_common': -| gnome-program.c:2067:2: error: implicit declaration of function 'g_atexit' [-Werror=implicit-function-declaration] - -Upstream-Status: Inappropriate [configuration] - -Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> ---- - libgnome/Makefile.am | 1 - - 1 files changed, 0 insertions(+), 1 deletions(-) - -diff --git a/libgnome/Makefile.am b/libgnome/Makefile.am -index 9c8cd3e..aa01f6c 100644 ---- a/libgnome/Makefile.am -+++ b/libgnome/Makefile.am -@@ -17,7 +17,6 @@ INCLUDES = \ - -I$(srcdir)/.. \ - $(WARN_CFLAGS) \ - $(LIBGNOME_CFLAGS) \ -- -DG_DISABLE_DEPRECATED \ - -DLIBGNOME_PREFIX=\""$(prefix)"\" \ - -DLIBGNOME_LIBDIR=\""$(libdir)"\" \ - -DLIBGNOME_DATADIR=\""$(datadir)"\" \ --- -1.7.6.5 - diff --git a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/libgnome/libgnome_2.32.1.bb b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/libgnome/libgnome_2.32.1.bb deleted file mode 100644 index 0055ba4a3..000000000 --- a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/libgnome/libgnome_2.32.1.bb +++ /dev/null @@ -1,36 +0,0 @@ -SUMMARY = "Gnome application programming libraries" -LICENSE = "LGPLv2" -LIC_FILES_CHKSUM = "file://COPYING.LIB;md5=55ca817ccb7d5b5b66355690e9abc605" -SECTION = "x11/gnome/libs" - -inherit gnome lib_package - -PR = "r2" - -SRC_URI[archive.md5sum] = "a4345e6087ae6195d65a4674ffdca559" -SRC_URI[archive.sha256sum] = "b2c63916866485793b87398266dd7778548c1734923c272a94d84ee011b6f7a4" -SRC_URI += "file://0001-libgnome-Makefile.am-allow-deprecated-symbols.patch" -GNOME_COMPRESS_TYPE="bz2" - -DEPENDS += "libcanberra gconf-native gnome-vfs libbonobo esound intltool-native gnome-common-native" - -EXTRA_OECONF += "--disable-gtk-doc" - -do_configure_prepend() { - sed -i -e s:docs::g ${S}/Makefile.am - echo "EXTRA_DIST = version.xml" > gnome-doc-utils.make - echo "EXTRA_DIST = version.xml" > gtk-doc.make -} - -FILES_${PN} += "${libdir}/bonobo/servers ${libdir}/bonobo/monikers/*.so \ - ${datadir}/gnome-background-properties ${datadir}/pixmaps" -FILES_${PN}-dev += "${libdir}/bonobo/monikers/*.la" -FILES_${PN}-staticdev += "${libdir}/bonobo/monikers/*.a" - -PACKAGES =+ "gnome-common-schemas" - -FILES_gnome-common-schemas = "${datadir}/gnome-background-properties ${datadir}/pixmaps ${sysconfdir}" - -RDEPENDS_${PN} = "gnome-common-schemas" - -FILES_${PN}-dbg += "${libdir}/bonobo/monikers/.debug" diff --git a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/libgnome/libgnomecanvas_2.30.3.bb b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/libgnome/libgnomecanvas_2.30.3.bb deleted file mode 100644 index 41a89cede..000000000 --- a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/libgnome/libgnomecanvas_2.30.3.bb +++ /dev/null @@ -1,20 +0,0 @@ -SUMMARY = "A powerful object-oriented display" -LICENSE = "LGPLv2" -LIC_FILES_CHKSUM = "file://COPYING.LIB;md5=55ca817ccb7d5b5b66355690e9abc605" -SECTION = "x11/gnome/libs" - -inherit gnomebase gtk-doc - -# intltool to provide IT_PROG_INTLTOOL -# configure: line 12654: syntax error near unexpected token `0.35.0' -# configure: line 12654: `IT_PROG_INTLTOOL(0.35.0)' -DEPENDS = "gtk+ libglade libart-lgpl xineramaproto intltool-native gnome-common-native" - -SRC_URI[archive.md5sum] = "ffcbb719c671ff5cd86e59aeba8d0b92" -SRC_URI[archive.sha256sum] = "859b78e08489fce4d5c15c676fec1cd79782f115f516e8ad8bed6abcb8dedd40" -GNOME_COMPRESS_TYPE="bz2" - -FILES_${PN} += "${libdir}/libglade/*/libcanvas.so" -FILES_${PN}-dbg += "${libdir}/libglade/*/.debug/" -FILES_${PN}-dev += "${libdir}/libglade/*/libcanvas*.la" -FILES_${PN}-staticdev += "${libdir}/libglade/*/libcanvas*.a" diff --git a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/libgnome/libgnomekbd_3.22.0.bb b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/libgnome/libgnomekbd_3.22.0.bb index 12ed81d4f..40249fdfb 100644 --- a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/libgnome/libgnomekbd_3.22.0.bb +++ b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/libgnome/libgnomekbd_3.22.0.bb @@ -6,7 +6,9 @@ SECTION = "x11/gnome/libs" DEPENDS = "gconf glib-2.0 libxklavier gtk+3 intltool-native" -inherit gnome gobject-introspection gettext +inherit distro_features_check gnome gobject-introspection gettext + +REQUIRED_DISTRO_FEATURES = "x11" GNOME_COMPRESS_TYPE = "xz" diff --git a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/libgnome/libgnomeui/0001-suppress-string-format-literal-warning-to-fix-build-.patch b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/libgnome/libgnomeui/0001-suppress-string-format-literal-warning-to-fix-build-.patch deleted file mode 100644 index abc9bdfba..000000000 --- a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/libgnome/libgnomeui/0001-suppress-string-format-literal-warning-to-fix-build-.patch +++ /dev/null @@ -1,78 +0,0 @@ -From 6697fcf9d7f53126b442bf19890640b5f88c8aa4 Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?Andreas=20M=C3=BCller?= <schnitzeltony@googlemail.com> -Date: Fri, 29 Jul 2016 21:24:20 +0200 -Subject: [PATCH] suppress string format literal warning to fix build with gcc6 -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit - -works around: -| ../../libgnomeui-2.24.5/libgnomeui/gnome-dateedit.c: In function 'day_selected': -| ../../libgnomeui-2.24.5/libgnomeui/gnome-dateedit.c:156:9: error: format not a string literal, format string not checked [-Werror=format-nonliteral] -| strftime_date_format, &mtm) == 0) -| ^~~~~~~~~~~~~~~~~~~~ -| ../../libgnomeui-2.24.5/libgnomeui/gnome-dateedit.c: In function 'gnome_date_edit_set_time': -| ../../libgnomeui-2.24.5/libgnomeui/gnome-dateedit.c:704:2: error: format not a string literal, format string not checked [-Werror=format-nonliteral] -| if (strftime (buffer, sizeof (buffer), strftime_date_format, mytm) == 0) -| ^~ - -Upstream-Status: Pending - -Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> ---- - libgnomeui/gnome-dateedit.c | 6 ++++++ - libgnomeui/gnome-gconf-ui.c | 3 +++ - 2 files changed, 9 insertions(+) - -diff --git a/libgnomeui/gnome-dateedit.c b/libgnomeui/gnome-dateedit.c -index 69ab699..41541c3 100644 ---- a/libgnomeui/gnome-dateedit.c -+++ b/libgnomeui/gnome-dateedit.c -@@ -152,9 +152,12 @@ day_selected (GtkCalendar *calendar, GnomeDateEdit *gde) - else - mtm.tm_year = year; - -+#pragma GCC diagnostic push -+#pragma GCC diagnostic ignored "-Wformat-nonliteral" - if (strftime (buffer, sizeof (buffer), - strftime_date_format, &mtm) == 0) - strcpy (buffer, "???"); -+#pragma GCC diagnostic pop - buffer[sizeof(buffer)-1] = '\0'; - - /* FIXME: what about set time */ -@@ -701,8 +704,11 @@ gnome_date_edit_set_time (GnomeDateEdit *gde, time_t the_time) - mytm = localtime (&the_time); - - /* Set the date */ -+#pragma GCC diagnostic push -+#pragma GCC diagnostic ignored "-Wformat-nonliteral" - if (strftime (buffer, sizeof (buffer), strftime_date_format, mytm) == 0) - strcpy (buffer, "???"); -+#pragma GCC diagnostic pop - buffer[sizeof(buffer)-1] = '\0'; - - str_utf8 = g_locale_to_utf8 (buffer, -1, NULL, NULL, NULL); -diff --git a/libgnomeui/gnome-gconf-ui.c b/libgnomeui/gnome-gconf-ui.c -index 43c0f44..a84b2c0 100644 ---- a/libgnomeui/gnome-gconf-ui.c -+++ b/libgnomeui/gnome-gconf-ui.c -@@ -180,12 +180,15 @@ error_idle_func (gpointer data) - "configuration settings may not work properly."); - } - -+#pragma GCC diagnostic push -+#pragma GCC diagnostic ignored "-Wformat-nonliteral" - dialog = gtk_message_dialog_new (NULL /* parent */, - 0 /* flags */, - GTK_MESSAGE_ERROR, - GTK_BUTTONS_OK, - fmt, - gnome_program_get_human_readable_name(gnome_program_get())); -+#pragma GCC diagnostic pop - gtk_dialog_set_default_response (GTK_DIALOG (dialog), GTK_RESPONSE_OK); - g_signal_connect (dialog, "response", - G_CALLBACK (gtk_widget_destroy), --- -2.5.5 - diff --git a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/libgnome/libgnomeui/gnome-stock-pixbufs.h b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/libgnome/libgnomeui/gnome-stock-pixbufs.h deleted file mode 100644 index 953a8aeb0..000000000 --- a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/libgnome/libgnomeui/gnome-stock-pixbufs.h +++ /dev/null @@ -1,4030 +0,0 @@ -/* gnome stock icons in GdmPixbuf usable rgb data - * - * Copyright (C) 1997 the Free Software Foundation - * - * the pixmaps for button_cancel, save_as, trash, mail_receive, stop - * right_arrow, home, save, book_blue, trash_full, undo, search, mail_forward - * revert, mail_compose, mic, copy, jump_to, convert, button_apply, timer - * mail, book_red, book_yellow, help, redo, new, mail_send, button_yes, cut - * properties, print, mail_reply, refresh, search_replace, open, preferences - * left_arrow, undelete, close, volume, button_no, exit, book_green - * book_open, paste, line_in, spellcheck, timer_stopped - * are Copyright (C) 1998 Tuomas Kuosmanen - */ - -/* GdkPixbuf RGBA C-Source image dump */ - -#ifdef __SUNPRO_C -#pragma align 4 (stock_attach) -#endif -#ifdef __GNUC__ -static const guint8 stock_attach[] __attribute__ ((__aligned__ (4))) = -#else -static const guint8 stock_attach[] = -#endif -{ "" - /* Pixbuf magic (0x47646b50) */ - "GdkP" - /* length: header (24) + pixel_data (2304) */ - "\0\0\11\30" - /* pixdata_type (0x1010002) */ - "\1\1\0\2" - /* rowstride (96) */ - "\0\0\0`" - /* width (24) */ - "\0\0\0\30" - /* height (24) */ - "\0\0\0\30" - /* pixel_data: */ - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0c\0\0\0\377" - "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\21\0\0\0\2\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\0\0\0\26\0" - "\0\0\"\0\0\0$\0\0\0%\0\0\0%\0\0\0\377\0\0\0l\0\0\0\377\0\0\0\377\0\0" - "\0\10\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\0\0\0\"\0\0\0\20\0" - "\0\0$\0\0\0~\1\1\1\377QQQ\377\232\232\232\377\317\317\317\377ooo\377" - "\0\0\0\377\0\0\0\16\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\0\0\0x\0\0\0" - "\377FFF\377\245\245\245\377\342\342\342\377\377\377\377\377\377\377\377" - "\377\366\366\366\377\212\212\212\377999\377\0\0\0(\0\0\0\10\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\34\0\0\0" - "B\0\0\0\377\34\34\34\377\213\213\213\377\346\346\346\377\356\356\356" - "\377\341\341\341\377\377\377\377\377\370\370\370\377\367\367\367\377" - "\366\366\366\377\314\314\314\377VVV\377\0\0\0^\0\0\0\12\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\0\0\0\377>>>\377\201\201\201" - "\377\324\324\324\377\34\34\34\377\347\347\347\377\327\327\327\377\372" - "\372\372\377\371\371\371\377\370\370\370\377\302\302\302\377\313\313" - "\313\377\365\365\365\377\331\331\331\377\201\201\201\377\0\0\0\377\0" - "\0\0\25\0\0\0\3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0:\3\3\3\377TTT\377\346\346" - "\346\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\327" - "\327\327\377\336\336\336\377\263\263\263\377yyy\377\0\0\0\377\342\342" - "\342\377\366\366\366\377\365\365\365\377\364\364\364\377\235\235\235" - "\377(((\377\0\0\0)\0\0\0\10\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\366\366" - "\366\377\377\377\377\377\377\377\377\377\372\372\372\377\372\372\372" - "\377\373\373\373\377\0\0\0\377\246\246\246\377\305\305\305\377\360\360" - "\360\377\370\370\370\377\0\0\0\377\342\342\342\377\302\302\302\377\312" - "\312\312\377\364\364\364\377\307\307\307\377VVV\377\0\0\0^\0\0\0\12\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\362\362\362\377\370\370\370\377\371" - "\371\371\377\316\316\316\377\304\304\304\377\305\305\305\377\0\0\0\377" - "\325\325\325\377\371\371\371\377\370\370\370\377\370\370\370\377\0\0" - "\0\377\263\263\263\377\332\332\332\377\364\364\364\377\363\363\363\377" - "\363\363\363\377yyy\377\0\0\0\377\0\0\0\25\0\0\0\3\0\0\0\0\0\0\0\0\0" - "\0\0h\205\205\205\377\377\377\377\377\370\370\370\377\276\276\276\377" - "\371\371\371\377\371\371\371\377\0\0\0\377\323\323\323\377\334\334\334" - "\377\302\302\302\377\302\302\302\377\0\0\0\377\342\342\342\377\365\365" - "\365\377\364\364\364\377\363\363\363\377\362\362\362\377\234\234\234" - "\377(((\377\0\0\0)\0\0\0\10\0\0\0\0\0\0\0\0\0\0\0\40HHH\377\377\377\377" - "\377\367\367\367\377\367\367\367\377\370\370\370\377\370\370\370\377" - "\0\0\0\377\247\247\247\377\326\326\326\377\367\367\367\377\366\366\366" - "\377\0\0\0\377\342\342\342\377\364\364\364\377\304\304\304\377\310\310" - "\310\377\362\362\362\377\306\306\306\377LLL\377\0\0\0^\0\0\0\12\0\0\0" - "\0\0\0\0\0\0\0\0\1\0\0\0\377\352\352\352\377\377\377\377\377\366\366" - "\366\377\276\276\276\377\302\302\302\377\0\0\0\377\345\345\345\377\330" - "\330\330\377\366\366\366\377\365\365\365\377\0\0\0\377\255\255\255\377" - "\274\274\274\377\352\352\352\377\340\340\340\377\361\361\361\377\352" - "\352\352\377\220\220\220\377\0\0\0\377\0\0\0\25\0\0\0\3\0\0\0\0\0\0\0" - "\0\0\0\0ihhh\377\377\377\377\377\365\365\365\377\366\366\366\377\366" - "\366\366\377\242\242\242\377\0\0\0\377\300\300\300\377\301\301\301\377" - "\0\0\0\377xxx\377\326\326\326\377\363\363\363\377\362\362\362\377\361" - "\361\361\377\361\361\361\377\325\325\325\377\256\256\256\377\25\25\25" - "\377\0\0\0)\0\0\0\10\0\0\0\0\0\0\0\0\0\0\0\4""999\377\377\377\377\377" - "\364\364\364\377\365\365\365\377\365\365\365\377\332\332\332\377\232" - "\232\232\377\0\0\0\377\0\0\0\377yyy\377\326\326\326\377\362\362\362\377" - "\362\362\362\377\361\361\361\377\326\326\326\377\320\320\320\377\227" - "\227\227\377rrr\377JJJ\377\0\0\0.\0\0\0\11\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\377\354\354\354\377\377\377\377\377\364\364\364\377\254\254\254" - "\377\272\272\272\377\335\335\335\377\363\363\363\377\316\316\316\377" - "\333\333\333\377\354\354\354\377\327\327\327\377\326\326\326\377\261" - "\261\261\377\201\201\201\377VVV\377###\377\0\0\0\377\0\0\0q\0\0\0)\0" - "\0\0\10\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0hiii\377\377\377\377\377\363\363" - "\363\377\363\363\363\377\363\363\363\377\363\363\363\377\362\362\362" - "\377\362\362\362\377\327\327\327\377\267\267\267\377\202\202\202\377" - "@@@\377###\377\0\0\0\377\0\0\0\204\0\0\0""2\0\0\0.\0\0\0)\0\0\0\25\0" - "\0\0\3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\4(((\377\377\377\377\377\363\363" - "\363\377\362\362\362\377\362\362\362\377\327\327\327\377\276\276\276" - "\377\226\226\226\377222\377###\377\0\0\0\377\0\0\0u\0\0\0H\0\0\0/\0\0" - "\0*\0\0\0\31\0\0\0\13\0\0\0\10\0\0\0\3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\377\346\346\346\377\350\350\350\377\314\314\314\377" - "\232\232\232\377@@@\377###\377\0\0\0\377\0\0\0\221\0\0\0I\0\0\0/\0\0" - "\0*\0\0\0\30\0\0\0\16\0\0\0\11\0\0\0\4\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0;999\377\202\202\202\377999\377" - "\22\22\22\377\0\0\0\204\0\0\0I\0\0\0/\0\0\0*\0\0\0\33\0\0\0\16\0\0\0" - "\11\0\0\0\3\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\3\0\0\0\377\0\0\0\377\0\0\0u\0\0" - "\0""1\0\0\0*\0\0\0\31\0\0\0\16\0\0\0\11\0\0\0\4\0\0\0\1\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\11\0\0\0&\0\0\0)\0\0\0\27\0\0\0" - "\12\0\0\0\4\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\7\0\0\0\10\0\0\0\3\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0"}; - - -/* GdkPixbuf RGBA C-Source image dump */ - -#ifdef __SUNPRO_C -#pragma align 4 (stock_book_blue) -#endif -#ifdef __GNUC__ -static const guint8 stock_book_blue[] __attribute__ ((__aligned__ (4))) = -#else -static const guint8 stock_book_blue[] = -#endif -{ "" - /* Pixbuf magic (0x47646b50) */ - "GdkP" - /* length: header (24) + pixel_data (2304) */ - "\0\0\11\30" - /* pixdata_type (0x1010002) */ - "\1\1\0\2" - /* rowstride (96) */ - "\0\0\0`" - /* width (24) */ - "\0\0\0\30" - /* height (24) */ - "\0\0\0\30" - /* pixel_data: */ - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\3\0\0\0""9\0\0\0\302\0\0\0\377\0\0" - "\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0" - "\0\0\377\0\0\0\357\0\0\0\356\0\0\0\346\0\0\0\342\0\0\0w\0\0\0\13\0\0" - "\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\32\21\26\35\377\227" - "\250\276\377}\223\254\377s\212\243\377l\204\234\377d|\226\377^v\217\377" - "Wo\210\377Pi\202\377Pi\202\377Pi\202\377Pi\202\377Pi\202\377Vn\206\377" - "IXi\377\21\30\"\376\0\0\0.\0\0\0\10\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\273v\213\242\377\216\242\270\377v\215\247\377Vr\220\377" - "Nj\210\377Fb\200\377=Zx\3775Rp\3771Nk\3771Nk\3776Ro\3776Ro\377<Ws\377" - "6Ro\3773@O\377\25\34%\372\0\0\0N\0\0\0\20\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\22\12\15\21\377\231\254\300\377\200\226\256\377[v\224\377" - "So\215\377Jg\205\377B_}\377:Wu\3772Om\3771Nk\3771Nk\3771Nk\3771Nk\377" - ";Wr\377-D\\\377#/6\377\0\0\0^\0\0\0D\0\0\0\16\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\255[iy\377\231\254\300\377u\215\246\377Ws\221\377Ok\210" - "\377Gc\201\377\77[y\3776Sq\3771Nk\3771Nk\3771Nk\3771Nk\3774Pm\377;Wr" - "\377)\77V\3775<A\375\0\0\0\377\0\0\0%\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\21\0\0\0\377\231\254\300\377\200\227\260\377\\x\226\377Tp\216" - "\377Kh\206\377C`~\377;Xv\3773Pn\3771Nk\3771Nk\3773Pk\3771Nk\3779Uq\377" - "-D\\\377\27\",\377~\202\205\377578\377\0\0\0F\0\0\0\15\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\232[iy\377\217\243\271\377u\215\246\377Xt\222\377Pl" - "\212\377Hd\202\377@\\z\3778Tr\3771Nk\3771Nk\3771Nk\3771Nk\3772Ol\377" - "=Yt\377)\77V\377!'.\376JLM\377\216\220\222\377\0\0\0Q\0\0\0\20\0\0\0" - "\0\0\0\0\0\0\0\0\20\0\0\0\377\230\253\277\375\177\226\257\377]y\227\377" - "Uq\217\377Mi\207\377Da\177\377<Yw\3774Qo\3771Nk\3771Nk\3771Nk\3771Nk" - "\3778Tp\377/F]\377\30$-\377TWY\366eij\377334\377\0\0\0Q\0\0\0\20\0\0" - "\0\0\0\0\0\0\0\0\0\335eu\203\377\215\242\271\377v\215\247\377Zu\223\377" - "Qm\213\377Ie\203\377A]{\3779Us\3771Nk\3771Nk\3771Nk\3771Nk\3771Nk\377" - "<Ws\377*BZ\377#+2\377FHJ\377\220\222\225\377\0\0\0\377\0\0\0c\0\0\0\21" - "\0\0\0\0\0\0\0!\0\0\0\377\233\254\273\377\207\234\264\377c~\233\377V" - "r\220\377Nj\210\377Fb\200\377=Zx\3775Rp\3771Nk\3771Nk\3771Nk\3771Nk\377" - "5Rn\3774Kb\377\31$-\377dhk\377mop\3770G]\377\0\0\0\373\0\0\0R\0\0\0\25" - "\0\0\0\0\0\0\0\245ep}\377\221\245\274\377q\213\246\377\\x\226\377Tp\216" - "\377Kh\206\377C`~\377;Xv\3773Pn\3771Nk\3771Nk\3771Nk\3771Nk\377=Yt\377" - ")\77V\377&.3\377WXY\377\213\217\225\377\11\15\21\372\0\0\0\234\0\0\0" - "I\0\0\0\17\0\0\0\13\0\0\0\377~\216\237\337\212\237\266\377l\205\241\377" - "Xt\222\377Pl\212\377Hd\202\377@\\z\3778Tr\3771Nk\3771Nk\3771Nk\3771N" - "k\3771Nk\3775Lc\377\32%0\377HLN\377suv\377C[s\370\0\0\0\364\0\0\0U\0" - "\0\0+\0\0\0\7\0\0\0\206uww\377\275\306\323\375\256\276\314\377\247\266" - "\306\377\243\262\302\377\236\255\275\377\232\252\271\377\220\240\260" - "\377{\217\241\377y\214\237\377y\214\237\377y\214\237\377y\214\237\377" - "p\204\231\377Ufy\37725;\377[^a\377\216\223\230\377\12\16\21\372\0\0\0" - "\233\0\0\0G\0\0\0\21\0\0\0\1\2\7\11\331\260\272\304\377,>Q\377$6J\377" - "$6J\377$6J\377$6J\377$6J\377$6J\377$6J\377$6J\377$6J\377$6J\377$6J\377" - "$6J\377+5\77\377^bh\377wxz\377F`z\377\0\0\0\365\0\0\0U\0\0\0*\0\0\0\6" - "\0\0\0\0\15\17\21\377\207\223\235\377@AE\377_``\373ttt\377\226\226\226" - "\377\261\261\261\377\257\257\260\377\305\305\306\377\316\316\317\377" - "\264\273\301\377\274\302\311\377\275\304\312\377\304\313\322\377\313" - "\322\331\377\326\332\336\377\220\226\233\377\205\212\217\377\24\33!\371" - "\0\0\0\234\0\0\0H\0\0\0\22\0\0\0\1\0\0\0\0\14\16\17\377k{\213\377WWW" - "\377}~\200\377\342\344\346\377\342\344\346\377\341\341\341\377\337\337" - "\340\377\337\337\340\377\362\362\362\377\375\375\376\377\361\363\365" - "\377\361\363\365\377\361\363\365\377\247\250\252\377\262\265\271\377" - "imq\377F`z\377\0\1\2\370\0\0\0U\0\0\0*\0\0\0\6\0\0\0\0\0\0\0\0$%'\377" - "cr\201\377i|\216\377Tk\203\377E]x\377\326\334\341\377\347\352\355\377" - "\355\357\361\377\355\357\362\377\345\346\347\377\336\336\337\377\341" - "\341\342\377\341\341\342\377\337\337\340\377\341\342\343\377rz\203\377" - "\213\217\224\377\25\33!\367\0\0\0\234\0\0\0I\0\0\0\22\0\0\0\1\0\0\0\0" - "\0\0\0\0\0\0\0""9\0\0\0\377\4\6\12\3548J]\363Mbx\351Th\177\357Sj\202" - "\377Wo\206\377\207\227\247\377\327\335\341\377\342\346\351\377\351\354" - "\356\377\370\371\372\377\370\371\372\377\201\205\212\377\245\247\250" - "\377\234\242\250\377\1\2\3\370\0\0\0U\0\0\0*\0\0\0\7\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0&\0\0\0e\0\0\0\276\0\0\0\346\0\0\0\360\0\0\0\363" - ";K^\371DVi\371Tg}\367Uk\200\366Vl\203\377\254\270\303\377\334\341\345" - "\377\350\353\355\377\237\243\246\377\25\35$\373\0\0\0\234\0\0\0H\0\0" - "\0\22\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\6\0\0\0\17\0\0\0" - "\34\0\0\0""4\0\0\0C\0\0\0g\0\0\0\251\0\0\0\344\0\0\0\361\0\0\0\3560>" - "M\365=N`\371O_s\372Se{\367Lc|\357\1\3\5\367\0\0\0U\0\0\0+\0\0\0\7\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\3\0\0\0\12" - "\0\0\0\15\0\0\0\20\0\0\0\33\0\0\0""0\0\0\0C\0\0\0_\0\0\0\235\0\0\0\327" - "\0\0\0\356\0\0\0\354\0\0\0\347\0\0\0{\0\0\0F\0\0\0\21\0\0\0\1\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\3\0\0\0\10\0\0\0\15\0\0\0\20\0\0\0\30\0\0\0,\0\0\0" - "\77\0\0\0H\0\0\0H\0\0\0@\0\0\0\37\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0\7\0\0\0\13\0\0\0\16\0" - "\0\0\16\0\0\0\14\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0"}; - - -/* GdkPixbuf RGBA C-Source image dump */ - -#ifdef __SUNPRO_C -#pragma align 4 (stock_book_green) -#endif -#ifdef __GNUC__ -static const guint8 stock_book_green[] __attribute__ ((__aligned__ (4))) = -#else -static const guint8 stock_book_green[] = -#endif -{ "" - /* Pixbuf magic (0x47646b50) */ - "GdkP" - /* length: header (24) + pixel_data (2304) */ - "\0\0\11\30" - /* pixdata_type (0x1010002) */ - "\1\1\0\2" - /* rowstride (96) */ - "\0\0\0`" - /* width (24) */ - "\0\0\0\30" - /* height (24) */ - "\0\0\0\30" - /* pixel_data: */ - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\3\0\0\0""9\0\0\0\302\0\0\0\377\0\0" - "\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0" - "\0\0\377\0\0\0\357\0\0\0\356\0\0\0\346\0\0\0\342\0\0\0w\0\0\0\13\0\0" - "\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\32\21\34\21\377\225" - "\276\225\377y\255y\377n\246n\377e\241e\377^\233^\377Y\222Y\377S\212S" - "\377O\202O\377O\202O\377O\202O\377O\202O\377O\202O\377R\210R\377CnC\377" - "\22\36\22\376\0\0\0.\0\0\0\10\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\273o\247o\377\214\271\214\377r\251r\377V\216V\377P\204P\377Jz" - "J\377CoC\377=e=\377:`:\377:`:\377=e=\377=e=\377AkA\377=e=\3770P0\377" - "\26#\26\372\0\0\0N\0\0\0\20\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\22" - "\11\17\11\377\227\277\227\377}\260}\377Y\223Y\377T\213T\377M\177M\377" - "GuG\377AkA\377;a;\377:`:\377:`:\377:`:\377:`:\377@j@\3773T3\377!6!\377" - "\0\0\0^\0\0\0D\0\0\0\16\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\255O\203" - "O\377\227\277\227\377q\250q\377W\217W\377P\204P\377K|K\377ErE\377>f>" - "\377:`:\377:`:\377:`:\377:`:\377<c<\377@j@\377/N/\377,I,\375\0\0\0\377" - "\0\0\0%\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\21\0\0\0\377\227\277\227" - "\377~\260~\377[\226[\377U\214U\377N\201N\377HwH\377BmB\377<c<\377:`:" - "\377:`:\377;a;\377:`:\377@i@\3773T3\377\30(\30\377\201\201\201\377(B" - "(\377\0\0\0F\0\0\0\15\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\232O\203O\377\215" - "\271\215\377q\250q\377X\221X\377R\207R\377L}L\377FsF\377@i@\377:`:\377" - ":`:\377:`:\377:`:\377;a;\377BmB\377/N/\377\35""0\35\376KKK\377\220\220" - "\220\377\0\0\0Q\0\0\0\20\0\0\0\0\0\0\0\0\0\0\0\20\0\0\0\377\226\277\226" - "\375}\260}\377\\\227\\\377V\215V\377O\203O\377IxI\377CnC\377=d=\377:" - "`:\377:`:\377:`:\377:`:\377\77h\77\3774V4\377\31*\31\377VVV\366ggg\377" - "333\377\0\0\0Q\0\0\0\20\0\0\0\0\0\0\0\0\0\0\0\335W\217W\377\214\271\214" - "\377r\251r\377Y\222Y\377R\210R\377L~L\377FtF\377@j@\377:`:\377:`:\377" - ":`:\377:`:\377:`:\377AkA\3771Q1\377\37""3\37\377HHH\377w\254w\377\0\0" - "\0\377\0\0\0c\0\0\0\21\0\0\0\0\0\0\0!\0\0\0\377\226\277\226\377\204\264" - "\204\377_\235_\377V\216V\377P\204P\377JzJ\377CoC\377=e=\377:`:\377:`" - ":\377:`:\377:`:\377=d=\3778]8\377\32+\32\377ggg\377nnn\3774V4\377\0\0" - "\0\373\0\0\0R\0\0\0\25\0\0\0\0\0\0\0\245U\214U\377\220\273\220\377n\246" - "n\377[\226[\377U\214U\377N\201N\377HwH\377BmB\377<c<\377:`:\377:`:\377" - ":`:\377:`:\377BmB\377/N/\377!6!\377XXX\377t\253t\377\11\17\11\372\0\0" - "\0\234\0\0\0I\0\0\0\17\0\0\0\13\0\0\0\377t\247t\337\210\266\210\377h" - "\243h\377X\221X\377R\207R\377L}L\377FsF\377@i@\377:`:\377:`:\377:`:\377" - ":`:\377:`:\3779^9\377\33.\33\377KKK\377ttt\377EpE\370\0\0\0\364\0\0\0" - "U\0\0\0+\0\0\0\7\0\0\0\206Y\222Y\377\272\325\272\375\254\314\254\377" - "\243\307\243\377\237\304\237\377\230\300\230\377\223\275\223\377\210" - "\266\210\377r\251r\377o\247o\377o\247o\377o\247o\377o\247o\377e\241e" - "\377M\177M\377(B(\377^^^\377x\255x\377\11\17\11\372\0\0\0\233\0\0\0G" - "\0\0\0\21\0\0\0\1\3\5\3\331\250\312\250\377.L.\377)D)\377)D)\377)D)\377" - ")D)\377)D)\377)D)\377)D)\377)D)\377)D)\377)D)\377)D)\377)D)\377'A'\377" - "ccc\377xxx\377HwH\377\0\0\0\365\0\0\0U\0\0\0*\0\0\0\6\0\0\0\0\13\22\13" - "\377w\254w\3771Q1\377___\373ttt\377\226\226\226\377\261\261\261\377\257" - "\257\257\377\305\305\305\377\316\316\316\377\272\272\272\377\302\302" - "\302\377\303\303\303\377\313\313\313\377\322\322\322\377\332\332\332" - "\377\225\225\225\377m\246m\377\23\37\23\371\0\0\0\234\0\0\0H\0\0\0\22" - "\0\0\0\1\0\0\0\0\11\17\11\377\\\230\\\377AkA\377~~~\377\344\344\344\377" - "\344\344\344\377\341\341\341\377\337\337\337\377\337\337\337\377\362" - "\362\362\377\375\375\375\377\363\363\363\377\363\363\363\377\363\363" - "\363\377\250\250\250\377\265\265\265\377mmm\377HwH\377\0\1\0\370\0\0" - "\0U\0\0\0*\0\0\0\6\0\0\0\0\0\0\0\0\33.\33\377V\215V\377\\\230\\\377P" - "\204P\377FtF\377\333\333\333\377\352\352\352\377\357\357\357\377\357" - "\357\357\377\346\346\346\377\336\336\336\377\341\341\341\377\341\341" - "\341\377\337\337\337\377\342\342\342\377zzz\377s\252s\377\24\40\24\367" - "\0\0\0\234\0\0\0I\0\0\0\22\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0""9\0\0\0\377" - "\5\10\5\3548[8\363MxM\351Q\200Q\357O\203O\377R\210R\377\227\227\227\377" - "\334\334\334\377\345\345\345\377\353\353\353\377\371\371\371\377\371" - "\371\371\377\205\205\205\377\246\246\246\377\213\270\213\377\1\2\1\370" - "\0\0\0U\0\0\0*\0\0\0\7\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0&\0\0\0e" - "\0\0\0\276\0\0\0\346\0\0\0\360\0\0\0\3639]9\371AjA\371O\200O\367Q\203" - "Q\366Q\206Q\377\245\310\245\377\340\340\340\377\352\352\352\377\213\270" - "\213\377\25\"\25\373\0\0\0\234\0\0\0H\0\0\0\22\0\0\0\1\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\6\0\0\0\17\0\0\0\34\0\0\0""4\0\0\0C\0\0\0g\0" - "\0\0\251\0\0\0\344\0\0\0\361\0\0\0\356/L/\365;a;\371HvH\372M}M\367Lz" - "L\357\2\3\2\367\0\0\0U\0\0\0+\0\0\0\7\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\3\0\0\0\12\0\0\0\15\0\0\0\20\0\0\0\33" - "\0\0\0""0\0\0\0C\0\0\0_\0\0\0\235\0\0\0\327\0\0\0\356\0\0\0\354\0\0\0" - "\347\0\0\0{\0\0\0F\0\0\0\21\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\3\0\0\0" - "\10\0\0\0\15\0\0\0\20\0\0\0\30\0\0\0,\0\0\0\77\0\0\0H\0\0\0H\0\0\0@\0" - "\0\0\37\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\2\0\0\0\7\0\0\0\13\0\0\0\16\0\0\0\16\0\0\0\14\0\0\0\5\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"}; - - -/* GdkPixbuf RGBA C-Source image dump */ - -#ifdef __SUNPRO_C -#pragma align 4 (stock_book_open) -#endif -#ifdef __GNUC__ -static const guint8 stock_book_open[] __attribute__ ((__aligned__ (4))) = -#else -static const guint8 stock_book_open[] = -#endif -{ "" - /* Pixbuf magic (0x47646b50) */ - "GdkP" - /* length: header (24) + pixel_data (2304) */ - "\0\0\11\30" - /* pixdata_type (0x1010002) */ - "\1\1\0\2" - /* rowstride (96) */ - "\0\0\0`" - /* width (24) */ - "\0\0\0\30" - /* height (24) */ - "\0\0\0\30" - /* pixel_data: */ - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\3OOOD\0\0\0\377\4\5\6" - "\377\0\0\0;\0\0\0\20\0\0\0\6\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\3NNNE\13\17\22\377\225\237\252\377\303\306" - "\312\356\0\0\0\377\0\0\0&\0\0\0\22\0\0\0\5\0\0\0\1\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0.\13\17\22\377\202\220\236\377\361\361" - "\361\377\325\327\330\377\12\15\20\377\0\0\0_\0\0\0\40\0\0\0\13\0\0\0" - "\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0.\21\27\34\377\206\223\240" - "\377\357\360\360\377\336\336\336\377\325\325\325\377\233\237\244\324" - "\0\0\0\377\0\0\0/\0\0\0\24\0\0\0\5\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0" - ".\16\23\27\377\205\222\237\377\357\360\360\377\333\333\333\377\312\312" - "\312\377\310\310\310\377\310\311\312\377\14\17\23\377\0\0\0[\0\0\0\40" - "\0\0\0\13\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0.\24\32\40\377y\210\225\370\361\361" - "\361\377\325\325\325\377\312\312\312\377\322\322\322\377\303\303\303" - "\377\315\315\315\377ty~\275\0\0\0\377\0\0\0-\0\0\0\24\0\0\0\6\0\0\0\2" - "\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0-\27\37&\377\177\215\232\361\357\360\360\377\332\332\332\377\323\323" - "\323\377\304\304\304\377\316\316\316\377\300\300\300\377\312\312\312" - "\377\261\261\261\336\15\21\25\377\0\0\0Y\0\0\0#\0\0\0\22\0\0\0\14\0\0" - "\0\12\0\0\0\12\0\0\0\12\0\0\0\11\0\0\0\7\0\0\0\4\0\0\0\1\0\0\0\0\0\0" - "\0\377v\205\222\350\356\357\357\377\331\331\331\377\323\323\323\377\320" - "\320\320\377\302\302\302\377\313\313\313\377\311\311\311\377\274\274" - "\274\377\244\247\251\344hkl\351333\377\0\0\0\377\0\0\0\377\0\0\0\377" - "\0\0\0\377\0\0\0\377\0\0\0\352\0\0\0\177\0\0\0=\0\0\0\20\0\0\0\6\0\0" - "\0\1AO]\377\255\265\274\363\352\352\352\377\322\322\322\377\277\277\277" - "\377\315\315\315\377\313\313\313\377\275\275\275\377\306\306\306\377" - "\265\266\267\365\211\220\226\370\270\270\270\377\377\377\377\377\377" - "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" - "\377\377\377\377\377\377@AB\342\0\0\0\177\0\0\0%\0\0\0\20\0\0\0\4\0\0" - "\0\377M`t\340\353\353\353\377\321\321\321\377\303\303\303\377\301\301" - "\301\377\310\310\310\377\267\267\267\377\303\303\303\377\227\237\247" - "\347\241\243\244\376\374\375\375\377\363\364\364\377\353\354\355\377" - "\352\353\354\377\351\352\353\377\356\357\361\377\366\367\370\377\344" - "\345\346\376\222\223\225\375\0\0\0\377\0\0\0""9\0\0\0\33\0\0\0\7\0\0" - "\0=2AO\377\214\230\242\362\347\347\347\377\311\311\311\377\273\273\273" - "\377\304\304\304\377\302\302\302\377\244\247\253\346\223\226\231\375" - "\327\330\330\377\374\375\375\377\372\374\374\377\371\372\373\377\370" - "\371\372\377\367\370\371\377\365\366\370\377\367\367\371\377\306\307" - "\307\377O^j\375\0\0\0\360\0\0\0B\0\0\0\37\0\0\0\11\0\0\0\23\0\0\0\377" - "L_r\340\350\350\350\377\306\306\306\377\276\276\276\377\270\270\270\377" - "\265\265\266\361\227\236\244\356\250\250\250\377\375\376\376\377\365" - "\366\366\377\347\351\351\377\353\354\355\377\352\353\354\377\360\361" - "\362\377\370\371\372\377\340\342\343\377\217\226\235\376\25\34\"\377" - "\0\0\0\201\0\0\0>\0\0\0\34\0\0\0\10\0\0\0\13\0\0\0A5DS\377\215\231\242" - "\363\343\343\343\377\301\301\301\377\276\276\276\377\216\224\232\316" - "\235\237\237\376\377\377\377\377\375\376\376\377\374\375\375\377\372" - "\374\374\377\362\363\364\377\361\362\363\377\367\370\371\377\366\366" - "\367\377\246\250\253\377s\177\212\376\4\5\6\377\0\0\0P\0\0\0""1\0\0\0" - "\24\0\0\0\5\0\0\0\5\0\0\0\24\0\0\0\377K_q\340\345\345\345\377\301\301" - "\301\377\236\237\240\326\227\231\233\375\331\331\331\377\377\377\377" - "\377\347\350\350\377\356\357\357\377\364\365\365\377\371\372\373\377" - "\370\371\372\377\373\373\373\377\330\330\332\377\223\233\243\377\17\24" - "\30\377\0\0\0t\0\0\0B\0\0\0\"\0\0\0\14\0\0\0\3\0\0\0\2\0\0\0\13\0\0\0" - "A9IW\377\202\217\227\360\333\333\333\370\212\216\222\347\264\264\264" - "\377\377\377\377\377\377\377\377\377\375\376\376\377\365\366\366\377" - "\354\356\356\377\346\347\350\377\372\372\373\377\365\365\367\377\256" - "\262\266\377\\l|\377\0\0\0\377\0\0\0P\0\0\0""1\0\0\0\25\0\0\0\6\0\0\0" - "\1\0\0\0\0\0\0\0\5\0\0\0\24\0\0\0\377J]p\336\273\273\273\321\253\253" - "\253\377\377\377\377\377\370\370\370\377\361\361\361\377\357\360\360" - "\377\374\375\375\377\372\373\373\377\371\372\373\377\373\374\374\377" - "\336\341\343\377\235\246\256\377\12\15\20\377\0\0\0t\0\0\0A\0\0\0\"\0" - "\0\0\13\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0\13\0\0\0A$/:\377imq\346" - "wxy\377\362\363\363\377\377\377\377\377\377\377\377\377\377\377\377\377" - "\360\360\360\377\363\363\363\377\373\374\374\377\371\371\372\377\273" - "\277\304\377Vgy\377\0\0\0\377\0\0\0P\0\0\0""1\0\0\0\25\0\0\0\6\0\0\0" - "\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\5\0\0\0\24\0\0\0\377J_t\3701>K\376\263" - "\275\306\375\321\327\335\377\331\336\343\377\366\367\367\377\365\365" - "\365\377\377\377\377\377\377\377\377\377\321\322\324\377\232\243\254" - "\377\4\5\6\377\0\0\0t\0\0\0A\0\0\0!\0\0\0\13\0\0\0\2\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0\13\0\0\0""7\0\0\0\256+4<\366)2;\377O_" - "p\377^q\204\376\221\236\253\375\237\253\266\375\277\307\320\377\350\354" - "\356\377\262\270\276\377q}\210\376\0\0\0\377\0\0\0P\0\0\0""1\0\0\0\25" - "\0\0\0\6\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\5\0\0" - "\0\22\0\0\0&\0\0\0:\0\0\0Y\0\0\0\200\0\0\0\301%-5\377Qar\377Vgy\375z" - "\206\225\375v\205\224\374\0\0\0\377\0\0\0r\0\0\0\77\0\0\0!\0\0\0\13\0" - "\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0" - "\6\0\0\0\20\0\0\0\34\0\0\0%\0\0\0-\0\0\0""8\0\0\0X\0\0\0\200\0\0\0\275" - ",4=\377!'.\377\0\0\0p\0\0\0D\0\0\0*\0\0\0\23\0\0\0\5\0\0\0\1\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\4\0\0" - "\0\10\0\0\0\14\0\0\0\21\0\0\0\31\0\0\0\"\0\0\0,\0\0\0""7\0\0\0A\0\0\0" - "C\0\0\0;\0\0\0)\0\0\0\26\0\0\0\10\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\2" - "\0\0\0\4\0\0\0\6\0\0\0\13\0\0\0\20\0\0\0\30\0\0\0\37\0\0\0\40\0\0\0\33" - "\0\0\0\21\0\0\0\10\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\1\0\0\0\2\0\0\0\4\0\0\0\6\0\0\0\10\0\0\0\11\0\0\0\7\0\0\0\4" - "\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"}; - - -/* GdkPixbuf RGBA C-Source image dump */ - -#ifdef __SUNPRO_C -#pragma align 4 (stock_book_red) -#endif -#ifdef __GNUC__ -static const guint8 stock_book_red[] __attribute__ ((__aligned__ (4))) = -#else -static const guint8 stock_book_red[] = -#endif -{ "" - /* Pixbuf magic (0x47646b50) */ - "GdkP" - /* length: header (24) + pixel_data (2304) */ - "\0\0\11\30" - /* pixdata_type (0x1010002) */ - "\1\1\0\2" - /* rowstride (96) */ - "\0\0\0`" - /* width (24) */ - "\0\0\0\30" - /* height (24) */ - "\0\0\0\30" - /* pixel_data: */ - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\3\0\0\0""9\0\0\0\302\0\0\0\377\0\0" - "\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0" - "\0\0\377\0\0\0\357\0\0\0\356\0\0\0\346\0\0\0\342\0\0\0w\0\0\0\13\0\0" - "\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\32\37\21\16\377\310" - "\225\213\377\272ym\377\264n`\377\260fW\377\252^O\377\240YK\377\226SF" - "\377\216OC\377\216OC\377\216OC\377\216OC\377\216OC\377\225RF\377xC8\377" - "!\22\17\376\0\0\0.\0\0\0\10\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\273\265pb\377\303\214\201\377\266re\377\234WI\377\221PD\377\206" - "J>\377zD9\377o>4\377i;1\377i;1\377o>4\377o>4\377vA7\377o>4\377X0)\377" - "'\26\22\372\0\0\0N\0\0\0\20\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\22" - "\21\11\10\377\311\227\215\377\274}q\377\241ZK\377\230TG\377\214MA\377" - "\201G<\377vA7\377k;2\377i;1\377i;1\377i;1\377i;1\377tA6\377\\3+\377;" - "!\33\377\0\0\0^\0\0\0D\0\0\0\16\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\255\217OC\377\311\227\215\377\265qc\377\235WI\377\221PD\377\210K\77" - "\377|E:\377p>4\377i;1\377i;1\377i;1\377i;1\377l<3\377tA6\377U/(\377O" - ",%\375\0\0\0\377\0\0\0%\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\21\0\0" - "\0\377\311\227\215\377\275~r\377\244[L\377\231UH\377\215NB\377\202H<" - "\377wB8\377l<3\377i;1\377i;1\377k;2\377i;1\377s@6\377\\3+\377,\30\24" - "\377\201\201\201\377I(\"\377\0\0\0F\0\0\0\15\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\232\217OC\377\304\215\202\377\265qc\377\237XJ\377\223RE\377\211" - "L@\377~F;\377s@6\377i;1\377i;1\377i;1\377i;1\377k;2\377wB8\377U/(\377" - "4\35\30\376KKK\377\220\220\220\377\0\0\0Q\0\0\0\20\0\0\0\0\0\0\0\0\0" - "\0\0\20\0\0\0\377\310\226\214\375\274}q\377\245\\M\377\232VH\377\217" - "OC\377\203I=\377xC8\377m=3\377i;1\377i;1\377i;1\377i;1\377q\77""5\377" - "_4,\377-\31\25\377VVV\366ggg\377333\377\0\0\0Q\0\0\0\20\0\0\0\0\0\0\0" - "\0\0\0\0\335\235WI\377\303\214\201\377\266re\377\240YK\377\225RF\377" - "\212L@\377\177G;\377tA6\377i;1\377i;1\377i;1\377i;1\377i;1\377vA7\377" - "Y1)\3778\37\32\377HHH\377\270wj\377\0\0\0\377\0\0\0c\0\0\0\21\0\0\0\0" - "\0\0\0!\0\0\0\377\310\226\214\377\300\205y\377\254`P\377\234WI\377\221" - "PD\377\206J>\377zD9\377o>4\377i;1\377i;1\377i;1\377i;1\377m=3\377f8/" - "\377/\32\26\377ggg\377nnn\377_4,\377\0\0\0\373\0\0\0R\0\0\0\25\0\0\0" - "\0\0\0\0\245\231UH\377\305\220\205\377\264n`\377\244[L\377\231UH\377" - "\215NB\377\202H<\377wB8\377l<3\377i;1\377i;1\377i;1\377i;1\377wB8\377" - "U/(\377;!\33\377XXX\377\267tg\377\21\11\10\372\0\0\0\234\0\0\0I\0\0\0" - "\17\0\0\0\13\0\0\0\377\262th\337\302\210}\377\261hY\377\237XJ\377\223" - "RE\377\211L@\377~F;\377s@6\377i;1\377i;1\377i;1\377i;1\377i;1\377g90" - "\3772\33\27\377KKK\377ttt\377zE:\370\0\0\0\364\0\0\0U\0\0\0+\0\0\0\7" - "\0\0\0\206\240YK\377\333\272\264\375\324\254\244\377\320\243\233\377" - "\315\237\226\377\312\231\217\377\307\224\211\377\302\210}\377\266re\377" - "\265pb\377\265pb\377\265pb\377\265pb\377\260fW\377\214MA\377I(\"\377" - "^^^\377\271xk\377\21\11\10\372\0\0\0\233\0\0\0G\0\0\0\21\0\0\0\1\6\3" - "\3\331\322\250\240\377T.'\377J)#\377J)#\377J)#\377J)#\377J)#\377J)#\377" - "J)#\377J)#\377J)#\377J)#\377J)#\377J)#\377G'!\377ccc\377xxx\377\202H" - "<\377\0\0\0\365\0\0\0U\0\0\0*\0\0\0\6\0\0\0\0\24\13\11\377\270wj\377" - "Y1)\377___\373ttt\377\226\226\226\377\261\261\261\377\257\257\257\377" - "\305\305\305\377\316\316\316\377\272\272\272\377\302\302\302\377\303" - "\303\303\377\313\313\313\377\322\322\322\377\332\332\332\377\225\225" - "\225\377\264m_\377\"\23\20\371\0\0\0\234\0\0\0H\0\0\0\22\0\0\0\1\0\0" - "\0\0\21\11\10\377\247]N\377vA7\377~~~\377\344\344\344\377\344\344\344" - "\377\341\341\341\377\337\337\337\377\337\337\337\377\362\362\362\377" - "\375\375\375\377\363\363\363\377\363\363\363\377\363\363\363\377\250" - "\250\250\377\265\265\265\377mmm\377\202H<\377\1\0\0\370\0\0\0U\0\0\0" - "*\0\0\0\6\0\0\0\0\0\0\0\0""2\33\27\377\232VH\377\247]N\377\221PD\377" - "\177G;\377\333\333\333\377\352\352\352\377\357\357\357\377\357\357\357" - "\377\346\346\346\377\336\336\336\377\341\341\341\377\341\341\341\377" - "\337\337\337\377\342\342\342\377zzz\377\267sf\377$\24\21\367\0\0\0\234" - "\0\0\0I\0\0\0\22\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0""9\0\0\0\377\11\5\4\354" - "c80\363\203MB\351\214QE\357\217OC\377\225RF\377\227\227\227\377\334\334" - "\334\377\345\345\345\377\353\353\353\377\371\371\371\377\371\371\371" - "\377\205\205\205\377\246\246\246\377\303\213\200\377\2\1\1\370\0\0\0" - "U\0\0\0*\0\0\0\7\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0&\0\0\0e\0\0\0" - "\276\0\0\0\346\0\0\0\360\0\0\0\363f:1\371sA7\371\214OC\367\217QE\366" - "\222QD\377\320\245\234\377\340\340\340\377\352\352\352\377\303\213\200" - "\377%\25\21\373\0\0\0\234\0\0\0H\0\0\0\22\0\0\0\1\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\6\0\0\0\17\0\0\0\34\0\0\0""4\0\0\0C\0\0\0g\0\0\0\251" - "\0\0\0\344\0\0\0\361\0\0\0\356S/(\365j;2\371\201I=\372\211MB\367\205" - "LA\357\3\2\1\367\0\0\0U\0\0\0+\0\0\0\7\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\3\0\0\0\12\0\0\0\15\0\0\0\20\0\0\0\33" - "\0\0\0""0\0\0\0C\0\0\0_\0\0\0\235\0\0\0\327\0\0\0\356\0\0\0\354\0\0\0" - "\347\0\0\0{\0\0\0F\0\0\0\21\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\3\0\0\0" - "\10\0\0\0\15\0\0\0\20\0\0\0\30\0\0\0,\0\0\0\77\0\0\0H\0\0\0H\0\0\0@\0" - "\0\0\37\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\2\0\0\0\7\0\0\0\13\0\0\0\16\0\0\0\16\0\0\0\14\0\0\0\5\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"}; - - -/* GdkPixbuf RGBA C-Source image dump */ - -#ifdef __SUNPRO_C -#pragma align 4 (stock_book_yellow) -#endif -#ifdef __GNUC__ -static const guint8 stock_book_yellow[] __attribute__ ((__aligned__ (4))) = -#else -static const guint8 stock_book_yellow[] = -#endif -{ "" - /* Pixbuf magic (0x47646b50) */ - "GdkP" - /* length: header (24) + pixel_data (2304) */ - "\0\0\11\30" - /* pixdata_type (0x1010002) */ - "\1\1\0\2" - /* rowstride (96) */ - "\0\0\0`" - /* width (24) */ - "\0\0\0\30" - /* height (24) */ - "\0\0\0\30" - /* pixel_data: */ - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\3\0\0\0""9\0\0\0\302\0\0\0\377\0\0" - "\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0" - "\0\0\377\0\0\0\357\0\0\0\356\0\0\0\346\0\0\0\342\0\0\0w\0\0\0\13\0\0" - "\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\32(\40\5\377\352\315" - "i\377\344\300C\377\342\2733\377\341\267&\377\333\261\36\377\317\247\34" - "\377\303\235\32\377\270\224\31\377\270\224\31\377\270\224\31\377\270" - "\224\31\377\270\224\31\377\301\234\32\377\234~\25\377*\"\6\376\0\0\0" - ".\0\0\0\10\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\273\343\274" - "4\377\350\311]\377\343\2758\377\312\243\33\377\273\227\32\377\255\214" - "\30\377\236\177\25\377\220t\23\377\211n\22\377\211n\22\377\220t\23\377" - "\220t\23\377\230{\25\377\220t\23\377r\\\17\3771(\7\372\0\0\0N\0\0\0\20" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\22\26\22\3\377\352\316m\377\345" - "\302H\377\321\250\34\377\304\236\33\377\264\222\31\377\246\206\27\377" - "\230{\25\377\212p\23\377\211n\22\377\211n\22\377\211n\22\377\211n\22" - "\377\227y\24\377w`\20\377M>\12\377\0\0\0^\0\0\0D\0\0\0\16\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\255\272\226\31\377\352\316m\377\343\2746\377" - "\313\244\34\377\273\227\32\377\257\215\30\377\241\202\26\377\221u\24" - "\377\211n\22\377\211n\22\377\211n\22\377\211n\22\377\214q\23\377\227" - "y\24\377nY\17\377fR\16\375\0\0\0\377\0\0\0%\0\0\0\5\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\21\0\0\0\377\352\316m\377\345\303J\377\324\253\35\377\306" - "\240\33\377\266\223\31\377\250\210\27\377\232|\25\377\214q\23\377\211" - "n\22\377\211n\22\377\212p\23\377\211n\22\377\225x\24\377w`\20\3779.\10" - "\377\201\201\201\377^L\15\377\0\0\0F\0\0\0\15\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\232\272\226\31\377\350\312_\377\343\2746\377\315\245\34\377\277" - "\232\32\377\261\217\30\377\243\203\26\377\225x\24\377\211n\22\377\211" - "n\22\377\211n\22\377\211n\22\377\212p\23\377\232|\25\377nY\17\377C6\11" - "\376KKK\377\220\220\220\377\0\0\0Q\0\0\0\20\0\0\0\0\0\0\0\0\0\0\0\20" - "\0\0\0\377\351\315k\375\345\302H\377\326\255\35\377\310\241\33\377\272" - "\226\31\377\252\211\27\377\234~\25\377\216r\23\377\211n\22\377\211n\22" - "\377\211n\22\377\211n\22\377\223w\24\377zc\21\377;0\10\377VVV\366ggg" - "\377333\377\0\0\0Q\0\0\0\20\0\0\0\0\0\0\0\0\0\0\0\335\313\244\34\377" - "\350\311]\377\343\2758\377\317\247\34\377\301\234\32\377\263\220\30\377" - "\245\205\26\377\227y\24\377\211n\22\377\211n\22\377\211n\22\377\211n" - "\22\377\211n\22\377\230{\25\377s]\20\377I;\12\377HHH\377\344\277\77\377" - "\0\0\0\377\0\0\0c\0\0\0\21\0\0\0\0\0\0\0!\0\0\0\377\352\316k\377\347" - "\306R\377\337\264\36\377\312\243\33\377\273\227\32\377\255\214\30\377" - "\236\177\25\377\220t\23\377\211n\22\377\211n\22\377\211n\22\377\211n" - "\22\377\216r\23\377\203j\22\377=1\10\377ggg\377nnn\377zc\21\377\0\0\0" - "\373\0\0\0R\0\0\0\25\0\0\0\0\0\0\0\245\306\240\33\377\351\313b\377\342" - "\2733\377\324\253\35\377\306\240\33\377\266\223\31\377\250\210\27\377" - "\232|\25\377\214q\23\377\211n\22\377\211n\22\377\211n\22\377\211n\22" - "\377\232|\25\377nY\17\377M>\12\377XXX\377\344\276;\377\25\21\3\372\0" - "\0\0\234\0\0\0I\0\0\0\17\0\0\0\13\0\0\0\377\326\266D\337\347\307X\377" - "\341\270*\377\315\245\34\377\277\232\32\377\261\217\30\377\243\203\26" - "\377\225x\24\377\211n\22\377\211n\22\377\211n\22\377\211n\22\377\211" - "n\22\377\205k\22\377A4\10\377KKK\377ttt\377\234\177\30\370\0\0\0\364" - "\0\0\0U\0\0\0+\0\0\0\7\0\0\0\206\317\247\34\377\360\336\236\375\356\330" - "\213\377\355\324~\377\354\322w\377\353\317n\377\352\314g\377\347\307" - "X\377\343\2758\377\343\2744\377\343\2744\377\343\2744\377\343\2744\377" - "\341\267&\377\264\222\31\377^L\15\377^^^\377\344\300A\377\25\21\3\372" - "\0\0\0\233\0\0\0G\0\0\0\21\0\0\0\1\7\6\1\331\356\326\205\377lW\17\377" - "`N\15\377`N\15\377`N\15\377`N\15\377`N\15\377`N\15\377`N\15\377`N\15" - "\377`N\15\377`N\15\377`N\15\377`N\15\377]K\14\377ccc\377xxx\377\250\210" - "\27\377\0\0\0\365\0\0\0U\0\0\0*\0\0\0\6\0\0\0\0\32\25\3\377\344\277\77" - "\377s]\20\377___\373ttt\377\226\226\226\377\261\261\261\377\257\257\257" - "\377\305\305\305\377\316\316\316\377\272\272\272\377\302\302\302\377" - "\303\303\303\377\313\313\313\377\322\322\322\377\332\332\332\377\225" - "\225\225\377\342\2721\377,#\6\371\0\0\0\234\0\0\0H\0\0\0\22\0\0\0\1\0" - "\0\0\0\26\22\3\377\330\256\35\377\230{\25\377~~~\377\344\344\344\377" - "\344\344\344\377\341\341\341\377\337\337\337\377\337\337\337\377\362" - "\362\362\377\375\375\375\377\363\363\363\377\363\363\363\377\363\363" - "\363\377\250\250\250\377\265\265\265\377mmm\377\250\210\27\377\1\1\0" - "\370\0\0\0U\0\0\0*\0\0\0\6\0\0\0\0\0\0\0\0A4\10\377\310\241\33\377\330" - "\256\35\377\273\227\32\377\245\205\26\377\333\333\333\377\352\352\352" - "\377\357\357\357\377\357\357\357\377\346\346\346\377\336\336\336\377" - "\341\341\341\377\341\341\341\377\337\337\337\377\342\342\342\377zzz\377" - "\343\275:\377-%\7\367\0\0\0\234\0\0\0I\0\0\0\22\0\0\0\1\0\0\0\0\0\0\0" - "\0\0\0\0""9\0\0\0\377\13\10\1\354~e\25\363\243\206!\351\260\220\40\357" - "\272\226\31\377\301\234\32\377\227\227\227\377\334\334\334\377\345\345" - "\345\377\353\353\353\377\371\371\371\377\371\371\371\377\205\205\205" - "\377\246\246\246\377\350\310[\377\2\2\0\370\0\0\0U\0\0\0*\0\0\0\7\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0&\0\0\0e\0\0\0\276\0\0\0\346\0\0\0" - "\360\0\0\0\363\202i\24\371\224w\26\371\262\220\35\367\266\224\36\366" - "\275\231\32\377\355\325\200\377\340\340\340\377\352\352\352\377\350\310" - "[\3770&\6\373\0\0\0\234\0\0\0H\0\0\0\22\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\6\0\0\0\17\0\0\0\34\0\0\0""4\0\0\0C\0\0\0g\0\0\0\251" - "\0\0\0\344\0\0\0\361\0\0\0\356iU\21\365\207n\25\371\245\206\31\372\257" - "\215\33\367\250\211\36\357\4\3\0\367\0\0\0U\0\0\0+\0\0\0\7\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\3\0\0\0\12\0\0\0" - "\15\0\0\0\20\0\0\0\33\0\0\0""0\0\0\0C\0\0\0_\0\0\0\235\0\0\0\327\0\0" - "\0\356\0\0\0\354\0\0\0\347\0\0\0{\0\0\0F\0\0\0\21\0\0\0\1\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\3\0\0\0\10\0\0\0\15\0\0\0\20\0\0\0\30\0\0\0,\0\0\0\77" - "\0\0\0H\0\0\0H\0\0\0@\0\0\0\37\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0\7\0\0\0\13\0\0\0\16\0\0" - "\0\16\0\0\0\14\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0"}; - - -/* GdkPixbuf RGBA C-Source image dump */ - -#ifdef __SUNPRO_C -#pragma align 4 (stock_line_in) -#endif -#ifdef __GNUC__ -static const guint8 stock_line_in[] __attribute__ ((__aligned__ (4))) = -#else -static const guint8 stock_line_in[] = -#endif -{ "" - /* Pixbuf magic (0x47646b50) */ - "GdkP" - /* length: header (24) + pixel_data (2304) */ - "\0\0\11\30" - /* pixdata_type (0x1010002) */ - "\1\1\0\2" - /* rowstride (96) */ - "\0\0\0`" - /* width (24) */ - "\0\0\0\30" - /* height (24) */ - "\0\0\0\30" - /* pixel_data: */ - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0-..\257###\377\10\10\10x\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\25\25\25\377\345\345\346\377###\377\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0fff\315\356\356\356\377MMM\217\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\2\2\2\337\277\277\277\377\3\3\3\325\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\33\0\0\0i\0\0\0s\0\0\0_\0\0" - "\0=\0\0\0!\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\21" - "\21\22\377\354\354\355\377\22\22\22\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0`\0\0\0\262\216\216\216\260\210\210\210" - "\233TTT\210$$$v\0\0\0b\0\0\0F\0\0\0&\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0$$%\243\273\273\273\377\0\0\0O\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\212lll\326\316\316\316\311\245\245\245\274\0" - "\0\0\242\0\0\0\214\0\0\0v\0\0\0U\0\0\0;\0\0\0+\0\0\0\"\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\377\352\352\352\377\0\0\0\377\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\230mmm\347\316\316\316\345\10\10\10" - "\313\10\10\10\231\0\0\0G\0\0\0=\0\0\0""1\0\0\0:\0\0\0""2\0\0\0#\0\0\0" - "\37\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377RRR\377\332\332\334\377===\377\0" - "\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\343\265\265\265\363KK" - "K\351\0\0\0M\0\0\0\21\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0\33" - "\0\0\0\35\0\0\0\0\0\0\0\0\0\0\0\377\0\0\0\377\373\373\373\377\234\233" - "\234\377\324\324\324\377\0\0\0\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\231" - "GGG\361\244\244\244\365\0\0\0\242\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\3\0\0\0\31\0\0\0\0\0\0\0\0\0\0\0\377\221\221" - "\221\377===\377===\377\36\36\36\377\77\77\77\377\0\0\0\377\0\0\0\0\0" - "\0\0\0\0\0\0\331___\367###\362\0\0\0B\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\377\221" - "\221\221\377===\377===\377\36\36\36\377BBB\377\0\0\0\377\0\0\0\0\0\0" - "\0\0\0\0\0\342SSS\355\0\0\0\353\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377" - "\221\221\221\377===\377===\377\36\36\36\377BBB\377\0\0\0\377\0\0\0\0" - "\0\0\0\0\0\0\0\330SSS\353\0\0\0\355\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\377\221\221\221\377===\377===\377\36\36\36\377BBB\377\0\0\0\377\0\0" - "\0\0\0\0\0\0\0\0\0\262'''\332\"\"\"\367\0\0\0<\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\377\221\221\221\377===\377===\377\36\36\36\377BBB\377\0\0\0\377" - "\0\0\0\0\0\0\0\0\0\0\0D\0\0\0\315UUU\362\0\0\0\313\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\377\221\221\221\377===\377===\377\36\36\36\377EEE\377\0\0\0" - "\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\241LLL\322FFF\336\0\0\0\234\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\377AAA\377ddd\377%%%\377,,,\377<<<\377\0\0\0\377\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\35\0\0\0\236XXX\257FFF\273\0\0\0q\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\377\25\25\25\377\7\7\7\377(((\377\0\0\0\377\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0""9\0\0\0\205ZZZ\233\0\0\0\236\0\0\0b\0\0" - "\0\"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\377+++\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\0\0\0cXXX{\0\0\0{\0\0\0""3\0\0\0%\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\324" - "+++\324\0\0\0\324\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0""7\0\0\0T\0\0\0_\0\0\0^\0\0\0#\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\252+++\252\0\0\0\252" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\13\0\0\0@\0\0\0F\0\0\0J\0\0\0""2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\177+++\177\0\0\0\177\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0""1" - "\0\0\0:\7\7\7@\0\0\0,\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0U+++U\0\0\0U\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\27\0\0\0/\0\0\0""2\10\10\10""5\0" - "\0\0+\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0*+++*\0\0\0*\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\23\0\0\0""0\0\0\0-\14\14\14-\0\0\0+\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0"}; - - -/* GdkPixbuf RGBA C-Source image dump */ - -#ifdef __SUNPRO_C -#pragma align 4 (stock_mail) -#endif -#ifdef __GNUC__ -static const guint8 stock_mail[] __attribute__ ((__aligned__ (4))) = -#else -static const guint8 stock_mail[] = -#endif -{ "" - /* Pixbuf magic (0x47646b50) */ - "GdkP" - /* length: header (24) + pixel_data (2304) */ - "\0\0\11\30" - /* pixdata_type (0x1010002) */ - "\1\1\0\2" - /* rowstride (96) */ - "\0\0\0`" - /* width (24) */ - "\0\0\0\30" - /* height (24) */ - "\0\0\0\30" - /* pixel_data: */ - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\2\0\0\0\2" - "\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0" - "\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\1\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0f\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377" - "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377" - "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0m\0" - "\0\0\10\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\377SSS\377\377\377\377" - "\377\377\377\377\377\377\377\377\377\377\377\377\377\376\376\376\377" - "\375\375\375\377\374\374\374\377\373\373\373\377\371\371\371\377\370" - "\370\370\377\367\367\367\377\366\366\366\377\365\365\365\377\364\364" - "\364\377\343\343\343\377SSS\377\0\0\0\377\0\0\0\31\0\0\0\10\0\0\0\1\0" - "\0\0\0\0\0\0\2\0\0\0\377\356\356\356\377OOO\377\377\377\377\377\365\365" - "\365\377\364\364\364\377\363\363\363\377\362\362\362\377\362\362\362" - "\377\361\361\361\377\360\360\360\377\360\360\360\377\357\357\357\377" - "\356\356\356\377\355\355\355\377\343\343\343\377OOO\377\256\256\256\377" - "\0\0\0\377\0\0\0(\0\0\0\17\0\0\0\2\0\0\0\0\0\0\0\2\0\0\0\377\377\377" - "\377\377\344\344\344\377CCC\377\375\375\375\377\363\363\363\377\362\362" - "\362\377\362\362\362\377\361\361\361\377\360\360\360\377\357\357\357" - "\377\356\356\356\377\356\356\356\377\355\355\355\377\343\343\343\377" - "OOO\377\254\254\254\377\310\310\310\377\0\0\0\377\0\0\0-\0\0\0\21\0\0" - "\0\2\0\0\0\0\0\0\0\2\0\0\0\377\377\377\377\377\365\365\365\377\344\344" - "\344\377OOO\377\373\373\373\377\361\361\361\377\360\360\360\377\360\360" - "\360\377\357\357\357\377\356\356\356\377\355\355\355\377\355\355\355" - "\377\343\343\343\377CCC\377\240\240\240\377\324\324\324\377\310\310\310" - "\377\0\0\0\377\0\0\0-\0\0\0\21\0\0\0\2\0\0\0\0\0\0\0\2\0\0\0\377\377" - "\377\377\377\373\373\373\377\365\365\365\377\344\344\344\377CCC\377\370" - "\370\370\377\360\360\360\377\357\357\357\377\356\356\356\377\355\355" - "\355\377\354\354\354\377\343\343\343\377OOO\377\225\225\225\377\324\324" - "\324\377\344\344\344\377\310\310\310\377\0\0\0\377\0\0\0-\0\0\0\21\0" - "\0\0\2\0\0\0\0\0\0\0\2\0\0\0\377\377\377\377\377\365\365\365\377\365" - "\365\365\377\365\365\365\377\344\344\344\377>>>\377\365\365\365\377\356" - "\356\356\377\355\355\355\377\354\354\354\377\343\343\343\377MMM\377\201" - "\201\201\377\306\306\306\377\344\344\344\377\344\344\344\377\310\310" - "\310\377\0\0\0\377\0\0\0-\0\0\0\21\0\0\0\2\0\0\0\0\0\0\0\2\0\0\0\377" - "\377\377\377\377\373\373\373\377\365\365\365\377\365\365\365\377\344" - "\344\344\377jjj\377CCC\377\363\363\363\377\354\354\354\377\343\343\343" - "\377OOO\377jjj\377\306\306\306\377\306\306\306\377\365\365\365\377\344" - "\344\344\377\310\310\310\377\0\0\0\377\0\0\0-\0\0\0\21\0\0\0\2\0\0\0" - "\0\0\0\0\2\0\0\0\377\377\377\377\377\365\365\365\377\365\365\365\377" - "\344\344\344\377ccc\377\377\377\377\377\271\271\271\377OOO\377\360\360" - "\360\377OOO\377\225\225\225\377\306\306\306\377sss\377\306\306\306\377" - "\365\365\365\377\344\344\344\377\310\310\310\377\0\0\0\377\0\0\0-\0\0" - "\0\21\0\0\0\2\0\0\0\0\0\0\0\2\0\0\0\377\377\377\377\377\373\373\373\377" - "\344\344\344\377ccc\377\377\377\377\377\365\365\365\377\344\344\344\377" - "\324\324\324\377OOO\377\254\254\254\377\306\306\306\377\344\344\344\377" - "\344\344\344\377|||\377\344\344\344\377\344\344\344\377\310\310\310\377" - "\0\0\0\377\0\0\0-\0\0\0\21\0\0\0\2\0\0\0\0\0\0\0\2\0\0\0\377\377\377" - "\377\377\344\344\344\377sss\377\377\377\377\377\365\365\365\377\365\365" - "\365\377\365\365\365\377\365\365\365\377\344\344\344\377\344\344\344" - "\377\365\365\365\377\365\365\365\377\365\365\365\377\344\344\344\377" - "|||\377\344\344\344\377\310\310\310\377\0\0\0\377\0\0\0-\0\0\0\21\0\0" - "\0\2\0\0\0\0\0\0\0\2\0\0\0\377\377\377\377\377|||\377\377\377\377\377" - "\344\344\344\377\344\344\344\377\344\344\344\377\344\344\344\377\344" - "\344\344\377\344\344\344\377\344\344\344\377\344\344\344\377\344\344" - "\344\377\344\344\344\377\344\344\344\377\344\344\344\377|||\377\310\310" - "\310\377\0\0\0\377\0\0\0-\0\0\0\21\0\0\0\2\0\0\0\0\0\0\0\2\0\0\0\377" - "sss\377\274\274\274\377\274\274\274\377\274\274\274\377\274\274\274\377" - "\274\274\274\377\274\274\274\377\274\274\274\377\274\274\274\377\274" - "\274\274\377\274\274\274\377\274\274\274\377\274\274\274\377\274\274" - "\274\377\274\274\274\377\274\274\274\377ccc\377\0\0\0\377\0\0\0-\0\0" - "\0\21\0\0\0\2\0\0\0\0\0\0\0\2\0\0\0m\0\0\0\377\0\0\0\377\0\0\0\377\0" - "\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377" - "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377" - "\0\0\0\207\0\0\0(\0\0\0\17\0\0\0\2\0\0\0\0\0\0\0\1\0\0\0\10\0\0\0\31" - "\0\0\0(\0\0\0-\0\0\0-\0\0\0-\0\0\0-\0\0\0-\0\0\0-\0\0\0-\0\0\0-\0\0\0" - "-\0\0\0-\0\0\0-\0\0\0-\0\0\0-\0\0\0-\0\0\0-\0\0\0(\0\0\0\31\0\0\0\10" - "\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0\10\0\0\0\16\0\0\0\21\0\0\0\21" - "\0\0\0\21\0\0\0\21\0\0\0\21\0\0\0\21\0\0\0\21\0\0\0\21\0\0\0\21\0\0\0" - "\21\0\0\0\21\0\0\0\21\0\0\0\21\0\0\0\21\0\0\0\21\0\0\0\16\0\0\0\10\0" - "\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\2\0\0\0\2\0\0\0" - "\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0" - "\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\1\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"}; - - -/* GdkPixbuf RGBA C-Source image dump */ - -#ifdef __SUNPRO_C -#pragma align 4 (stock_mail_compose) -#endif -#ifdef __GNUC__ -static const guint8 stock_mail_compose[] __attribute__ ((__aligned__ (4))) = -#else -static const guint8 stock_mail_compose[] = -#endif -{ "" - /* Pixbuf magic (0x47646b50) */ - "GdkP" - /* length: header (24) + pixel_data (2304) */ - "\0\0\11\30" - /* pixdata_type (0x1010002) */ - "\1\1\0\2" - /* rowstride (96) */ - "\0\0\0`" - /* width (24) */ - "\0\0\0\30" - /* height (24) */ - "\0\0\0\30" - /* pixel_data: */ - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\0\0\0\377\0\0" - "\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377" - "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\321\257" - "a\377\361\343\254\377\373\251\17\377\0\0\0\377\0\0\0\377\0\0\0\377\0" - "\0\0V\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\377\377" - "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" - "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\265\265" - "\265\377\240k\11\377\361\343\254\377\373\251\17\377\201`\0\377\0\0\0" - "\377\340\340\340\377\301\301\301\377\0\0\0\377\0\0\0D\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\377\377\377\377\377\364\364\364\377\377\377\377" - "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" - "\375\375\375\377\375\375\375\377\0\0\0\377\346\303p\377\361\323\207\377" - "\325\217\14\377\0\0\0\377\262\262\262\377\303\303\303\377\373\373\373" - "\377\250\250\250\377\0\0\0\377\0\0\0V\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377" - "\377\377\377\377\366\366\366\377\377\377\377\377\377\377\377\377\377" - "\377\377\377\375\375\375\377\375\375\375\377\375\375\375\377\263\263" - "\263\377\240k\11\377\361\343\254\377\373\251\17\377\201`\0\377\0\0\0" - "\377\372\372\372\377\255\255\255\377vvv\377]]]\377@@@\377\0\0\0\377\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\377\377\366\366\366\377\377" - "\377\377\377\373\373\373\377\373\373\373\377\373\373\373\377\373\373" - "\373\377\370\370\370\377\0\0\0\377\346\303p\377\361\320~\377\325\217" - "\14\377\0\0\0\377\254\254\254\377\370\370\366\377\342\342\342\377\205" - "\205\205\377KKI\377\26\26\26\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\377\377\377\377\377\364\364\364\377\375\375\375\377\375\375\375" - "\377\373\373\373\377\373\373\373\377\373\373\372\377}}}\377\240k\11\377" - "\361\343\254\377\373\251\17\377\201`\0\377\0\0\0\377\364\364\364\377" - "\362\362\362\377\360\360\360\377\357\357\357\377\325\325\325\377\255" - "\255\255\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\377" - "\377\362\362\362\377\371\371\371\377\366\366\366\377\366\366\366\377" - "\366\366\363\377\363\363\363\377\0\0\0\377\346\303p\377\361\320~\377" - "\325\217\14\377\0\0\0\377\207\207\206\377\345\345\345\377\342\342\342" - "\377\337\337\337\377\353\353\353\377\342\342\342\377\301\301\301\377" - "\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\377\377\360\360" - "\360\377\370\370\370\377\370\370\370\377\370\370\370\377\370\370\366" - "\377\256\256\256\377{S\7\377\361\343\254\377\373\251\17\377\201`\0\377" - "\0\0\0\377\355\355\355\377\353\353\353\377\353\353\351\377\351\351\347" - "\377\351\351\347\377\340\340\336\377\277\277\277\377\0\0\0\377\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\377\377\357\357\357\377\363\363" - "\363\377\360\360\360\377\360\360\355\377\355\355\355\377\0\0\0\377\346" - "\303p\377\361\322\204\377\312\207\13\377\0\0\0\377\236\236\234\377\334" - "\334\331\377\331\331\331\377\331\331\326\377\326\326\324\377\345\345" - "\344\377\331\331\327\377\272\272\272\377\0\0\0\377\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\377\377\377\377\377\355\355\355\377\364\364\364\377\364" - "\364\364\377\362\362\362\377\252\252\252\377\240k\11\377\361\343\254" - "\377\373\251\17\377\201`\0\377\0\0\0\377\347\347\345\377\345\345\344" - "\377\345\345\344\377\344\344\342\377\340\340\336\377\342\342\340\377" - "\331\331\327\377\272\272\272\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\377\377\377\377\377\353\353\353\377\356\356\354\377\347\347\345" - "\377\345\345\345\377\0\0\0\377\346\303p\377\361\322\204\377\312\207\13" - "\377\0\0\0\377\227\227\226\377\324\324\321\377\342\342\340\377\340\340" - "\336\377\336\336\334\377\336\336\333\377\336\336\334\377\331\331\327" - "\377\275\275\274\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377" - "\377\377\377\347\347\347\377\357\357\355\377\353\353\353\377\246\246" - "\245\377\272|\12\377\373\251\17\377\373\251\17\377z[\0\377\0\0\0\377" - "\342\342\340\377\340\340\336\377\336\336\334\377\336\336\333\377\334" - "\334\331\377\333\333\331\377\333\333\331\377\325\325\323\377\274\274" - "\274\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\377\377" - "\345\345\345\377\343\343\343\377\331\331\331\377\0\0\0\377\362\346\266" - "\377{{{\377pK\5\377\0\0\0\377ggd\377\313\313\307\377\311\311\307\377" - "\334\334\331\377\333\333\327\377\331\331\327\377\327\327\325\377\331" - "\331\327\377\327\327\323\377\264\264\264\377\0\0\0\377\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\377\377\377\377\377\342\342\340\377\345\345\344\377" - "\344\344\344\377\0\0\0\377\333\325\301\377~oW\377uX\0\377\0\0\0\377\334" - "\334\331\377\333\333\331\377\333\333\327\377\331\331\325\377\327\327" - "\323\377\325\325\323\377\325\325\321\377\327\327\323\377\320\320\316" - "\377\272\272\270\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377" - "\377\377\377\336\336\334\377\335\335\333\377\321\321\317\377\16\16\16" - "\377SSS\377\0\0\0\377\0\0\0\377\215\215\213\377\304\304\301\377\304\304" - "\277\377\301\301\274\377\325\325\321\377\325\325\321\377\323\323\320" - "\377\321\321\320\377\323\323\320\377\320\320\316\377\272\272\270\377" - "\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\377\377\334\334" - "\333\377\340\340\334\377\335\335\333\377\0\0\0\377\0\0\0\377\211\211" - "\207\377\311\311\306\377\315\315\312\377\320\320\315\377\316\316\313" - "\377\320\320\315\377\320\320\315\377\320\320\315\377\320\320\315\377" - "\317\317\314\377\320\320\315\377\320\320\314\377\266\266\266\377\0\0" - "\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\377\377\333\333\331" - "\377\324\324\320\377\303\303\300\377[[[\377\221\221\215\377\221\221\217" - "\377\237\237\235\377\257\257\254\377\271\271\266\377\276\276\273\377" - "\303\303\300\377\305\305\302\377\310\310\305\377\312\312\307\377\313" - "\313\310\377\314\314\311\377\314\314\310\377\262\262\262\377\0\0\0\377" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\377\377\322\322\320\377\322" - "\322\317\377\317\317\314\377\277\277\275\377\237\237\234\377\210\210" - "\206\377\207\207\205\377\214\214\212\377\225\225\223\377\234\234\232" - "\377\250\250\245\377\261\261\256\377\265\265\263\377\273\273\270\377" - "\276\276\273\377\277\277\274\377\302\302\276\377\262\262\262\377\0\0" - "\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\377\377\321\321\316" - "\377\320\320\314\377\314\314\311\377\317\317\314\377\303\303\300\377" - "\256\256\253\377\235\235\232\377\227\227\224\377\227\227\224\377\224" - "\224\221\377\232\232\227\377\237\237\234\377\243\243\240\377\250\250" - "\245\377\252\252\247\377\260\260\254\377\270\270\265\377\260\260\256" - "\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\377\377\322" - "\322\317\377\321\321\316\377\321\321\316\377\321\321\316\377\317\317" - "\315\377\313\313\310\377\276\276\274\377\264\264\260\377\254\254\250" - "\377\244\244\242\377\240\240\234\377\240\240\234\377\244\244\240\377" - "\244\244\242\377\250\250\246\377\253\253\247\377\262\262\256\377\244" - "\244\244\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\377" - "\377\321\321\320\377\321\321\316\377\320\320\316\377\316\316\314\377" - "\316\316\312\377\316\316\312\377\314\314\310\377\306\306\302\377\274" - "\274\271\377\263\263\257\377\264\264\260\377\253\253\251\377\246\246" - "\243\377\240\240\235\377\246\246\243\377\252\252\247\377\254\254\251" - "\377\241\241\241\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377" - "\377\377\377\261\261\257\377\264\264\263\377\264\264\261\377\264\264" - "\261\377\264\264\261\377\263\263\261\377\263\263\261\377\262\262\256" - "\377\256\256\252\377\247\247\244\377\242\242\240\377\245\245\241\377" - "\245\245\241\377\231\231\227\377\222\222\220\377\224\224\220\377\235" - "\235\233\377\205\205\203\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0" - "\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0" - "\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0r\0\0" - "\0\0"}; - - -/* GdkPixbuf RGBA C-Source image dump */ - -#ifdef __SUNPRO_C -#pragma align 4 (stock_mail_forward) -#endif -#ifdef __GNUC__ -static const guint8 stock_mail_forward[] __attribute__ ((__aligned__ (4))) = -#else -static const guint8 stock_mail_forward[] = -#endif -{ "" - /* Pixbuf magic (0x47646b50) */ - "GdkP" - /* length: header (24) + pixel_data (2304) */ - "\0\0\11\30" - /* pixdata_type (0x1010002) */ - "\1\1\0\2" - /* rowstride (96) */ - "\0\0\0`" - /* width (24) */ - "\0\0\0\30" - /* height (24) */ - "\0\0\0\30" - /* pixel_data: */ - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1" - "\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0" - "\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2" - "\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0f\0\0\0\377\0\0\0\377\0" - "\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377" - "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377" - "\0\0\0\377\0\0\0m\0\0\0\10\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\377" - "SSS\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" - "\376\376\376\377\375\375\375\377\374\374\374\377\373\373\373\377\371" - "\371\371\377\370\370\370\377\367\367\367\377\366\366\366\377\365\365" - "\365\377\364\364\364\377\343\343\343\377SSS\377\0\0\0\377\0\0\0\31\0" - "\0\0\10\0\0\0\1\0\0\0\0\0\0\0\2\0\0\0\377\356\356\356\377OOO\377\377" - "\377\377\377\365\365\365\377\364\364\364\377\363\363\363\377\362\362" - "\362\377\362\362\362\377\361\361\361\377\360\360\360\377\360\360\360" - "\377\357\357\357\377\356\356\356\377\355\355\355\377\343\343\343\377" - "OOO\377\256\256\256\377\0\0\0\377\0\0\0(\0\0\0\17\0\0\0\2\0\0\0\0\0\0" - "\0\2\0\0\0\377\377\377\377\377\344\344\344\377CCC\377\375\375\375\377" - "\363\363\363\377\362\362\362\377\362\362\362\377\361\361\361\377\360" - "\360\360\377\357\357\357\377\356\356\356\377\356\356\356\377\355\355" - "\355\377\343\343\343\377OOO\377\254\254\254\377\310\310\310\377\0\0\0" - "\377\0\0\0-\0\0\0\21\0\0\0\2\0\0\0\0\0\0\0\2\0\0\0\377\377\377\377\377" - "\365\365\365\377\344\344\344\377OOO\377\373\373\373\377\361\361\361\377" - "\360\360\360\377\360\360\360\377\357\357\357\377\356\356\356\377\355" - "\355\355\377\355\355\355\377\343\343\343\377CCC\377\240\240\240\377\324" - "\324\324\377\310\310\310\377\0\0\0\377\0\0\0-\0\0\0\21\0\0\0\2\0\0\0" - "\0\0\0\0\2\0\0\0\377\377\377\377\377\373\373\373\377\365\365\365\377" - "\344\344\344\377CCC\377\370\370\370\377\360\360\360\377\357\357\357\377" - "\356\356\356\377\355\355\355\377\354\354\354\377\343\343\343\377OOO\377" - "\225\225\225\377\324\324\324\377\344\344\344\377\310\310\310\377\0\0" - "\0\377\0\0\0-\0\0\0\21\0\0\0\2\0\0\0\0\0\0\0\2\0\0\0\377\377\377\377" - "\377\365\365\365\377\365\365\365\377\365\365\365\377\344\344\344\377" - ">>>\377\365\365\365\377\356\356\356\377\355\355\355\377\354\354\354\377" - "\343\343\343\377MMM\377\201\201\201\377\306\306\306\377\344\344\344\377" - "\344\344\344\377\310\310\310\377\0\0\0\377\0\0\0-\0\0\0\21\0\0\0\2\0" - "\0\0\0\0\0\0\2\0\0\0\377\377\377\377\377\373\373\373\377\365\365\365" - "\377\365\365\365\377\344\344\344\377jjj\377CCC\377\363\363\363\377\354" - "\354\354\377\343\343\343\377OOO\377jjj\377\306\306\306\377\306\306\306" - "\377\365\365\365\377\0\0\0\377\310\310\310\377\0\0\0\377\0\0\0-\0\0\0" - "\21\0\0\0\2\0\0\0\0\0\0\0\2\0\0\0\377\377\377\377\377\365\365\365\377" - "\365\365\365\377\344\344\344\377ccc\377\377\377\377\377\271\271\271\377" - "OOO\377\360\360\360\377OOO\377\225\225\225\377\306\306\306\377sss\377" - "\306\306\306\377\365\365\365\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0" - "-\0\0\0\21\0\0\0\2\0\0\0\0\0\0\0\2\0\0\0\377\377\377\377\377\373\373" - "\373\377\344\344\344\377ccc\377\377\377\377\377\365\365\365\377\344\344" - "\344\377\324\324\324\377OOO\377\254\254\254\377\306\306\306\377\344\344" - "\344\377\344\344\344\377|||\377\344\344\344\377\0\0\0\377[\210\262\377" - "\0\0\0\377\0\0\0-\0\0\0\21\0\0\0\2\0\0\0\0\0\0\0\2\0\0\0\377\377\377" - "\377\377\344\344\344\377sss\377\377\377\377\377\365\365\365\377\365\365" - "\365\377\365\365\365\377\365\365\365\377\344\344\344\377\0\0\0\377\0" - "\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\236\270\321" - "\377P\200\255\377\0\0\0\377\0\0\0\21\0\0\0\2\0\0\0\0\0\0\0\2\0\0\0\377" - "\377\377\377\377|||\377\377\377\377\377\344\344\344\377\344\344\344\377" - "\344\344\344\377\344\344\344\377\344\344\344\377\344\344\344\377\0\0" - "\0\377\265\311\334\377\257\305\332\377\262\307\333\377\266\312\335\377" - "\266\312\335\377\266\312\335\377\244\275\325\377\234\267\321\377P\200" - "\255\377\10\15\21\377\0\0\0\2\0\0\0\0\0\0\0\2\0\0\0\377sss\377\274\274" - "\274\377\274\274\274\377\274\274\274\377\274\274\274\377\274\274\274" - "\377\274\274\274\377\274\274\274\377\274\274\274\377\0\0\0\377\233\266" - "\320\377\240\272\323\377\234\267\321\377\234\267\321\377\233\266\320" - "\377\232\265\317\377\240\272\323\377\234\267\321\377\227\263\316\377" - "_\213\264\377\0\0\0\377\0\0\0\0\0\0\0\2\0\0\0m\0\0\0\377\0\0\0\377\0" - "\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377" - "\0\0\0\377\221\260\314\377\236\270\321\377\232\265\317\377\232\265\317" - "\377\233\266\320\377\234\267\321\377\234\267\321\377\234\267\321\377" - "\240\272\323\377\225\262\316\377Ly\243\377\0\0\0\377\0\0\0\1\0\0\0\10" - "\0\0\0\31\0\0\0(\0\0\0-\0\0\0-\0\0\0-\0\0\0-\0\0\0-\0\0\0-\0\0\0-\0\0" - "\0\377It\234\377\77e\210\377\77e\210\377\77e\210\377\77e\210\377\77e" - "\210\377\77e\210\377\77e\210\377\77e\210\377*C[\377\0\0\0\377\0\0\0\0" - "\0\0\0\0\0\0\0\2\0\0\0\10\0\0\0\16\0\0\0\21\0\0\0\21\0\0\0\21\0\0\0\21" - "\0\0\0\21\0\0\0\21\0\0\0\21\0\0\0\377Eo\226\3777Yx\3777Yx\3777Yx\377" - "7Yx\3777Yx\377\77e\210\377\77e\210\377*C[\377\0\0\0\377\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0" - "\0\0\2\0\0\0\2\0\0\0\2\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0" - "\377\0\0\0\377\0\0\0\377\77e\210\377*C[\377\0\0\0\377\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\377*C[\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"}; - - -/* GdkPixbuf RGBA C-Source image dump */ - -#ifdef __SUNPRO_C -#pragma align 4 (stock_mail_receive) -#endif -#ifdef __GNUC__ -static const guint8 stock_mail_receive[] __attribute__ ((__aligned__ (4))) = -#else -static const guint8 stock_mail_receive[] = -#endif -{ "" - /* Pixbuf magic (0x47646b50) */ - "GdkP" - /* length: header (24) + pixel_data (2304) */ - "\0\0\11\30" - /* pixdata_type (0x1010002) */ - "\1\1\0\2" - /* rowstride (96) */ - "\0\0\0`" - /* width (24) */ - "\0\0\0\30" - /* height (24) */ - "\0\0\0\30" - /* pixel_data: */ - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\377\311\333\307\377\311\332\307\377\311\332\307\377\201\232y\377" - "XuM\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\377\262\311\260\377\251\304\247\377\255\310\253" - "\377[yP\377MgD\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\273\320\271\377\256\307\254\377" - "\256\307\254\377[yP\377MgD\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\324\0\0\0\377\0\0\0\377\0\0\0\377\271\316\267" - "\377\256\307\254\377\252\307\250\377[yP\377MgD\377\0\0\0\377\0\0\0\377" - "\0\0\0\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\315\336\313" - "\377\261\311\260\377\265\316\265\377\260\311\260\377\255\306\253\377" - "[yP\377[yP\377[yP\377MhD\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\2\0" - "\0\0\2\0\0\0\2\0\0\0\377\315\336\313\377\264\313\262\377\263\312\261" - "\377\255\306\253\377[yP\377[yP\377MhD\377\0\0\0\377\0\0\0\2\0\0\0\2\0" - "\0\0\2\0\0\0\2\0\0\0\2\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "f\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\315\336" - "\313\377\252\307\250\377\260\307\256\377[yP\377MhD\377\0\0\0\377\0\0" - "\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0m\0\0\0\10\0\0\0" - "\2\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\377SSS\377\377\377\377\377\377\377\377" - "\377\377\377\377\377\377\377\377\377\376\376\376\377\0\0\0\377\315\336" - "\313\377\255\310\253\377TqJ\377\0\0\0\377\367\367\367\377\366\366\366" - "\377\365\365\365\377\364\364\364\377\343\343\343\377SSS\377\0\0\0\377" - "\0\0\0\31\0\0\0\10\0\0\0\1\0\0\0\0\0\0\0\2\0\0\0\377\356\356\356\377" - "OOO\377\377\377\377\377\365\365\365\377\364\364\364\377\363\363\363\377" - "\362\362\362\377\0\0\0\377\317\337\314\377\0\0\0\377\360\360\360\377" - "\357\357\357\377\356\356\356\377\355\355\355\377\343\343\343\377OOO\377" - "\256\256\256\377\0\0\0\377\0\0\0(\0\0\0\17\0\0\0\2\0\0\0\0\0\0\0\2\0" - "\0\0\377\377\377\377\377\344\344\344\377CCC\377\375\375\375\377\363\363" - "\363\377\362\362\362\377\362\362\362\377\361\361\361\377---\377\357\357" - "\357\377\356\356\356\377\356\356\356\377\355\355\355\377\343\343\343" - "\377OOO\377\254\254\254\377\310\310\310\377\0\0\0\377\0\0\0-\0\0\0\21" - "\0\0\0\2\0\0\0\0\0\0\0\2\0\0\0\377\377\377\377\377\365\365\365\377\344" - "\344\344\377OOO\377\373\373\373\377\361\361\361\377\360\360\360\377\360" - "\360\360\377\357\357\357\377\356\356\356\377\355\355\355\377\355\355" - "\355\377\343\343\343\377CCC\377\240\240\240\377\324\324\324\377\310\310" - "\310\377\0\0\0\377\0\0\0-\0\0\0\21\0\0\0\2\0\0\0\0\0\0\0\2\0\0\0\377" - "\377\377\377\377\373\373\373\377\365\365\365\377\344\344\344\377CCC\377" - "\370\370\370\377\360\360\360\377\357\357\357\377\356\356\356\377\355" - "\355\355\377\354\354\354\377\343\343\343\377OOO\377\225\225\225\377\324" - "\324\324\377\344\344\344\377\310\310\310\377\0\0\0\377\0\0\0-\0\0\0\21" - "\0\0\0\2\0\0\0\0\0\0\0\2\0\0\0\377\377\377\377\377\365\365\365\377\365" - "\365\365\377\365\365\365\377\344\344\344\377>>>\377\365\365\365\377\356" - "\356\356\377\355\355\355\377\354\354\354\377\343\343\343\377MMM\377\201" - "\201\201\377\306\306\306\377\344\344\344\377\344\344\344\377\310\310" - "\310\377\0\0\0\377\0\0\0-\0\0\0\21\0\0\0\2\0\0\0\0\0\0\0\2\0\0\0\377" - "\377\377\377\377\373\373\373\377\365\365\365\377\365\365\365\377\344" - "\344\344\377jjj\377CCC\377\363\363\363\377\354\354\354\377\343\343\343" - "\377OOO\377jjj\377\306\306\306\377\306\306\306\377\365\365\365\377\344" - "\344\344\377\310\310\310\377\0\0\0\377\0\0\0-\0\0\0\21\0\0\0\2\0\0\0" - "\0\0\0\0\2\0\0\0\377\377\377\377\377\365\365\365\377\365\365\365\377" - "\344\344\344\377ccc\377\377\377\377\377\271\271\271\377OOO\377\360\360" - "\360\377OOO\377\225\225\225\377\306\306\306\377sss\377\306\306\306\377" - "\365\365\365\377\344\344\344\377\310\310\310\377\0\0\0\377\0\0\0-\0\0" - "\0\21\0\0\0\2\0\0\0\0\0\0\0\2\0\0\0\377\377\377\377\377\373\373\373\377" - "\344\344\344\377ccc\377\377\377\377\377\365\365\365\377\344\344\344\377" - "\324\324\324\377OOO\377\254\254\254\377\306\306\306\377\344\344\344\377" - "\344\344\344\377|||\377\344\344\344\377\344\344\344\377\310\310\310\377" - "\0\0\0\377\0\0\0-\0\0\0\21\0\0\0\2\0\0\0\0\0\0\0\2\0\0\0\377\377\377" - "\377\377\344\344\344\377sss\377\377\377\377\377\365\365\365\377\365\365" - "\365\377\365\365\365\377\365\365\365\377\344\344\344\377\344\344\344" - "\377\365\365\365\377\365\365\365\377\365\365\365\377\344\344\344\377" - "|||\377\344\344\344\377\310\310\310\377\0\0\0\377\0\0\0-\0\0\0\21\0\0" - "\0\2\0\0\0\0\0\0\0\2\0\0\0\377\377\377\377\377|||\377\377\377\377\377" - "\344\344\344\377\344\344\344\377\344\344\344\377\344\344\344\377\344" - "\344\344\377\344\344\344\377\344\344\344\377\344\344\344\377\344\344" - "\344\377\344\344\344\377\344\344\344\377\344\344\344\377|||\377\310\310" - "\310\377\0\0\0\377\0\0\0-\0\0\0\21\0\0\0\2\0\0\0\0\0\0\0\2\0\0\0\377" - "sss\377\274\274\274\377\274\274\274\377\274\274\274\377\274\274\274\377" - "\274\274\274\377\274\274\274\377\274\274\274\377\274\274\274\377\274" - "\274\274\377\274\274\274\377\274\274\274\377\274\274\274\377\274\274" - "\274\377\274\274\274\377\274\274\274\377ccc\377\0\0\0\377\0\0\0-\0\0" - "\0\21\0\0\0\2\0\0\0\0\0\0\0\2\0\0\0m\0\0\0\377\0\0\0\377\0\0\0\377\0" - "\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377" - "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377" - "\0\0\0\207\0\0\0(\0\0\0\17\0\0\0\2\0\0\0\0\0\0\0\1\0\0\0\10\0\0\0\31" - "\0\0\0(\0\0\0-\0\0\0-\0\0\0-\0\0\0-\0\0\0-\0\0\0-\0\0\0-\0\0\0-\0\0\0" - "-\0\0\0-\0\0\0-\0\0\0-\0\0\0-\0\0\0-\0\0\0-\0\0\0(\0\0\0\31\0\0\0\10" - "\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0\10\0\0\0\16\0\0\0\21\0\0\0\21" - "\0\0\0\21\0\0\0\21\0\0\0\21\0\0\0\21\0\0\0\21\0\0\0\21\0\0\0\21\0\0\0" - "\21\0\0\0\21\0\0\0\21\0\0\0\21\0\0\0\21\0\0\0\21\0\0\0\16\0\0\0\10\0" - "\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\2\0\0\0\2\0\0\0" - "\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0" - "\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\1\0\0\0\0\0\0\0" - "\0"}; - - -/* GdkPixbuf RGBA C-Source image dump */ - -#ifdef __SUNPRO_C -#pragma align 4 (stock_mail_reply) -#endif -#ifdef __GNUC__ -static const guint8 stock_mail_reply[] __attribute__ ((__aligned__ (4))) = -#else -static const guint8 stock_mail_reply[] = -#endif -{ "" - /* Pixbuf magic (0x47646b50) */ - "GdkP" - /* length: header (24) + pixel_data (2304) */ - "\0\0\11\30" - /* pixdata_type (0x1010002) */ - "\1\1\0\2" - /* rowstride (96) */ - "\0\0\0`" - /* width (24) */ - "\0\0\0\30" - /* height (24) */ - "\0\0\0\30" - /* pixel_data: */ - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\1\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0" - "\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2" - "\0\0\0\2\0\0\0\2\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0f\0\0\0" - "\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0" - "\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0" - "\0\0\377\0\0\0\377\0\0\0\377\0\0\0m\0\0\0\10\0\0\0\2\0\0\0\0\0\0\0\0" - "\0\0\0\1\0\0\0\377SSS\377\377\377\377\377\377\377\377\377\377\377\377" - "\377\377\377\377\377\376\376\376\377\375\375\375\377\374\374\374\377" - "\373\373\373\377\371\371\371\377\370\370\370\377\367\367\367\377\366" - "\366\366\377\365\365\365\377\364\364\364\377\343\343\343\377SSS\377\0" - "\0\0\377\0\0\0\31\0\0\0\10\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0\377\356\356" - "\356\377OOO\377\377\377\377\377\365\365\365\377\364\364\364\377\363\363" - "\363\377\362\362\362\377\362\362\362\377\361\361\361\377\360\360\360" - "\377\360\360\360\377\357\357\357\377\356\356\356\377\355\355\355\377" - "\343\343\343\377OOO\377\256\256\256\377\0\0\0\377\0\0\0(\0\0\0\17\0\0" - "\0\0\0\0\0\0\0\0\0\2\0\0\0\377\377\377\377\377\344\344\344\377CCC\377" - "\375\375\375\377\363\363\363\377\362\362\362\377\362\362\362\377\361" - "\361\361\377\360\360\360\377\357\357\357\377\356\356\356\377\356\356" - "\356\377\355\355\355\377\343\343\343\377OOO\377\254\254\254\377\310\310" - "\310\377\0\0\0\377\0\0\0-\0\0\0\21\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0\377" - "\377\377\377\377\365\365\365\377\344\344\344\377OOO\377\373\373\373\377" - "\361\361\361\377\360\360\360\377\360\360\360\377\357\357\357\377\356" - "\356\356\377\355\355\355\377\355\355\355\377\343\343\343\377CCC\377\240" - "\240\240\377\324\324\324\377\310\310\310\377\0\0\0\377\0\0\0-\0\0\0\21" - "\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0\377\377\377\377\377\373\373\373\377\365" - "\365\365\377\344\344\344\377CCC\377\370\370\370\377\360\360\360\377\357" - "\357\357\377\356\356\356\377\355\355\355\377\354\354\354\377\343\343" - "\343\377OOO\377\225\225\225\377\324\324\324\377\344\344\344\377\310\310" - "\310\377\0\0\0\377\0\0\0-\0\0\0\21\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0\377" - "\377\377\377\377\365\365\365\377\365\365\365\377\365\365\365\377\344" - "\344\344\377>>>\377\365\365\365\377\356\356\356\377\355\355\355\377\354" - "\354\354\377\343\343\343\377MMM\377\201\201\201\377\306\306\306\377\344" - "\344\344\377\344\344\344\377\310\310\310\377\0\0\0\377\0\0\0-\0\0\0\21" - "\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0\377\377\377\377\377\373\373\373\377=\32" - "\23\377\365\365\365\377\344\344\344\377jjj\377CCC\377\363\363\363\377" - "\354\354\354\377\343\343\343\377OOO\377jjj\377\306\306\306\377\306\306" - "\306\377\365\365\365\377\344\344\344\377\310\310\310\377\0\0\0\377\0" - "\0\0-\0\0\0\21\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0\377\377\377\377\377\0\0" - "\0\377\0\0\0\377\344\344\344\377ccc\377\377\377\377\377\271\271\271\377" - "OOO\377\360\360\360\377OOO\377\225\225\225\377\306\306\306\377sss\377" - "\306\306\306\377\365\365\365\377\344\344\344\377\310\310\310\377\0\0" - "\0\377\0\0\0-\0\0\0\21\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0\377\0\0\0\377\352" - "\300\272\377\0\0\0\377ccc\377\377\377\377\377\365\365\365\377\344\344" - "\344\377\324\324\324\377OOO\377\254\254\254\377\306\306\306\377\344\344" - "\344\377\344\344\344\377|||\377\344\344\344\377\344\344\344\377\310\310" - "\310\377\0\0\0\377\0\0\0-\0\0\0\21\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0\377" - "\352\300\272\377\337\236\225\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0" - "\377\0\0\0\377\0\0\0\377\0\0\0\377\344\344\344\377\365\365\365\377\365" - "\365\365\377\365\365\365\377\344\344\344\377|||\377\344\344\344\377\310" - "\310\310\377\0\0\0\377\0\0\0-\0\0\0\21\0\0\0\0\0\0\0\0\0\0\0\377\352" - "\300\272\377\340\241\230\377\341\245\235\377\342\247\236\377\343\253" - "\243\377\342\247\236\377\343\252\242\377\337\236\225\377\314bS\377\0" - "\0\0\377\344\344\344\377\344\344\344\377\344\344\344\377\344\344\344" - "\377\344\344\344\377\344\344\344\377|||\377\310\310\310\377\0\0\0\377" - "\0\0\0-\0\0\0\21\0\0\0\0\0\0\0\377\352\300\272\377\335\227\215\377\337" - "\237\227\377\337\236\225\377\336\232\220\377\335\226\214\377\335\226" - "\214\377\336\232\220\377\335\224\212\377\261C4\377\0\0\0\377\274\274" - "\274\377\274\274\274\377\274\274\274\377\274\274\274\377\274\274\274" - "\377\274\274\274\377\274\274\274\377ccc\377\0\0\0\377\0\0\0-\0\0\0\21" - "C\31\23\377\352\302\274\377\336\232\220\377\337\234\222\377\335\231\217" - "\377\335\231\217\377\335\227\215\377\336\232\220\377\336\232\220\377" - "\336\232\220\377\336\232\220\377\265E5\377\0\0\0\377\0\0\0\377\0\0\0" - "\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0" - "\0\207\0\0\0(\0\0\0\17\0\0\0\0\0\0\0\377e&\35\377\230:,\377\230:,\377" - "\230:,\377\230:,\377\230:,\377\230:,\377\230:,\377\230:,\377|/$\377\0" - "\0\0\377\0\0\0-\0\0\0-\0\0\0-\0\0\0-\0\0\0-\0\0\0-\0\0\0-\0\0\0-\0\0" - "\0(\0\0\0\31\0\0\0\10\0\0\0\0\0\0\0\0\0\0\0\377e&\35\377\230:,\377\230" - ":,\377c%\35\377c%\35\377c%\35\377c%\35\377c%\35\377l)\37\377\0\0\0\377" - "\0\0\0\21\0\0\0\21\0\0\0\21\0\0\0\21\0\0\0\21\0\0\0\21\0\0\0\21\0\0\0" - "\21\0\0\0\16\0\0\0\10\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377e&\35" - "\377\230:,\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0" - "\0\377\0\0\0\377\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0" - "\0\2\0\0\0\2\0\0\0\2\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\377e&\35\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"}; - - -/* GdkPixbuf RGBA C-Source image dump */ - -#ifdef __SUNPRO_C -#pragma align 4 (stock_mail_send) -#endif -#ifdef __GNUC__ -static const guint8 stock_mail_send[] __attribute__ ((__aligned__ (4))) = -#else -static const guint8 stock_mail_send[] = -#endif -{ "" - /* Pixbuf magic (0x47646b50) */ - "GdkP" - /* length: header (24) + pixel_data (2304) */ - "\0\0\11\30" - /* pixdata_type (0x1010002) */ - "\1\1\0\2" - /* rowstride (96) */ - "\0\0\0`" - /* width (24) */ - "\0\0\0\30" - /* height (24) */ - "\0\0\0\30" - /* pixel_data: */ - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0O\77\12\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377" - "\364\346\265\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\364\345" - "\263\377\355\326\204\377u_\20\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\364\345" - "\263\377\355\325\200\377\356\326\205\377\257\215\30\377u_\20\377\0\0" - "\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\377\364\345\263\377\357\331\214\377\356\330\213\377\355\325\202" - "\377\257\215\30\377\257\215\30\377u_\20\377\0\0\0\377\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\1\0\0\0\2\0\0\0\2\0\0\0\377\364\345\263\377\356\330\211\377" - "\357\332\222\377\356\330\211\377\355\325\202\377\257\215\30\377\257\215" - "\30\377\257\215\30\377u_\20\377\0\0\0\377\0\0\0\2\0\0\0\2\0\0\0\2\0\0" - "\0\2\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0f\0\0\0\377\0\0\0\377" - "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\360\333\223\377\355\326\204" - "\377\355\325\200\377\257\215\30\377s]\20\377\0\0\0\377\0\0\0\377\0\0" - "\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0m\0\0\0\10\0\0\0\2\0\0\0\0" - "\0\0\0\0\0\0\0\1\0\0\0\377SSS\377\377\377\377\377\377\377\377\377\377" - "\377\377\377\377\377\377\377\0\0\0\377\360\334\227\377\355\326\204\377" - "\355\326\204\377\257\215\30\377s]\20\377\0\0\0\377\366\366\366\377\365" - "\365\365\377\364\364\364\377\343\343\343\377SSS\377\0\0\0\377\0\0\0\31" - "\0\0\0\10\0\0\0\1\0\0\0\0\0\0\0\2\0\0\0\377\356\356\356\377OOO\377\377" - "\377\377\377\365\365\365\377\364\364\364\377\0\0\0\377\356\330\211\377" - "\355\323|\377\355\326\204\377\257\215\30\377s]\20\377\0\0\0\377\356\356" - "\356\377\355\355\355\377\343\343\343\377OOO\377\256\256\256\377\0\0\0" - "\377\0\0\0(\0\0\0\17\0\0\0\2\0\0\0\0\0\0\0\2\0\0\0\377\377\377\377\377" - "\344\344\344\377CCC\377\375\375\375\377\363\363\363\377\0\0\0\377\344" - "\277=\377\313\244\34\377\321\250\34\377\220t\23\377|d\21\377\0\0\0\377" - "\355\355\355\377\343\343\343\377OOO\377\254\254\254\377\310\310\310\377" - "\0\0\0\377\0\0\0-\0\0\0\21\0\0\0\2\0\0\0\0\0\0\0\2\0\0\0\377\377\377" - "\377\377\365\365\365\377\344\344\344\377OOO\377\373\373\373\377\0\0\0" - "\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\343" - "\343\343\377CCC\377\240\240\240\377\324\324\324\377\310\310\310\377\0" - "\0\0\377\0\0\0-\0\0\0\21\0\0\0\2\0\0\0\0\0\0\0\2\0\0\0\377\377\377\377" - "\377\373\373\373\377\365\365\365\377\344\344\344\377CCC\377\370\370\370" - "\377\360\360\360\377\357\357\357\377\356\356\356\377\355\355\355\377" - "\354\354\354\377\343\343\343\377OOO\377\225\225\225\377\324\324\324\377" - "\344\344\344\377\310\310\310\377\0\0\0\377\0\0\0-\0\0\0\21\0\0\0\2\0" - "\0\0\0\0\0\0\2\0\0\0\377\377\377\377\377\365\365\365\377\365\365\365" - "\377\365\365\365\377\344\344\344\377>>>\377\365\365\365\377\356\356\356" - "\377\355\355\355\377\354\354\354\377\343\343\343\377MMM\377\201\201\201" - "\377\306\306\306\377\344\344\344\377\344\344\344\377\310\310\310\377" - "\0\0\0\377\0\0\0-\0\0\0\21\0\0\0\2\0\0\0\0\0\0\0\2\0\0\0\377\377\377" - "\377\377\373\373\373\377\365\365\365\377\365\365\365\377\344\344\344" - "\377jjj\377CCC\377\363\363\363\377\354\354\354\377\343\343\343\377OO" - "O\377jjj\377\306\306\306\377\306\306\306\377\365\365\365\377\344\344" - "\344\377\310\310\310\377\0\0\0\377\0\0\0-\0\0\0\21\0\0\0\2\0\0\0\0\0" - "\0\0\2\0\0\0\377\377\377\377\377\365\365\365\377\365\365\365\377\344" - "\344\344\377ccc\377\377\377\377\377\271\271\271\377OOO\377\360\360\360" - "\377OOO\377\225\225\225\377\306\306\306\377sss\377\306\306\306\377\365" - "\365\365\377\344\344\344\377\310\310\310\377\0\0\0\377\0\0\0-\0\0\0\21" - "\0\0\0\2\0\0\0\0\0\0\0\2\0\0\0\377\377\377\377\377\373\373\373\377\344" - "\344\344\377ccc\377\377\377\377\377\365\365\365\377\344\344\344\377\324" - "\324\324\377OOO\377\254\254\254\377\306\306\306\377\344\344\344\377\344" - "\344\344\377|||\377\344\344\344\377\344\344\344\377\310\310\310\377\0" - "\0\0\377\0\0\0-\0\0\0\21\0\0\0\2\0\0\0\0\0\0\0\2\0\0\0\377\377\377\377" - "\377\344\344\344\377sss\377\377\377\377\377\365\365\365\377\365\365\365" - "\377\365\365\365\377\365\365\365\377\344\344\344\377\344\344\344\377" - "\365\365\365\377\365\365\365\377\365\365\365\377\344\344\344\377|||\377" - "\344\344\344\377\310\310\310\377\0\0\0\377\0\0\0-\0\0\0\21\0\0\0\2\0" - "\0\0\0\0\0\0\2\0\0\0\377\377\377\377\377|||\377\377\377\377\377\344\344" - "\344\377\344\344\344\377\344\344\344\377\344\344\344\377\344\344\344" - "\377\344\344\344\377\344\344\344\377\344\344\344\377\344\344\344\377" - "\344\344\344\377\344\344\344\377\344\344\344\377|||\377\310\310\310\377" - "\0\0\0\377\0\0\0-\0\0\0\21\0\0\0\2\0\0\0\0\0\0\0\2\0\0\0\377sss\377\274" - "\274\274\377\274\274\274\377\274\274\274\377\274\274\274\377\274\274" - "\274\377\274\274\274\377\274\274\274\377\274\274\274\377\274\274\274" - "\377\274\274\274\377\274\274\274\377\274\274\274\377\274\274\274\377" - "\274\274\274\377\274\274\274\377ccc\377\0\0\0\377\0\0\0-\0\0\0\21\0\0" - "\0\2\0\0\0\0\0\0\0\2\0\0\0m\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0" - "\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377" - "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\207" - "\0\0\0(\0\0\0\17\0\0\0\2\0\0\0\0\0\0\0\1\0\0\0\10\0\0\0\31\0\0\0(\0\0" - "\0-\0\0\0-\0\0\0-\0\0\0-\0\0\0-\0\0\0-\0\0\0-\0\0\0-\0\0\0-\0\0\0-\0" - "\0\0-\0\0\0-\0\0\0-\0\0\0-\0\0\0-\0\0\0(\0\0\0\31\0\0\0\10\0\0\0\1\0" - "\0\0\0\0\0\0\0\0\0\0\2\0\0\0\10\0\0\0\16\0\0\0\21\0\0\0\21\0\0\0\21\0" - "\0\0\21\0\0\0\21\0\0\0\21\0\0\0\21\0\0\0\21\0\0\0\21\0\0\0\21\0\0\0\21" - "\0\0\0\21\0\0\0\21\0\0\0\21\0\0\0\21\0\0\0\16\0\0\0\10\0\0\0\2\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0" - "\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0" - "\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\2\0\0\0\1\0\0\0\0\0\0\0\0"}; - - -/* GdkPixbuf RGBA C-Source image dump */ - -#ifdef __SUNPRO_C -#pragma align 4 (stock_menu_about) -#endif -#ifdef __GNUC__ -static const guint8 stock_menu_about[] __attribute__ ((__aligned__ (4))) = -#else -static const guint8 stock_menu_about[] = -#endif -{ "" - /* Pixbuf magic (0x47646b50) */ - "GdkP" - /* length: header (24) + pixel_data (1024) */ - "\0\0\4\30" - /* pixdata_type (0x1010002) */ - "\1\1\0\2" - /* rowstride (64) */ - "\0\0\0@" - /* width (16) */ - "\0\0\0\20" - /* height (16) */ - "\0\0\0\20" - /* pixel_data: */ - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0!\"\10\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0LN\23l\0\0\0\377\25\26\6#\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\11\0\0\0\377\356\366>\377\0\0\0\377\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\20\21\4\7dg\32" - "x\0\0\0\377\0\0\0\377\352\361=\377\360\370\77\377\313\3225\370\0\0\0" - "\377\0\0\0\377JL\23k\0\0\0\0\20\21\4\0dg\32\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\34\35\7\0\0\0\0\377\360\370\77\377\360\370\77\377\360\370\77\377\360" - "\370\77\377\360\370\77\377\360\370\77\377\351\360=\377\0\0\0\377\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\37\37\10%\0\0\0" - "\377\360\370\77\377\360\370\77\377\360\370\77\377\360\370\77\377\345" - "\354<\377\0\0\0\377\5\5\1\7\0\0\0\0\0\0\0\0\37\37\10\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\350\360=\377\360\370\77\377\360" - "\370\77\377\360\370\77\377\253\260-\372\0\0\0\377\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\360\370" - "\77\377\354\363>\377\0\0\0\377\357\367\77\377\316\3266\377\0\0\0\377" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\377\264\272/\363\0\0\0\377\30\30\6\77\0\0\0\377\315\3245\375" - "\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\36\37\10g\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377" - "\26\27\5F\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0"}; - - -/* GdkPixbuf RGBA C-Source image dump */ - -#ifdef __SUNPRO_C -#pragma align 4 (stock_menu_blank) -#endif -#ifdef __GNUC__ -static const guint8 stock_menu_blank[] __attribute__ ((__aligned__ (4))) = -#else -static const guint8 stock_menu_blank[] = -#endif -{ "" - /* Pixbuf magic (0x47646b50) */ - "GdkP" - /* length: header (24) + pixel_data (1024) */ - "\0\0\4\30" - /* pixdata_type (0x1010002) */ - "\1\1\0\2" - /* rowstride (64) */ - "\0\0\0@" - /* width (16) */ - "\0\0\0\20" - /* height (16) */ - "\0\0\0\20" - /* pixel_data: */ - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0"}; - - -/* GdkPixbuf RGBA C-Source image dump */ - -#ifdef __SUNPRO_C -#pragma align 4 (stock_scores) -#endif -#ifdef __GNUC__ -static const guint8 stock_scores[] __attribute__ ((__aligned__ (4))) = -#else -static const guint8 stock_scores[] = -#endif -{ "" - /* Pixbuf magic (0x47646b50) */ - "GdkP" - /* length: header (24) + pixel_data (2304) */ - "\0\0\11\30" - /* pixdata_type (0x1010002) */ - "\1\1\0\2" - /* rowstride (96) */ - "\0\0\0`" - /* width (24) */ - "\0\0\0\30" - /* height (24) */ - "\0\0\0\30" - /* pixel_data: */ - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0\3\0\0\0\4\0\0\0\4\0\0\0\4\0\0" - "\0\3\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\215\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0" - "\0\227\0\0\0\22\0\0\0\6\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\2\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377" - "\377\377\377\341\341\341\377\0\0\0\377\0\0\0""2\0\0\0\22\0\0\0\2\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\3\0\0\0\377\377\377\377\377\353" - "\353\353\377\0\0\0\377\355\355\355\377\322\322\322\377\0\0\0\377\0\0" - "\0L\0\0\0\34\0\0\0\4\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\4\0\0" - "\0\377\377\377\377\377\0\0\0\377\0\0\0\377\356\356\356\377\322\322\322" - "\377\0\0\0\377\0\0\0T\0\0\0\40\0\0\0\4\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0\3\0" - "\0\0\4\0\0\0\10\0\0\0\377\377\377\377\377\355\355\355\377\0\0\0\377\357" - "\357\357\377\323\323\323\377\0\0\0\377\0\0\0U\0\0\0\40\0\0\0\4\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\215\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\377\377\377" - "\377\356\356\356\377\0\0\0\377\360\360\360\377\324\324\324\377\0\0\0" - "\377\0\0\0W\0\0\0$\0\0\0\10\0\0\0\4\0\0\0\3\0\0\0\2\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0\377\377\377\377\377\377\377\377" - "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" - "\0\0\0\377\0\0\0\377\0\0\0\377\325\325\325\377\0\0\0\377\0\0\0\377\0" - "\0\0\377\0\0\0\377\0\0\0\377\0\0\0\205\0\0\0\20\0\0\0\5\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\3\0\0\0\377\377\377\377\377\0\0\0\377\0\0\0" - "\377\0\0\0\377\355\355\355\377\356\356\356\377\357\357\357\377\361\361" - "\361\377\362\362\362\377\363\363\363\377\377\377\377\377\377\377\377" - "\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0" - "1\0\0\0\21\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\377\377\377" - "\377\377\353\353\353\377\354\354\354\377\0\0\0\377\356\356\356\377\357" - "\357\357\377\360\360\360\377\361\361\361\377\363\363\363\377\364\364" - "\364\377\365\365\365\377\0\0\0\377\0\0\0\377\0\0\0\377\333\333\333\377" - "\0\0\0\377\0\0\0K\0\0\0\34\0\0\0\4\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\4\0" - "\0\0\377\377\377\377\377\0\0\0\377\0\0\0\377\0\0\0\377\357\357\357\377" - "\360\360\360\377\361\361\361\377\362\362\362\377\363\363\363\377\365" - "\365\365\377\366\366\366\377\367\367\367\377\370\370\370\377\0\0\0\377" - "\334\334\334\377\0\0\0\377\0\0\0T\0\0\0\40\0\0\0\4\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\4\0\0\0\377\377\377\377\377\0\0\0\377\356\356\356\377\357" - "\357\357\377\360\360\360\377\361\361\361\377\362\362\362\377\363\363" - "\363\377\364\364\364\377\365\365\365\377\367\367\367\377\370\370\370" - "\377\0\0\0\377\0\0\0\377\335\335\335\377\0\0\0\377\0\0\0U\0\0\0\40\0" - "\0\0\4\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\377\377\377\377\377\0\0" - "\0\377\0\0\0\377\0\0\0\377\361\361\361\377\362\362\362\377\363\363\363" - "\377\364\364\364\377\365\365\365\377\366\366\366\377\367\367\367\377" - "\371\371\371\377\372\372\372\377\0\0\0\377\336\336\336\377\0\0\0\377" - "\0\0\0U\0\0\0\40\0\0\0\4\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\377\377" - "\377\377\377\357\357\357\377\360\360\360\377\361\361\361\377\362\362" - "\362\377\363\363\363\377\364\364\364\377\365\365\365\377\366\366\366" - "\377\367\367\367\377\370\370\370\377\0\0\0\377\0\0\0\377\0\0\0\377\337" - "\337\337\377\0\0\0\377\0\0\0U\0\0\0\40\0\0\0\4\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\4\0\0\0\377\341\341\341\377\323\323\323\377\324\324\324\377" - "\325\325\325\377\326\326\326\377\327\327\327\377\330\330\330\377\331" - "\331\331\377\331\331\331\377\332\332\332\377\333\333\333\377\334\334" - "\334\377\335\335\335\377\337\337\337\377\340\340\340\377\0\0\0\377\0" - "\0\0T\0\0\0\40\0\0\0\4\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\254\0\0" - "\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0" - "\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377" - "\0\0\0\377\0\0\0\273\0\0\0L\0\0\0\34\0\0\0\4\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\2\0\0\0\23\0\0\0""5\0\0\0M\0\0\0T\0\0\0U\0\0\0U\0\0\0U\0\0\0U" - "\0\0\0U\0\0\0U\0\0\0U\0\0\0U\0\0\0U\0\0\0U\0\0\0U\0\0\0T\0\0\0L\0\0\0" - "2\0\0\0\22\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\6\0\0\0\23\0" - "\0\0\35\0\0\0\40\0\0\0\40\0\0\0\40\0\0\0\40\0\0\0\40\0\0\0\40\0\0\0\40" - "\0\0\0\40\0\0\0\40\0\0\0\40\0\0\0\40\0\0\0\40\0\0\0\37\0\0\0\34\0\0\0" - "\22\0\0\0\6\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\2\0" - "\0\0\3\0\0\0\4\0\0\0\4\0\0\0\4\0\0\0\4\0\0\0\4\0\0\0\4\0\0\0\4\0\0\0" - "\4\0\0\0\4\0\0\0\4\0\0\0\4\0\0\0\4\0\0\0\4\0\0\0\3\0\0\0\2\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0"}; - - -/* GdkPixbuf RGBA C-Source image dump */ - -#ifdef __SUNPRO_C -#pragma align 4 (stock_mic) -#endif -#ifdef __GNUC__ -static const guint8 stock_mic[] __attribute__ ((__aligned__ (4))) = -#else -static const guint8 stock_mic[] = -#endif -{ "" - /* Pixbuf magic (0x47646b50) */ - "GdkP" - /* length: header (24) + pixel_data (2304) */ - "\0\0\11\30" - /* pixdata_type (0x1010002) */ - "\1\1\0\2" - /* rowstride (96) */ - "\0\0\0`" - /* width (24) */ - "\0\0\0\30" - /* height (24) */ - "\0\0\0\30" - /* pixel_data: */ - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0<\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0<\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0<RRR\377\332" - "\332\333\377\372\372\373\377\361\361\363\377\370\370\371\377\335\334" - "\335\377\0\0\0\377\0\0\0E\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\377\332\331\332\377\363\362\365\377\326\325\334\377\350" - "\350\353\377\267\265\275\377\324\322\327\377ifl\377\0\0\0\377\0\0\0\13" - "\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\372\372\373\377" - "\334\334\342\377\354\353\356\377\301\277\307\377\330\326\333\377\220" - "\217\226\377\214\212\217\377\0\0\0\377\0\0\0\26\0\0\0\4\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\363\361\364\377\357\357\362\377\312" - "\307\321\377\337\336\343\377\235\234\244\377\275\273\301\377CBF\377\0" - "\0\0\377\0\0\0\31\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0I\0\0\0]\0\0\0\1\0\0\0\377" - "\372\372\372\377\324\322\331\377\350\346\353\377\261\260\272\377\311" - "\307\316\377tqz\377qpv\377\0\0\0\377\0\0\0\31\0\0\0_\0\0\0J\0\0\0\1\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "]\0\0\0\377\0\0\0\377\0\0\0\377\361\360\363\377\355\354\360\377\303\301" - "\312\377\330\326\335\377\214\211\225\377\250\246\257\377226\377\0\0\0" - "\377\0\0\0\377\0\0\0\377\0\0\0b\0\0\0\7\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\377\0\0\0\26\0\0\0\377" - "\371\371\372\377\317\316\326\377\344\342\347\377\250\247\261\377\303" - "\301\310\377ebl\377aae\377\0\0\0\377\0\0\0\34\0\0\0\377\0\0\0\27\0\0" - "\0\12\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\377\0\0\0\25\0\0\0\377\360\356\361\377\353\352\356\377" - "\276\273\306\377\325\324\332\377\204\200\214\377\236\235\246\377-,0\377" - "\0\0\0\377\0\0\0\32\0\0\0\377\0\0\0\25\0\0\0\6\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\0\0\0\24" - "\0\0\0\377\370\370\371\377\312\307\321\377\337\336\342\377\234\232\244" - "\377\270\266\276\377YW_\377][a\377\0\0\0\377\0\0\0\31\0\0\0\377\0\0\0" - "\24\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\377\0\0\0\24\0\0\0\377\354\352\355\377\343\342\346" - "\377\250\247\260\377\307\305\314\377rqx\377\222\220\231\377(&*\377\0" - "\0\0\377\0\0\0\31\0\0\0\377\0\0\0\24\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\0\0\0\24\0" - "\0\0\377\350\347\352\377\265\263\272\377\314\314\322\377\205\204\212" - "\377\245\244\253\377JIO\377MLQ\377\0\0\0\377\0\0\0\31\0\0\0\377\0\0\0" - "\24\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\377\0\0\0\24\0\0\0C\0\0\0\377\206\204\210\37776" - ":\377aac\377$#&\377DDI\377\0\0\0\377\0\0\0\232\0\0\0\30\0\0\0\377\0\0" - "\0\24\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\377\0\0\0\24\0\0\0\6\0\0\0D\0\0\0\377\0\0\0\377" - "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\232\0\0\0\32\0\0\0\17\0\0\0\377" - "\0\0\0\24\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0k\0\0\0\206\0\0\0\6\0\0\0\3\0\0\0\13\0\0\0" - "\26\0\0\0{\0\0\0\32\0\0\0\31\0\0\0\27\0\0\0\17\0\0\0\200\0\0\0m\0\0\0" - "\22\0\0\0\4\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\2\0\0\0o\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377" - "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0m\0\0\0\13\0" - "\0\0\13\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\3\0\0\0\13\0\0\0\22\0\0\0\24KKK\377" - "aaa\377\0\0\0\377\0\0\0\30\0\0\0\25\0\0\0\24\0\0\0\22\0\0\0\13\0\0\0" - "\3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0\4\0\0\0\5KKK\377\177\177" - "\177\377\0\0\0\377\0\0\0m\0\0\0;\0\0\0\6\0\0\0\5\0\0\0\2\0\0\0\33\0\0" - "\0]\0\0\0\34\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0KKK\377\177\177\177\377" - "\0\0\0\377\0\0\0\32\0\0\0\12\0\0\0L\0\0\0\2\0\0\0\0\0\0\0I\0\0\0\4\0" - "\0\0M\0\0\0\37\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0""3\40\40\40\377hhh\377\0\0\0" - "\377\0\0\0G\0\0\0\7\0\0\0\2\0\0\0k\0\0\0]\0\0\0\2\0\0\0\5\0\0\0\3\0\0" - "\0l\0\0\0\4\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\\\0\0\0\377\0\0\0\377" - "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377gd[\377\0\0\0\377VRH\377\0\0" - "\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0`\0\0\0" - "\2\0\0\0o\0\0\0\7\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\33\33\33\377\257\255" - "\251\377\205\202{\377wtl\377VRH\377VRH\377VRH\377VRH\377VRH\377VRH\377" - "VRH\377VRH\377VRH\377LI@\377;:2\377\40\37\32\377\0\0\0\377\0\0\0\14\0" - "\0\0\37\0\0\0\7\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\0\0\0\377\0" - "\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377" - "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377" - "\0\0\0\377\0\0\0\27\0\0\0\5\0\0\0K\0\0\0W\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\4\0\0\0\25\0\0\0\31\0\0\0\31\0\0\0\31\0\0\0\31\0\0\0\31\0\0\0\31\0" - "\0\0\31\0\0\0\31\0\0\0\31\0\0\0\31\0\0\0\31\0\0\0\31\0\0\0\31\0\0\0\31" - "\0\0\0\31\0\0\0\25\0\0\0\4\0\0\0\1\0\0\0\5"}; - - -/* GdkPixbuf RGBA C-Source image dump */ - -#ifdef __SUNPRO_C -#pragma align 4 (stock_multiple_file) -#endif -#ifdef __GNUC__ -static const guint8 stock_multiple_file[] __attribute__ ((__aligned__ (4))) = -#else -static const guint8 stock_multiple_file[] = -#endif -{ "" - /* Pixbuf magic (0x47646b50) */ - "GdkP" - /* length: header (24) + pixel_data (4096) */ - "\0\0\20\30" - /* pixdata_type (0x1010002) */ - "\1\1\0\2" - /* rowstride (128) */ - "\0\0\0\200" - /* width (32) */ - "\0\0\0\40" - /* height (32) */ - "\0\0\0\40" - /* pixel_data: */ - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377" - "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377" - "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377" - "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\33\0\0\0\14\0\0\0\2\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377" - "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" - "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" - "\377\377\377\377\377\377\377\377\377\377\377\377\377\340\340\340\377" - "\301\301\301\377\0\0\0\377\0\0\0+\0\0\0\16\0\0\0\3\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\377\377\377\377\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377" - "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377" - "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0-\0" - "\0\0\16\0\0\0\3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\377\377\0\0\0\377\377\377\377\377" - "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" - "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" - "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" - "\377\377\377\377\377\340\340\340\377\301\301\301\377\0\0\0\377\0\0\0" - "-\0\0\0\16\0\0\0\3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\377\377\377\377\377\0\0\0\377\377\377\377\377\377" - "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" - "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" - "\377\377\377\377\377\377\377\377\377\375\375\375\377\373\373\373\377" - "\372\372\371\377\303\303\303\377\373\373\373\377\250\250\250\377\0\0" - "\0\377\0\0\0-\0\0\0\20\0\0\0\6\0\0\0\4\0\0\0\3\0\0\0\1\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\377\377\0\0\0\377\377\377\377\377" - "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0" - "\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0" - "\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377" - "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\33\0\0\0\14\0\0\0\2\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\377\377\377\377\0\0\0\377\377\377\377" - "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" - "\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" - "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" - "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" - "\377\377\377\377\377\377\377\377\377\377\377\340\340\340\377\301\301" - "\301\377\0\0\0\377\0\0\0+\0\0\0\16\0\0\0\3\0\0\0\0\0\0\0\0\0\0\0\377" - "\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377" - "\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377" - "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" - "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" - "\377\377\377\377\377\377\377\377\375\375\375\377\373\373\373\377\372" - "\372\371\377\303\303\303\377\373\373\373\377\250\250\250\377\0\0\0\377" - "\0\0\0-\0\0\0\16\0\0\0\3\0\0\0\0\0\0\0\377\377\377\377\377\0\0\0\377" - "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" - "\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\321\321\321\377" - "\252\252\252\377\323\323\323\377\377\377\377\377\323\323\323\377\377" - "\377\377\377\252\252\252\377\252\252\252\377\375\375\375\377\320\320" - "\320\377\372\372\372\377\371\371\370\377\367\367\366\377\255\255\255" - "\377vvv\377]]]\377@@@\377\0\0\0\377\0\0\0+\0\0\0\14\0\0\0\0\0\0\0\377" - "\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377" - "\377\375\375\375\377\374\374\374\377\0\0\0\377\377\377\377\377\377\377" - "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" - "\377\377\377\377\377\377\377\377\377\376\376\376\377\374\374\374\377" - "\373\373\372\377\371\371\371\377\367\367\367\377\366\366\365\377\364" - "\364\364\377\342\342\342\377\205\205\205\377KKI\377\26\26\26\377\0\0" - "\0\377\0\0\0N\0\0\0\33\0\0\0\0\0\0\0\377\377\377\377\377\0\0\0\377\377" - "\377\377\377\376\376\376\377\374\374\374\377\373\373\372\377\371\371" - "\371\377\0\0\0\377\377\377\377\377\377\377\377\377\252\252\252\377\271" - "\271\271\377\323\323\323\377\323\323\323\377\376\376\376\377\250\250" - "\250\377\236\236\236\377\235\235\235\377\245\245\244\377\366\366\366" - "\377\243\243\242\377\311\311\310\377\362\362\361\377\360\360\357\377" - "\356\356\355\377\355\355\353\377\235\235\235\377\0\0\0\377\0\0\0]\0\0" - "\0#\0\0\0\0\0\0\0\377\377\377\377\377\0\0\0\377\377\377\377\377\373\373" - "\373\377\371\371\371\377\370\370\367\377\366\366\366\377\0\0\0\377\377" - "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" - "\377\377\375\375\375\377\373\373\373\377\372\372\371\377\370\370\370" - "\377\367\367\366\377\365\365\364\377\364\364\363\377\362\362\361\377" - "\360\360\357\377\357\357\356\377\355\355\354\377\354\354\352\377\352" - "\352\350\377\244\244\243\377\0\0\0\377\0\0\0_\0\0\0$\0\0\0\0\0\0\0\377" - "\377\377\377\377\0\0\0\377\377\377\377\377\370\370\370\377\367\367\366" - "\377\365\365\364\377\364\364\363\377\0\0\0\377\377\377\377\377\377\377" - "\377\377\252\252\252\377\321\321\321\377\374\374\374\377\316\316\316" - "\377\371\371\370\377\244\244\244\377\243\243\243\377\232\232\231\377" - "\257\257\256\377\361\361\360\377\237\237\236\377rrq\377\225\225\224\377" - "\223\223\223\377\351\351\347\377\347\347\346\377\244\244\244\377\0\0" - "\0\377\0\0\0_\0\0\0$\0\0\0\0\0\0\0\377\377\377\377\377\0\0\0\377\377" - "\377\377\377\365\365\365\377\364\364\363\377\362\362\361\377\361\361" - "\360\377\0\0\0\377\377\377\377\377\376\376\376\377\374\374\374\377\373" - "\373\372\377\371\371\371\377\367\367\367\377\366\366\365\377\364\364" - "\364\377\363\363\362\377\361\361\360\377\360\360\356\377\356\356\355" - "\377\354\354\353\377\353\353\351\377\351\351\350\377\350\350\346\377" - "\346\346\344\377\345\345\343\377\242\242\242\377\0\0\0\377\0\0\0_\0\0" - "\0$\0\0\0\0\0\0\0\377\377\377\377\377\0\0\0\377\377\377\377\377\363\363" - "\362\377\361\361\360\377\360\360\356\377\356\356\355\377\0\0\0\377\377" - "\377\377\377\373\373\373\377\264\264\264\377\263\263\263\377\366\366" - "\366\377\261\261\261\377\260\260\257\377\230\230\230\377\227\227\226" - "\377\356\356\355\377oon\377nnn\377nnm\377mml\377llk\377kkj\377\343\343" - "\341\377\342\342\340\377\242\242\242\377\0\0\0\377\0\0\0_\0\0\0$\0\0" - "\0\0\0\0\0\377\377\377\377\377\0\0\0\377\377\377\377\377\360\360\357" - "\377\356\356\355\377\355\355\353\377\353\353\352\377\0\0\0\377\377\377" - "\377\377\370\370\370\377\367\367\366\377\365\365\364\377\364\364\363" - "\377\362\362\361\377\360\360\357\377\357\357\356\377\355\355\354\377" - "\354\354\352\377nnm\377\207\226\245\377\206\226\244\377\205\225\243\377" - "\205\224\243\377jji\377\341\341\336\377\337\337\335\377\243\243\242\377" - "\0\0\0\377\0\0\0_\0\0\0$\0\0\0\0\0\0\0\377\377\377\377\377\0\0\0\377" - "\377\377\377\377\355\355\354\377\354\354\352\377\352\352\350\377\351" - "\351\347\377\0\0\0\377\377\377\377\377\365\365\365\377\261\261\260\377" - "\230\230\230\377\307\307\306\377\305\305\304\377\356\356\354\377\303" - "\303\302\377\301\301\300\377\351\351\347\377lll\377\217\236\254\377\275" - "\270\225\377p|i\377\214\233\252\377iih\377\336\336\333\377\334\334\332" - "\377\243\243\242\377\0\0\0\377\0\0\0_\0\0\0$\0\0\0\0\0\0\0\377\377\377" - "\377\377\0\0\0\377\377\377\377\377\352\352\351\377\351\351\347\377\347" - "\347\346\377\346\346\344\377\0\0\0\377\377\377\377\377\363\363\362\377" - "\361\361\360\377\360\360\356\377\356\356\355\377\354\354\353\377\353" - "\353\351\377\351\351\350\377\350\350\346\377\346\346\344\377kkj\377\226" - "\245\264\377\323\307\215\377\237\234d\377o\177w\377hhf\377\333\333\330" - "\377\332\332\327\377\240\240\237\377\0\0\0\377\0\0\0_\0\0\0$\0\0\0\0" - "\0\0\0\377\377\377\377\377\0\0\0\377\377\377\377\377\350\350\346\377" - "\346\346\344\377\345\345\343\377\343\343\341\377\0\0\0\377\377\377\377" - "\377\360\360\357\377\243\243\242\377\225\225\224\377\224\224\223\377" - "\251\251\250\377\232\232\231\377\247\247\246\377\275\275\273\377\343" - "\343\341\377jji\377\235\254\273\377\315\304\226\377fsW\377\233\252\271" - "\377ffe\377\330\330\325\377\327\327\324\377\242\242\241\377\0\0\0\377" - "\0\0\0_\0\0\0$\0\0\0\0\0\0\0\377\377\377\377\377\0\0\0\377\377\377\377" - "\377\345\345\343\377\343\343\341\377\342\342\340\377\340\340\336\377" - "\0\0\0\377\377\377\377\377\355\355\354\377\354\354\352\377\352\352\350" - "\377\351\351\347\377\347\347\345\377\345\345\343\377\344\344\342\377" - "\342\342\340\377\341\341\336\377hhh\377\245\264\303\377\313\305\235\377" - "l}o\377o\200s\377eec\377\326\326\322\377\324\324\321\377\242\242\241" - "\377\0\0\0\377\0\0\0_\0\0\0$\0\0\0\0\0\0\0\377\377\377\377\377\0\0\0" - "\377\377\377\377\377\342\342\340\377\341\341\336\377\337\337\335\377" - "\336\336\333\377\0\0\0\377\377\377\377\377\352\352\351\377\233\233\232" - "\377\215\215\214\377\346\346\344\377\274\274\273\377\217\217\215\377" - "\216\216\214\377\271\271\266\377\336\336\333\377ggf\377gge\377ffd\377" - "eed\377ddc\377ddb\377\323\323\320\377\321\321\316\377\241\241\240\377" - "\0\0\0\377\0\0\0_\0\0\0$\0\0\0\0\0\0\0\377\320\320\320\377\0\0\0\377" - "\377\377\377\377\340\340\335\377\336\336\333\377\334\334\332\377\333" - "\333\330\377\0\0\0\377\377\377\377\377\350\350\346\377\346\346\344\377" - "\345\345\343\377\343\343\341\377\341\341\337\377\340\340\336\377\336" - "\336\334\377\335\335\332\377\333\333\330\377\332\332\327\377\330\330" - "\325\377\326\326\323\377\325\325\322\377\323\323\320\377\322\322\316" - "\377\320\320\315\377\317\317\313\377\240\240\237\377\0\0\0\377\0\0\0" - "_\0\0\0$\0\0\0\0\0\0\0\377\0\0\0\377\0\0\0\377\377\377\377\377\335\335" - "\332\377\333\333\330\377\332\332\327\377\330\330\325\377\0\0\0\377\377" - "\377\377\377\345\345\343\377\227\227\226\377\216\216\215\377\215\215" - "\214\377\214\214\212\377\335\335\333\377\222\222\220\377\236\236\233" - "\377\234\234\232\377\207\207\205\377\325\325\322\377\257\257\254\377" - "\230\230\226\377\213\213\210\377\253\253\247\377\315\315\312\377\314" - "\314\310\377\242\242\241\377\0\0\0\377\0\0\0_\0\0\0$\0\0\0\0\0\0\0\40" - "\0\0\0T\0\0\0\377\320\320\320\377\261\261\257\377\264\264\263\377\264" - "\264\261\377\240\240\235\377\0\0\0\377\377\377\377\377\342\342\340\377" - "\341\341\336\377\337\337\335\377\336\336\333\377\334\334\331\377\332" - "\332\330\377\331\331\326\377\327\327\324\377\326\326\322\377\324\324" - "\321\377\323\323\317\377\321\321\315\377\317\317\314\377\316\316\312" - "\377\314\314\310\377\314\314\307\377\314\314\307\377\242\242\240\377" - "\0\0\0\377\0\0\0_\0\0\0$\0\0\0\0\0\0\0\12\0\0\0\37\0\0\0\377\0\0\0\377" - "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\377\377\377\377\340" - "\340\335\377\224\224\222\377\266\266\264\377\333\333\330\377\235\235" - "\233\377\210\210\206\377\326\326\323\377\325\325\321\377\214\214\212" - "\377\217\217\215\377\203\203\200\377\316\316\312\377\224\224\221\377" - "\224\224\220\377\314\314\307\377\314\314\307\377\314\314\307\377\237" - "\237\237\377\0\0\0\377\0\0\0_\0\0\0$\0\0\0\0\0\0\0\2\0\0\0\10\0\0\0%" - "\0\0\0T\0\0\0j\0\0\0m\0\0\0m\0\0\0o\0\0\0\377\377\377\377\377\335\335" - "\332\377\333\333\330\377\332\332\327\377\330\330\325\377\326\326\323" - "\377\325\325\322\377\323\323\320\377\322\322\316\377\320\320\315\377" - "\317\317\313\377\315\315\311\377\314\314\307\377\314\314\307\377\314" - "\314\307\377\314\314\307\377\314\314\307\377\314\314\307\377\240\240" - "\237\377\0\0\0\377\0\0\0_\0\0\0$\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\13\0\0" - "\0\34\0\0\0&\0\0\0(\0\0\0(\0\0\0,\0\0\0\377\320\320\320\377\261\261\257" - "\377\264\264\263\377\264\264\261\377\240\240\235\377\240\240\235\377" - "\237\237\235\377\237\237\235\377\237\237\233\377\231\231\225\377\215" - "\215\211\377\213\213\211\377\213\213\211\377\213\213\211\377\211\211" - "\211\377\211\211\211\377\203\203\177\377\204\204\202\377]]\\\377\0\0" - "\0\377\0\0\0^\0\0\0$\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0\4\0\0\0\6" - "\0\0\0\7\0\0\0\7\0\0\0\13\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0" - "\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0" - "\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377" - "\0\0\0\377\0\0\0\377\0\0\0\263\0\0\0T\0\0\0\37\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0!\0\0\0S\0\0" - "\0i\0\0\0m\0\0\0m\0\0\0m\0\0\0n\0\0\0n\0\0\0n\0\0\0n\0\0\0n\0\0\0n\0" - "\0\0n\0\0\0n\0\0\0n\0\0\0n\0\0\0n\0\0\0n\0\0\0n\0\0\0l\0\0\0`\0\0\0:" - "\0\0\0\23\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\1\0\0\0\12\0\0\0\34\0\0\0&\0\0\0(\0\0\0(\0\0\0(\0\0\0)\0\0" - "\0)\0\0\0)\0\0\0)\0\0\0)\0\0\0)\0\0\0)\0\0\0)\0\0\0)\0\0\0)\0\0\0)\0" - "\0\0)\0\0\0)\0\0\0(\0\0\0#\0\0\0\25\0\0\0\7\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0\4\0\0\0" - "\6\0\0\0\7\0\0\0\7\0\0\0\7\0\0\0\7\0\0\0\7\0\0\0\7\0\0\0\7\0\0\0\7\0" - "\0\0\7\0\0\0\7\0\0\0\7\0\0\0\7\0\0\0\7\0\0\0\7\0\0\0\7\0\0\0\7\0\0\0" - "\7\0\0\0\6\0\0\0\4\0\0\0\1"}; - - -/* GdkPixbuf RGBA C-Source image dump */ - -#ifdef __SUNPRO_C -#pragma align 4 (stock_not) -#endif -#ifdef __GNUC__ -static const guint8 stock_not[] __attribute__ ((__aligned__ (4))) = -#else -static const guint8 stock_not[] = -#endif -{ "" - /* Pixbuf magic (0x47646b50) */ - "GdkP" - /* length: header (24) + pixel_data (2304) */ - "\0\0\11\30" - /* pixdata_type (0x1010002) */ - "\1\1\0\2" - /* rowstride (96) */ - "\0\0\0`" - /* width (24) */ - "\0\0\0\30" - /* height (24) */ - "\0\0\0\30" - /* pixel_data: */ - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0b\0\0\0\260\0\0\0\342" - "\0\0\0\373\0\0\0\373\0\0\0\343\0\0\0\263\0\0\0j\0\0\0\13\0\0\0\5\0\0" - "\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0b\0\0\0\341n\35\15\377\2670\25\377\315" - "4\27\377\3173\27\377\3152\26\377\310/\25\377\260(\22\377h\27\12\377\0" - "\0\0\345\0\0\0o\0\0\0\14\0\0\0\4\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\225K\24\11\377\3105\27\377" - "\3237\31\377\3215\30\377\3173\27\377\3151\26\377\3140\25\377\312.\25" - "\377\310,\24\377\306+\23\377\270'\21\377D\16\5\377\0\0\0\243\0\0\0\24" - "\0\0\0\6\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0" - "\0\225o\36\15\377\3238\31\377\3236\30\377\331_H\377\361\317\311\377\371" - "\364\363\377\371\371\371\377\364\353\352\377\350\273\265\377\325vj\377" - "\307\77-\377\302'\21\377\300%\21\377c\22\10\377\0\0\0\246\0\0\0\26\0" - "\0\0\6\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0bK\24\11\377\323" - "8\31\377\3226\30\377\353\261\246\377\372\372\372\377\372\372\372\377" - "\372\372\372\377\371\371\371\377\370\370\370\377\370\370\370\377\355" - "\324\320\377\277#\20\377\277#\20\377\276#\20\377\274!\17\377B\13\5\377" - "\0\0\0|\0\0\0\24\0\0\0\4\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\341\307" - "4\27\377\3226\30\377\353\261\246\377\373\373\373\377\372\372\372\377" - "\372\372\372\377\371\371\371\377\370\370\370\377\370\370\370\377\355" - "\324\320\377\277#\20\377\277#\20\377\277#\20\377\277#\20\377\272\37\16" - "\377\255\34\14\377\0\0\0\351\0\0\0(\0\0\0\14\0\0\0\1\0\0\0\0\0\0\0\0" - "\0\0\0bm\34\14\377\3225\30\377\326WA\377\372\372\372\377\372\372\372" - "\377\372\372\372\377\371\371\371\377\370\370\370\377\370\370\370\377" - "\355\324\320\377\277#\20\377\277#\20\377\277#\20\377\277#\20\377\277" - "#\20\377\303C6\377\266\34\14\377^\16\5\377\0\0\0\204\0\0\0\31\0\0\0\5" - "\0\0\0\0\0\0\0\1\0\0\0\260\266.\24\377\3173\27\377\341\232\220\377\372" - "\372\372\377\371\371\371\377\371\371\371\377\370\370\370\377\370\370" - "\370\377\355\324\320\377\277#\20\377\277#\20\377\277#\20\377\277#\20" - "\377\277#\20\377\347\306\302\377\335\247\242\377\264\32\13\377\233\25" - "\11\377\0\0\0\304\0\0\0'\0\0\0\13\0\0\0\1\0\0\0\2\0\0\0\342\3132\26\377" - "\3151\26\377\353\306\302\377\371\371\371\377\371\371\371\377\370\370" - "\370\377\367\367\367\377\355\324\320\377\277#\20\377\277#\20\377\277" - "#\20\377\277#\20\377\277#\20\377\347\306\302\377\362\362\362\377\347" - "\312\306\377\262\30\12\377\255\26\12\377\0\0\0\352\0\0\0""4\0\0\0\22" - "\0\0\0\2\0\0\0\3\0\0\0\373\3141\26\377\313/\25\377\361\337\335\377\371" - "\371\371\377\370\370\370\377\367\367\367\377\355\324\320\377\277#\20" - "\377\277#\20\377\277#\20\377\277#\20\377\277#\20\377\347\306\302\377" - "\362\362\362\377\361\361\361\377\355\343\342\377\260\26\12\377\256\24" - "\11\377\0\0\0\374\0\0\0<\0\0\0\26\0\0\0\3\0\0\0\3\0\0\0\373\312/\25\377" - "\311-\24\377\361\337\335\377\370\370\370\377\367\367\367\377\355\324" - "\320\377\277#\20\377\277#\20\377\277#\20\377\277#\20\377\277#\20\377" - "\347\306\302\377\362\362\362\377\361\361\361\377\361\361\361\377\351" - "\327\325\377\256\24\11\377\254\22\10\377\0\0\0\374\0\0\0A\0\0\0\30\0" - "\0\0\3\0\0\0\3\0\0\0\343\305,\23\377\307+\23\377\347\272\265\377\367" - "\367\367\377\355\324\320\377\277#\20\377\277#\20\377\277#\20\377\277" - "#\20\377\277#\20\377\347\306\302\377\362\362\362\377\361\361\361\377" - "\361\361\361\377\360\360\360\377\346\321\316\377\255\22\10\377\247\20" - "\7\377\0\0\0\353\0\0\0A\0\0\0\30\0\0\0\3\0\0\0\3\0\0\0\263\255%\20\377" - "\305)\22\377\335\226\215\377\352\310\304\377\277#\20\377\277#\20\377" - "\277#\20\377\277#\20\377\277#\20\377\347\306\302\377\362\362\362\377" - "\361\361\361\377\361\361\361\377\360\360\360\377\357\357\357\377\333" - "\254\250\377\253\20\7\377\223\14\5\377\0\0\0\310\0\0\0=\0\0\0\26\0\0" - "\0\3\0\0\0\2\0\0\0jf\25\11\377\302'\21\377\307A1\377\277#\20\377\277" - "#\20\377\277#\20\377\277#\20\377\277#\20\377\347\305\301\377\362\362" - "\362\377\361\361\361\377\360\360\360\377\360\360\360\377\357\357\357" - "\377\356\356\356\377\267:3\377\250\16\6\377V\6\2\377\0\0\0\222\0\0\0" - "4\0\0\0\22\0\0\0\2\0\0\0\1\0\0\0\13\0\0\0\345\264#\20\377\277#\20\377" - "\277#\20\377\277#\20\377\277#\20\377\277#\20\377\347\305\301\377\362" - "\362\362\377\361\361\361\377\360\360\360\377\360\360\360\377\357\357" - "\357\377\356\356\356\377\321\223\217\377\250\16\6\377\233\13\5\377\0" - "\0\0\353\0\0\0I\0\0\0'\0\0\0\13\0\0\0\1\0\0\0\0\0\0\0\5\0\0\0oC\14\5" - "\377\274!\17\377\273\40\16\377\277#\20\377\277#\20\377\344\273\266\377" - "\362\362\362\377\361\361\361\377\360\360\360\377\360\360\360\377\357" - "\357\357\377\355\355\355\377\321\223\217\377\247\15\6\377\245\13\5\377" - "9\3\1\377\0\0\0\224\0\0\0;\0\0\0\31\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\1\0" - "\0\0\14\0\0\0\243a\20\7\377\270\36\15\377\267\34\14\377\300=1\377\326" - "\212\201\377\337\255\246\377\344\303\276\377\354\343\341\377\346\321" - "\316\377\332\253\247\377\26780\377\247\15\5\377\244\13\5\377U\5\1\377" - "\0\0\0\267\0\0\0F\0\0\0(\0\0\0\14\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\4\0\0\0\24\0\0\0\246@\12\3\377\251\31\12\377\263\30\13\377\261\26" - "\12\377\257\25\11\377\255\23\10\377\253\21\10\377\252\20\7\377\250\16" - "\6\377\246\14\5\377\232\12\4\3779\3\1\377\0\0\0\267\0\0\0I\0\0\0/\0\0" - "\0\24\0\0\0\4\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\6\0\0\0\26" - "\0\0\0|\0\0\0\351\\\13\5\377\230\22\10\377\252\23\10\377\253\21\7\377" - "\251\17\7\377\244\16\6\377\221\13\4\377U\5\2\377\0\0\0\353\0\0\0\224" - "\0\0\0F\0\0\0/\0\0\0\26\0\0\0\6\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\1\0\0\0\6\0\0\0\24\0\0\0(\0\0\0\204\0\0\0\304\0\0\0" - "\352\0\0\0\374\0\0\0\374\0\0\0\353\0\0\0\310\0\0\0\222\0\0\0I\0\0\0;" - "\0\0\0(\0\0\0\24\0\0\0\6\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\4\0\0\0\14\0\0\0\31\0\0\0'\0\0\0""4" - "\0\0\0<\0\0\0A\0\0\0A\0\0\0<\0\0\0""4\0\0\0'\0\0\0\31\0\0\0\14\0\0\0" - "\4\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\5\0\0\0\13\0\0\0\22\0\0\0\26\0\0" - "\0\30\0\0\0\30\0\0\0\26\0\0\0\22\0\0\0\13\0\0\0\5\0\0\0\1\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\2\0\0\0\3\0\0\0\3\0\0" - "\0\3\0\0\0\3\0\0\0\2\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0"}; - - -/* GdkPixbuf RGBA C-Source image dump */ - -#ifdef __SUNPRO_C -#pragma align 4 (stock_table_borders) -#endif -#ifdef __GNUC__ -static const guint8 stock_table_borders[] __attribute__ ((__aligned__ (4))) = -#else -static const guint8 stock_table_borders[] = -#endif -{ "" - /* Pixbuf magic (0x47646b50) */ - "GdkP" - /* length: header (24) + pixel_data (2304) */ - "\0\0\11\30" - /* pixdata_type (0x1010002) */ - "\1\1\0\2" - /* rowstride (96) */ - "\0\0\0`" - /* width (24) */ - "\0\0\0\30" - /* height (24) */ - "\0\0\0\30" - /* pixel_data: */ - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0" - "\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377" - "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377" - "\0\0\0\16\0\0\0\3\0\0\0\0\0\0\0\377\377\377\377\377\377\377\377\377\377" - "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" - "\377\377\377\377\377\377\377\377\377\377\375\375\375\377\377\377\377" - "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" - "\377\377\377\377\377\377\377\377\377\377\377\377\336\336\336\377\0\0" - "\0\377\0\0\0E\0\0\0\16\0\0\0\0\0\0\0\377\377\377\377\377\360\360\360" - "\377\360\360\360\377\360\360\360\377\360\360\360\377\360\360\360\377" - "\360\360\360\377\360\360\360\377\362\362\362\377nnn\377\363\363\363\377" - "\363\363\363\377\364\364\364\377\365\365\365\377\365\365\365\377\366" - "\366\366\377\366\366\366\377\367\367\367\377\346\346\346\377\0\0\0\377" - "\0\0\0R\0\0\0\20\0\0\0\0\0\0\0\377\377\377\377\377\360\360\360\377\360" - "\360\360\377\360\360\360\377\360\360\360\377\360\360\360\377\360\360" - "\360\377\360\360\360\377\362\362\362\377\362\362\362\377\363\363\363" - "\377\363\363\363\377\364\364\364\377\365\365\365\377\365\365\365\377" - "\366\366\366\377\366\366\366\377\367\367\367\377\346\346\346\377\0\0" - "\0\377\0\0\0R\0\0\0\20\0\0\0\0\0\0\0\377\377\377\377\377\360\360\360" - "\377\360\360\360\377\360\360\360\377\360\360\360\377\360\360\360\377" - "\360\360\360\377\361\361\361\377\362\362\362\377jjj\377\363\363\363\377" - "\364\364\364\377\365\365\365\377\365\365\365\377\366\366\366\377\366" - "\366\366\377\367\367\367\377\367\367\367\377\347\347\347\377\0\0\0\377" - "\0\0\0R\0\0\0\20\0\0\0\0\0\0\0\377\377\377\377\377\360\360\360\377\360" - "\360\360\377\360\360\360\377\360\360\360\377\360\360\360\377\361\361" - "\361\377\362\362\362\377\363\363\363\377\363\363\363\377\364\364\364" - "\377\365\365\365\377\365\365\365\377\366\366\366\377\366\366\366\377" - "\367\367\367\377\367\367\367\377\370\370\370\377\350\350\350\377\0\0" - "\0\377\0\0\0R\0\0\0\20\0\0\0\0\0\0\0\377\377\377\377\377\360\360\360" - "\377\360\360\360\377\360\360\360\377\360\360\360\377\361\361\361\377" - "\362\362\362\377\362\362\362\377\363\363\363\377kkk\377\365\365\365\377" - "\365\365\365\377\366\366\366\377\366\366\366\377\367\367\367\377\367" - "\367\367\377\370\370\370\377\371\371\371\377\350\350\350\377\0\0\0\377" - "\0\0\0R\0\0\0\20\0\0\0\0\0\0\0\377\377\377\377\377\360\360\360\377\360" - "\360\360\377\360\360\360\377\361\361\361\377\362\362\362\377\362\362" - "\362\377\363\363\363\377\364\364\364\377\365\365\365\377\365\365\365" - "\377\366\366\366\377\366\366\366\377\367\367\367\377\367\367\367\377" - "\370\370\370\377\371\371\371\377\371\371\371\377\351\351\351\377\0\0" - "\0\377\0\0\0R\0\0\0\20\0\0\0\0\0\0\0\377\377\377\377\377\360\360\360" - "\377\360\360\360\377\361\361\361\377\362\362\362\377\362\362\362\377" - "\363\363\363\377\363\363\363\377\365\365\365\377kkk\377\366\366\366\377" - "\366\366\366\377\367\367\367\377\367\367\367\377\370\370\370\377\371" - "\371\371\377\371\371\371\377\372\372\372\377\351\351\351\377\0\0\0\377" - "\0\0\0R\0\0\0\20\0\0\0\0\0\0\0\377\377\377\377\377\361\361\361\377\361" - "\361\361\377\362\362\362\377\362\362\362\377\363\363\363\377\363\363" - "\363\377\364\364\364\377\365\365\365\377\366\366\366\377\366\366\366" - "\377\367\367\367\377\367\367\367\377\370\370\370\377\371\371\371\377" - "\371\371\371\377\372\372\372\377\372\372\372\377\352\352\352\377\0\0" - "\0\377\0\0\0R\0\0\0\20\0\0\0\0\0\0\0\377\376\376\376\377kkk\377\362\362" - "\362\377jjj\377\363\363\363\377jjj\377\364\364\364\377kkk\377\366\366" - "\366\377lll\377\367\367\367\377lll\377\370\370\370\377mmm\377\371\371" - "\371\377mmm\377\372\372\372\377nnn\377\353\353\353\377\0\0\0\377\0\0" - "\0R\0\0\0\20\0\0\0\0\0\0\0\377\377\377\377\377\362\362\362\377\362\362" - "\362\377\363\363\363\377\363\363\363\377\364\364\364\377\365\365\365" - "\377\365\365\365\377\366\366\366\377\367\367\367\377\367\367\367\377" - "\370\370\370\377\371\371\371\377\371\371\371\377\372\372\372\377\372" - "\372\372\377\373\373\373\377\374\374\374\377\353\353\353\377\0\0\0\377" - "\0\0\0R\0\0\0\20\0\0\0\0\0\0\0\377\377\377\377\377\363\363\363\377\363" - "\363\363\377\363\363\363\377\364\364\364\377\365\365\365\377\365\365" - "\365\377\366\366\366\377\367\367\367\377lll\377\370\370\370\377\371\371" - "\371\377\371\371\371\377\372\372\372\377\372\372\372\377\373\373\373" - "\377\374\374\374\377\374\374\374\377\354\354\354\377\0\0\0\377\0\0\0" - "R\0\0\0\20\0\0\0\0\0\0\0\377\377\377\377\377\363\363\363\377\363\363" - "\363\377\364\364\364\377\365\365\365\377\365\365\365\377\366\366\366" - "\377\366\366\366\377\367\367\367\377\370\370\370\377\371\371\371\377" - "\371\371\371\377\372\372\372\377\372\372\372\377\373\373\373\377\374" - "\374\374\377\374\374\374\377\375\375\375\377\354\354\354\377\0\0\0\377" - "\0\0\0R\0\0\0\20\0\0\0\0\0\0\0\377\377\377\377\377\364\364\364\377\364" - "\364\364\377\365\365\365\377\365\365\365\377\366\366\366\377\366\366" - "\366\377\367\367\367\377\370\370\370\377mmm\377\371\371\371\377\372\372" - "\372\377\372\372\372\377\373\373\373\377\374\374\374\377\374\374\374" - "\377\375\375\375\377\375\375\375\377\355\355\355\377\0\0\0\377\0\0\0" - "R\0\0\0\20\0\0\0\0\0\0\0\377\377\377\377\377\365\365\365\377\365\365" - "\365\377\365\365\365\377\366\366\366\377\366\366\366\377\367\367\367" - "\377\367\367\367\377\371\371\371\377\371\371\371\377\372\372\372\377" - "\372\372\372\377\373\373\373\377\374\374\374\377\374\374\374\377\375" - "\375\375\377\375\375\375\377\376\376\376\377\356\356\356\377\0\0\0\377" - "\0\0\0R\0\0\0\20\0\0\0\0\0\0\0\377\377\377\377\377\365\365\365\377\365" - "\365\365\377\366\366\366\377\366\366\366\377\367\367\367\377\367\367" - "\367\377\370\370\370\377\371\371\371\377mmm\377\372\372\372\377\373\373" - "\373\377\374\374\374\377\374\374\374\377\375\375\375\377\375\375\375" - "\377\376\376\376\377\377\377\377\377\356\356\356\377\0\0\0\377\0\0\0" - "R\0\0\0\20\0\0\0\0\0\0\0\377\377\377\377\377\366\366\366\377\366\366" - "\366\377\366\366\366\377\367\367\367\377\367\367\367\377\370\370\370" - "\377\371\371\371\377\372\372\372\377\372\372\372\377\373\373\373\377" - "\374\374\374\377\374\374\374\377\375\375\375\377\375\375\375\377\376" - "\376\376\377\377\377\377\377\377\377\377\377\356\356\356\377\0\0\0\377" - "\0\0\0R\0\0\0\20\0\0\0\0\0\0\0\377\377\377\377\377\366\366\366\377\366" - "\366\366\377\367\367\367\377\367\367\367\377\370\370\370\377\371\371" - "\371\377\371\371\371\377\372\372\372\377nnn\377\374\374\374\377\374\374" - "\374\377\375\375\375\377\375\375\375\377\376\376\376\377\377\377\377" - "\377\377\377\377\377\377\377\377\377\356\356\356\377\0\0\0\377\0\0\0" - "R\0\0\0\20\0\0\0\0\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377" - "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377" - "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377" - "\0\0\0\377\0\0\0\377\0\0\0R\0\0\0\20\0\0\0\0\0\0\0\377\0\0\0\377\0\0" - "\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0" - "\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377" - "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0R\0\0\0\20\0" - "\0\0\0\0\0\0\15\0\0\0D\0\0\0R\0\0\0R\0\0\0R\0\0\0R\0\0\0R\0\0\0R\0\0" - "\0R\0\0\0R\0\0\0R\0\0\0R\0\0\0R\0\0\0R\0\0\0R\0\0\0R\0\0\0R\0\0\0R\0" - "\0\0R\0\0\0R\0\0\0R\0\0\0E\0\0\0\16\0\0\0\0\0\0\0\2\0\0\0\15\0\0\0\20" - "\0\0\0\20\0\0\0\20\0\0\0\20\0\0\0\20\0\0\0\20\0\0\0\20\0\0\0\20\0\0\0" - "\20\0\0\0\20\0\0\0\20\0\0\0\20\0\0\0\20\0\0\0\20\0\0\0\20\0\0\0\20\0" - "\0\0\20\0\0\0\20\0\0\0\20\0\0\0\16\0\0\0\3"}; - - -/* GdkPixbuf RGBA C-Source image dump */ - -#ifdef __SUNPRO_C -#pragma align 4 (stock_table_fill) -#endif -#ifdef __GNUC__ -static const guint8 stock_table_fill[] __attribute__ ((__aligned__ (4))) = -#else -static const guint8 stock_table_fill[] = -#endif -{ "" - /* Pixbuf magic (0x47646b50) */ - "GdkP" - /* length: header (24) + pixel_data (2304) */ - "\0\0\11\30" - /* pixdata_type (0x1010002) */ - "\1\1\0\2" - /* rowstride (96) */ - "\0\0\0`" - /* width (24) */ - "\0\0\0\30" - /* height (24) */ - "\0\0\0\30" - /* pixel_data: */ - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0" - "\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377" - "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377" - "\0\0\0\16\0\0\0\3\0\0\0\0\0\0\0\377\262\262\262\377\262\262\262\377\262" - "\262\262\377\262\262\262\377\262\262\262\377\262\262\262\377\262\262" - "\262\377\262\262\262\377\262\262\262\377\260\260\260\377\377\377\377" - "\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" - "\377\377\377\377\377\377\377\377\377\377\377\377\336\336\336\377\0\0" - "\0\377\0\0\0E\0\0\0\16\0\0\0\0\0\0\0\377\262\262\262\377\247\247\247" - "\377\247\247\247\377\247\247\247\377\247\247\247\377\247\247\247\377" - "\247\247\247\377\247\247\247\377\250\250\250\377LLL\377\363\363\363\377" - "\363\363\363\377\364\364\364\377\365\365\365\377\365\365\365\377\366" - "\366\366\377\366\366\366\377\367\367\367\377\346\346\346\377\0\0\0\377" - "\0\0\0R\0\0\0\20\0\0\0\0\0\0\0\377\262\262\262\377\247\247\247\377\247" - "\247\247\377\247\247\247\377\247\247\247\377\247\247\247\377\247\247" - "\247\377\247\247\247\377\250\250\250\377\250\250\250\377\363\363\363" - "\377\363\363\363\377\364\364\364\377\365\365\365\377\365\365\365\377" - "\366\366\366\377\366\366\366\377\367\367\367\377\346\346\346\377\0\0" - "\0\377\0\0\0R\0\0\0\20\0\0\0\0\0\0\0\377\262\262\262\377\247\247\247" - "\377\247\247\247\377\247\247\247\377\247\247\247\377\247\247\247\377" - "\247\247\247\377\250\250\250\377\250\250\250\377III\377\363\363\363\377" - "\364\364\364\377\365\365\365\377\365\365\365\377\366\366\366\377\366" - "\366\366\377\367\367\367\377\367\367\367\377\347\347\347\377\0\0\0\377" - "\0\0\0R\0\0\0\20\0\0\0\0\0\0\0\377\262\262\262\377\247\247\247\377\247" - "\247\247\377\247\247\247\377\247\247\247\377\247\247\247\377\250\250" - "\250\377\250\250\250\377\251\251\251\377\251\251\251\377\364\364\364" - "\377\365\365\365\377\365\365\365\377\366\366\366\377\366\366\366\377" - "\367\367\367\377\367\367\367\377\370\370\370\377\350\350\350\377\0\0" - "\0\377\0\0\0R\0\0\0\20\0\0\0\0\0\0\0\377\262\262\262\377\247\247\247" - "\377\247\247\247\377\247\247\247\377\247\247\247\377\250\250\250\377" - "\250\250\250\377\250\250\250\377\251\251\251\377JJJ\377\365\365\365\377" - "\365\365\365\377\366\366\366\377\366\366\366\377\367\367\367\377\367" - "\367\367\377\370\370\370\377\371\371\371\377\350\350\350\377\0\0\0\377" - "\0\0\0R\0\0\0\20\0\0\0\0\0\0\0\377\262\262\262\377\247\247\247\377\247" - "\247\247\377\247\247\247\377\250\250\250\377\250\250\250\377\250\250" - "\250\377\251\251\251\377\252\252\252\377\253\253\253\377\365\365\365" - "\377\366\366\366\377\366\366\366\377\367\367\367\377\367\367\367\377" - "\370\370\370\377\371\371\371\377\371\371\371\377\351\351\351\377\0\0" - "\0\377\0\0\0R\0\0\0\20\0\0\0\0\0\0\0\377\262\262\262\377\247\247\247" - "\377\247\247\247\377\250\250\250\377\250\250\250\377\250\250\250\377" - "\251\251\251\377\251\251\251\377\253\253\253\377JJJ\377\366\366\366\377" - "\366\366\366\377\367\367\367\377\367\367\367\377\370\370\370\377\371" - "\371\371\377\371\371\371\377\372\372\372\377\351\351\351\377\0\0\0\377" - "\0\0\0R\0\0\0\20\0\0\0\0\0\0\0\377\262\262\262\377\250\250\250\377\250" - "\250\250\377\250\250\250\377\250\250\250\377\251\251\251\377\251\251" - "\251\377\252\252\252\377\253\253\253\377\253\253\253\377\366\366\366" - "\377\367\367\367\377\367\367\367\377\370\370\370\377\371\371\371\377" - "\371\371\371\377\372\372\372\377\372\372\372\377\352\352\352\377\0\0" - "\0\377\0\0\0R\0\0\0\20\0\0\0\0\0\0\0\377\261\261\261\377JJJ\377\250\250" - "\250\377III\377\251\251\251\377III\377\252\252\252\377JJJ\377\253\253" - "\253\377KKK\377\254\254\254\377KKK\377\255\255\255\377LLL\377\255\255" - "\255\377LLL\377\256\256\256\377LLL\377\244\244\244\377\0\0\0\377\0\0" - "\0R\0\0\0\20\0\0\0\0\0\0\0\377\377\377\377\377\362\362\362\377\362\362" - "\362\377\363\363\363\377\363\363\363\377\364\364\364\377\365\365\365" - "\377\365\365\365\377\366\366\366\377\254\254\254\377\254\254\254\377" - "\255\255\255\377\255\255\255\377\255\255\255\377\256\256\256\377\256" - "\256\256\377\257\257\257\377\257\257\257\377\244\244\244\377\0\0\0\377" - "\0\0\0R\0\0\0\20\0\0\0\0\0\0\0\377\377\377\377\377\363\363\363\377\363" - "\363\363\377\363\363\363\377\364\364\364\377\365\365\365\377\365\365" - "\365\377\366\366\366\377\367\367\367\377KKK\377\255\255\255\377\255\255" - "\255\377\255\255\255\377\256\256\256\377\256\256\256\377\257\257\257" - "\377\257\257\257\377\257\257\257\377\244\244\244\377\0\0\0\377\0\0\0" - "R\0\0\0\20\0\0\0\0\0\0\0\377\377\377\377\377\363\363\363\377\363\363" - "\363\377\364\364\364\377\365\365\365\377\365\365\365\377\366\366\366" - "\377\366\366\366\377\367\367\367\377\255\255\255\377\255\255\255\377" - "\255\255\255\377\256\256\256\377\256\256\256\377\257\257\257\377\257" - "\257\257\377\257\257\257\377\260\260\260\377\244\244\244\377\0\0\0\377" - "\0\0\0R\0\0\0\20\0\0\0\0\0\0\0\377\377\377\377\377\364\364\364\377\364" - "\364\364\377\365\365\365\377\365\365\365\377\366\366\366\377\366\366" - "\366\377\367\367\367\377\370\370\370\377LLL\377\255\255\255\377\256\256" - "\256\377\256\256\256\377\257\257\257\377\257\257\257\377\257\257\257" - "\377\260\260\260\377\260\260\260\377\245\245\245\377\0\0\0\377\0\0\0" - "R\0\0\0\20\0\0\0\0\0\0\0\377\377\377\377\377\365\365\365\377\365\365" - "\365\377\365\365\365\377\366\366\366\377\366\366\366\377\367\367\367" - "\377\367\367\367\377\371\371\371\377\255\255\255\377\256\256\256\377" - "\256\256\256\377\257\257\257\377\257\257\257\377\257\257\257\377\260" - "\260\260\377\260\260\260\377\261\261\261\377\246\246\246\377\0\0\0\377" - "\0\0\0R\0\0\0\20\0\0\0\0\0\0\0\377\377\377\377\377\365\365\365\377\365" - "\365\365\377\366\366\366\377\366\366\366\377\367\367\367\377\367\367" - "\367\377\370\370\370\377\371\371\371\377LLL\377\256\256\256\377\257\257" - "\257\377\257\257\257\377\257\257\257\377\260\260\260\377\260\260\260" - "\377\261\261\261\377\262\262\262\377\246\246\246\377\0\0\0\377\0\0\0" - "R\0\0\0\20\0\0\0\0\0\0\0\377\377\377\377\377\366\366\366\377\366\366" - "\366\377\366\366\366\377\367\367\367\377\367\367\367\377\370\370\370" - "\377\371\371\371\377\372\372\372\377\256\256\256\377\257\257\257\377" - "\257\257\257\377\257\257\257\377\260\260\260\377\260\260\260\377\261" - "\261\261\377\262\262\262\377\262\262\262\377\246\246\246\377\0\0\0\377" - "\0\0\0R\0\0\0\20\0\0\0\0\0\0\0\377\377\377\377\377\366\366\366\377\366" - "\366\366\377\367\367\367\377\367\367\367\377\370\370\370\377\371\371" - "\371\377\371\371\371\377\372\372\372\377LLL\377\257\257\257\377\257\257" - "\257\377\260\260\260\377\260\260\260\377\261\261\261\377\262\262\262" - "\377\262\262\262\377\262\262\262\377\246\246\246\377\0\0\0\377\0\0\0" - "R\0\0\0\20\0\0\0\0\0\0\0\377\356\356\356\377\346\346\346\377\346\346" - "\346\377\346\346\346\377\347\347\347\377\350\350\350\377\350\350\350" - "\377\351\351\351\377\352\352\352\377\244\244\244\377\244\244\244\377" - "\244\244\244\377\244\244\244\377\245\245\245\377\246\246\246\377\246" - "\246\246\377\246\246\246\377\246\246\246\377\232\232\232\377\0\0\0\377" - "\0\0\0R\0\0\0\20\0\0\0\0\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0" - "\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0" - "\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377" - "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0R\0\0\0\20\0\0\0\0\0\0\0\15\0\0\0" - "D\0\0\0R\0\0\0R\0\0\0R\0\0\0R\0\0\0R\0\0\0R\0\0\0R\0\0\0R\0\0\0R\0\0" - "\0R\0\0\0R\0\0\0R\0\0\0R\0\0\0R\0\0\0R\0\0\0R\0\0\0R\0\0\0R\0\0\0R\0" - "\0\0E\0\0\0\16\0\0\0\0\0\0\0\2\0\0\0\15\0\0\0\20\0\0\0\20\0\0\0\20\0" - "\0\0\20\0\0\0\20\0\0\0\20\0\0\0\20\0\0\0\20\0\0\0\20\0\0\0\20\0\0\0\20" - "\0\0\0\20\0\0\0\20\0\0\0\20\0\0\0\20\0\0\0\20\0\0\0\20\0\0\0\20\0\0\0" - "\20\0\0\0\16\0\0\0\3"}; - - -/* GdkPixbuf RGBA C-Source image dump */ - -#ifdef __SUNPRO_C -#pragma align 4 (stock_text_bulleted_list) -#endif -#ifdef __GNUC__ -static const guint8 stock_text_bulleted_list[] __attribute__ ((__aligned__ (4))) = -#else -static const guint8 stock_text_bulleted_list[] = -#endif -{ "" - /* Pixbuf magic (0x47646b50) */ - "GdkP" - /* length: header (24) + pixel_data (2304) */ - "\0\0\11\30" - /* pixdata_type (0x1010002) */ - "\1\1\0\2" - /* rowstride (96) */ - "\0\0\0`" - /* width (24) */ - "\0\0\0\30" - /* height (24) */ - "\0\0\0\30" - /* pixel_data: */ - "\0\0\0\27\0\0\0\224\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377" - "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377" - "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\232" - "\0\0\0'\0\0\0\6\0\0\0\1\0\0\0\224\342\342\342\377\362\362\362\377\362" - "\362\362\377\362\362\362\377\362\362\362\377\363\363\363\377\363\363" - "\363\377\363\363\363\377\364\364\364\377\364\364\364\377\364\364\364" - "\377\365\365\365\377\365\365\365\377\365\365\365\377\366\366\366\377" - "\366\366\366\377\367\367\367\377\367\367\367\377\364\364\364\377\333" - "\333\333\377\0\0\0\243\0\0\0\25\0\0\0\6\0\0\0\377\360\360\360\377\340" - "\340\340\377\340\340\340\377\341\341\341\377\342\342\342\377\343\343" - "\343\377\344\344\344\377\345\345\345\377\346\346\346\377\347\347\347" - "\377\350\350\350\377\350\350\350\377\351\351\351\377\352\352\352\377" - "\353\353\353\377\354\354\354\377\355\355\355\377\356\356\356\377\357" - "\357\357\377\355\355\355\377\0\0\0\377\0\0\0)\0\0\0\16\0\0\0\377\362" - "\362\362\377\341\341\341\377\341\341\341\377\342\342\342\377\343\343" - "\343\377\344\344\344\377\345\345\345\377\346\346\346\377\347\347\347" - "\377\350\350\350\377\351\351\351\377\352\352\352\377\352\352\352\377" - "\353\353\353\377\354\354\354\377\355\355\355\377\356\356\356\377\357" - "\357\357\377\360\360\360\377\361\361\361\377\0\0\0\377\0\0\0""8\0\0\0" - "\25\0\0\0\377\362\362\362\377\342\342\342\377\343\343\343\377\236\236" - "\236\377mmm\377\237\237\237\377\346\346\346\377\347\347\347\377ooo\377" - "ppp\377ppp\377qqq\377qqq\377qqq\377rrr\377rrr\377sss\377\360\360\360" - "\377\361\361\361\377\362\362\362\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0" - "\377\363\363\363\377\343\343\343\377\344\344\344\377nnn\377nnn\377nn" - "n\377\347\347\347\377\350\350\350\377\351\351\351\377\352\352\352\377" - "\353\353\353\377\354\354\354\377\355\355\355\377\355\355\355\377\356" - "\356\356\377\357\357\357\377\360\360\360\377\361\361\361\377\362\362" - "\362\377\363\363\363\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0\377\363\363" - "\363\377\344\344\344\377\345\345\345\377\240\240\240\377ooo\377\241\241" - "\241\377\350\350\350\377\351\351\351\377ppp\377qqq\377qqq\377rrr\377" - "rrr\377sss\377sss\377sss\377ttt\377\362\362\362\377\363\363\363\377\364" - "\364\364\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0\377\363\363\363\377\345" - "\345\345\377\346\346\346\377\347\347\347\377\350\350\350\377\351\351" - "\351\377\351\351\351\377\352\352\352\377\353\353\353\377\354\354\354" - "\377\355\355\355\377\356\356\356\377\357\357\357\377\360\360\360\377" - "\356\356\356\377\360\360\360\377\361\361\361\377\363\363\363\377\364" - "\364\364\377\365\365\365\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0\377\364" - "\364\364\377\346\346\346\377\347\347\347\377\350\350\350\377\351\351" - "\351\377\352\352\352\377\352\352\352\377\353\353\353\377qqq\377rrr\377" - "rrr\377sss\377sss\377ttt\377\362\362\362\377\363\363\363\377\363\363" - "\363\377\364\364\364\377\365\365\365\377\366\366\366\377\0\0\0\377\0" - "\0\0=\0\0\0\27\0\0\0\377\364\364\364\377\347\347\347\377\350\350\350" - "\377\351\351\351\377\352\352\352\377\353\353\353\377\354\354\354\377" - "\354\354\354\377\355\355\355\377\356\356\356\377\357\357\357\377\360" - "\360\360\377\361\361\361\377\362\362\362\377\363\363\363\377\364\364" - "\364\377\365\365\365\377\365\365\365\377\366\366\366\377\367\367\367" - "\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0\377\365\365\365\377\350\350\350" - "\377\351\351\351\377\352\352\352\377\353\353\353\377\354\354\354\377" - "\355\355\355\377\356\356\356\377\356\356\356\377\357\357\357\377\360" - "\360\360\377\361\361\361\377\362\362\362\377\363\363\363\377\364\364" - "\364\377\365\365\365\377\366\366\366\377\367\367\367\377\367\367\367" - "\377\370\370\370\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0\377\365\365\365" - "\377\351\351\351\377\352\352\352\377\353\353\353\377\354\354\354\377" - "\355\355\355\377\356\356\356\377\357\357\357\377\360\360\360\377\360" - "\360\360\377\361\361\361\377\362\362\362\377\363\363\363\377\364\364" - "\364\377\365\365\365\377\366\366\366\377\367\367\367\377\370\370\370" - "\377\370\370\370\377\371\371\371\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0" - "\377\365\365\365\377\352\352\352\377\353\353\353\377\354\354\354\377" - "\355\355\355\377\356\356\356\377\357\357\357\377\360\360\360\377\361" - "\361\361\377\362\362\362\377\362\362\362\377\363\363\363\377\364\364" - "\364\377\365\365\365\377\366\366\366\377\367\367\367\377\370\370\370" - "\377\371\371\371\377\372\372\372\377\372\372\372\377\0\0\0\377\0\0\0" - "=\0\0\0\27\0\0\0\377\366\366\366\377\353\353\353\377\354\354\354\377" - "\303\303\303\377rrr\377\304\304\304\377\360\360\360\377\361\361\361\377" - "ttt\377uuu\377\203\203\203\377uuu\377vvv\377vvv\377www\377www\377xxx" - "\377\372\372\372\377\373\373\373\377\374\374\374\377\0\0\0\377\0\0\0" - "=\0\0\0\27\0\0\0\377\367\367\367\377\355\355\355\377\355\355\355\377" - "rrr\377sss\377sss\377\361\361\361\377\362\362\362\377\363\363\363\377" - "\364\364\364\377\365\365\365\377\365\365\365\377\366\366\366\377\367" - "\367\367\377\370\370\370\377\371\371\371\377\372\372\372\377\373\373" - "\373\377\374\374\374\377\375\375\375\377\0\0\0\377\0\0\0=\0\0\0\27\0" - "\0\0\377\367\367\367\377\356\356\356\377\357\357\357\377\304\304\304" - "\377sss\377\306\306\306\377\362\362\362\377\363\363\363\377uuu\377vv" - "v\377vvv\377www\377www\377www\377xxx\377xxx\377\373\373\373\377\374\374" - "\374\377\375\375\375\377\376\376\376\377\0\0\0\377\0\0\0=\0\0\0\27\0" - "\0\0\377\370\370\370\377\360\360\360\377\361\361\361\377\362\362\362" - "\377\362\362\362\377\363\363\363\377\364\364\364\377\365\365\365\377" - "\366\366\366\377\367\367\367\377\370\370\370\377\371\371\371\377\372" - "\372\372\377\373\373\373\377\373\373\373\377\374\374\374\377\375\375" - "\375\377\376\376\376\377\377\377\377\377\377\377\377\377\0\0\0\377\0" - "\0\0=\0\0\0\27\0\0\0\377\370\370\370\377\361\361\361\377\362\362\362" - "\377\363\363\363\377\364\364\364\377\364\364\364\377\365\365\365\377" - "\366\366\366\377\367\367\367\377\370\370\370\377\371\371\371\377\372" - "\372\372\377\373\373\373\377\374\374\374\377\375\375\375\377\375\375" - "\375\377\376\376\376\377\377\377\377\377\377\377\377\377\377\377\377" - "\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0\377\362\362\362\377\362\362\362" - "\377\363\363\363\377\364\364\364\377\365\365\365\377\366\366\366\377" - "\366\366\366\377\367\367\367\377\370\370\370\377\371\371\371\377\372" - "\372\372\377\373\373\373\377\374\374\374\377\375\375\375\377\376\376" - "\376\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" - "\377\354\354\354\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0\232\311\311\311" - "\377\355\355\355\377\370\370\370\377\365\365\365\377\366\366\366\377" - "\367\367\367\377\370\370\370\377\370\370\370\377\371\371\371\377\372" - "\372\372\377\373\373\373\377\374\374\374\377\375\375\375\377\376\376" - "\376\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" - "\377\356\356\356\377\275\275\275\377\0\0\0\324\0\0\0:\0\0\0\26\0\0\0" - "\34\0\0\0\243\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0" - "\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0" - "\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\324\0" - "\0\0Y\0\0\0-\0\0\0\20\0\0\0\6\0\0\0\24\0\0\0)\0\0\0""8\0\0\0<\0\0\0=" - "\0\0\0=\0\0\0=\0\0\0=\0\0\0=\0\0\0=\0\0\0=\0\0\0=\0\0\0=\0\0\0=\0\0\0" - "=\0\0\0=\0\0\0=\0\0\0=\0\0\0=\0\0\0""9\0\0\0-\0\0\0\31\0\0\0\7\0\0\0" - "\1\0\0\0\6\0\0\0\16\0\0\0\24\0\0\0\27\0\0\0\27\0\0\0\27\0\0\0\27\0\0" - "\0\27\0\0\0\27\0\0\0\27\0\0\0\27\0\0\0\27\0\0\0\27\0\0\0\27\0\0\0\27" - "\0\0\0\27\0\0\0\27\0\0\0\27\0\0\0\27\0\0\0\25\0\0\0\20\0\0\0\7\0\0\0" - "\2\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\2\0\0\0\3\0\0\0\3\0\0\0\3\0\0\0\3\0" - "\0\0\3\0\0\0\3\0\0\0\3\0\0\0\3\0\0\0\3\0\0\0\3\0\0\0\3\0\0\0\3\0\0\0" - "\3\0\0\0\3\0\0\0\3\0\0\0\3\0\0\0\3\0\0\0\2\0\0\0\1\0\0\0\0"}; - - -/* GdkPixbuf RGBA C-Source image dump */ - -#ifdef __SUNPRO_C -#pragma align 4 (stock_text_indent) -#endif -#ifdef __GNUC__ -static const guint8 stock_text_indent[] __attribute__ ((__aligned__ (4))) = -#else -static const guint8 stock_text_indent[] = -#endif -{ "" - /* Pixbuf magic (0x47646b50) */ - "GdkP" - /* length: header (24) + pixel_data (2304) */ - "\0\0\11\30" - /* pixdata_type (0x1010002) */ - "\1\1\0\2" - /* rowstride (96) */ - "\0\0\0`" - /* width (24) */ - "\0\0\0\30" - /* height (24) */ - "\0\0\0\30" - /* pixel_data: */ - "\0\0\0\27\0\0\0\224\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377" - "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377" - "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\232" - "\0\0\0'\0\0\0\6\0\0\0\1\0\0\0\224\342\342\342\377\362\362\362\377\362" - "\362\362\377\362\362\362\377\362\362\362\377\363\363\363\377\363\363" - "\363\377\363\363\363\377\364\364\364\377\364\364\364\377\364\364\364" - "\377\365\365\365\377\365\365\365\377\365\365\365\377\366\366\366\377" - "\366\366\366\377\367\367\367\377\367\367\367\377\364\364\364\377\333" - "\333\333\377\0\0\0\243\0\0\0\25\0\0\0\6\0\0\0\377\360\360\360\377\340" - "\340\340\377\340\340\340\377\341\341\341\377\342\342\342\377\343\343" - "\343\377\344\344\344\377\345\345\345\377\256\256\256\377\347\347\347" - "\377\350\350\350\377\350\350\350\377\351\351\351\377\352\352\352\377" - "\353\353\353\377\354\354\354\377\355\355\355\377\356\356\356\377\357" - "\357\357\377\343\343\343\377\0\0\0\377\0\0\0)\0\0\0\16\0\0\0\377\362" - "\362\362\377\341\341\341\377\341\341\341\377\342\342\342\377\343\343" - "\343\377\344\344\344\377\345\345\345\377\346\346\346\377\347\347\347" - "\377\350\350\350\377\351\351\351\377\352\352\352\377\352\352\352\377" - "\353\353\353\377\354\354\354\377\355\355\355\377\356\356\356\377\357" - "\357\357\377\360\360\360\377\347\347\347\377\0\0\0\377\0\0\0""8\0\0\0" - "\25\0\0\0\377\362\362\362\377\342\342\342\377\254\254\254\377\254\254" - "\254\377\255\255\255\377\256\256\256\377\256\256\256\377\257\257\257" - "\377\260\260\260\377\261\261\261\377\262\262\262\377\262\262\262\377" - "\263\263\263\377\263\263\263\377\264\264\264\377\265\265\265\377\265" - "\265\265\377\266\266\266\377\361\361\361\377\350\350\350\377\0\0\0\377" - "\0\0\0=\0\0\0\27\0\0\0\377\363\363\363\377\343\343\343\377\344\344\344" - "\377\345\345\345\377\345\345\345\377\346\346\346\377\347\347\347\377" - "\350\350\350\377\351\351\351\377\352\352\352\377\353\353\353\377\354" - "\354\354\377\355\355\355\377\355\355\355\377\356\356\356\377\357\357" - "\357\377\360\360\360\377\361\361\361\377\362\362\362\377\351\351\351" - "\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0\377\363\363\363\377\344\344\344" - "\377\345\345\345\377\346\346\346\377\347\347\347\377\347\347\347\377" - "\350\350\350\377\351\351\351\377\352\352\352\377\353\353\353\377\354" - "\354\354\377\355\355\355\377\356\356\356\377\357\357\357\377\357\357" - "\357\377\360\360\360\377\361\361\361\377\362\362\362\377\363\363\363" - "\377\352\352\352\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0\377\363\363\363" - "\377\345\345\345\377\346\346\346\377\347\347\347\377\350\350\350\377" - "\351\351\351\377\351\351\351\377\352\352\352\377uuu\377vvv\377vvv\377" - "www\377www\377xxx\377xxx\377xxx\377yyy\377yyy\377\364\364\364\377\353" - "\353\353\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0\377\364\364\364\377\346" - "\346\346\377\347\347\347\377\350\350\350\377\252\252\252\377\352\352" - "\352\377\352\352\352\377\353\353\353\377\354\354\354\377\355\355\355" - "\377\356\356\356\377\357\357\357\377\360\360\360\377\361\361\361\377" - "\362\362\362\377\363\363\363\377\363\363\363\377\364\364\364\377\365" - "\365\365\377\354\354\354\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0\377\364" - "\364\364\377\347\347\347\377\350\350\350\377\351\351\351\377\0\0\0\377" - "\254\254\254\377\354\354\354\377\354\354\354\377vvv\377www\377www\377" - "xxx\377xxx\377yyy\377yyy\377zzz\377zzz\377zzz\377\366\366\366\377\355" - "\355\355\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0\377\365\365\365\377\0\0" - "\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\255\255\255\377\356\356" - "\356\377\356\356\356\377\357\357\357\377\360\360\360\377\361\361\361" - "\377\362\362\362\377\363\363\363\377\364\364\364\377\365\365\365\377" - "\366\366\366\377\367\367\367\377\367\367\367\377\356\356\356\377\0\0" - "\0\377\0\0\0=\0\0\0\27\0\0\0\377\365\365\365\377\351\351\351\377\352" - "\352\352\377\353\353\353\377\0\0\0\377\255\255\255\377\356\356\356\377" - "\357\357\357\377xxx\377xxx\377xxx\377yyy\377yyy\377zzz\377zzz\377{{{" - "\377{{{\377|||\377\370\370\370\377\357\357\357\377\0\0\0\377\0\0\0=\0" - "\0\0\27\0\0\0\377\365\365\365\377\352\352\352\377\353\353\353\377\354" - "\354\354\377\255\255\255\377\356\356\356\377\357\357\357\377\360\360" - "\360\377\361\361\361\377\362\362\362\377\362\362\362\377\363\363\363" - "\377\364\364\364\377\365\365\365\377\366\366\366\377\367\367\367\377" - "\370\370\370\377\371\371\371\377\372\372\372\377\360\360\360\377\0\0" - "\0\377\0\0\0=\0\0\0\27\0\0\0\377\366\366\366\377\353\353\353\377\354" - "\354\354\377\355\355\355\377\356\356\356\377\357\357\357\377\360\360" - "\360\377\361\361\361\377yyy\377yyy\377zzz\377zzz\377zzz\377\366\366\366" - "\377\367\367\367\377\370\370\370\377\371\371\371\377\372\372\372\377" - "\373\373\373\377\362\362\362\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0\377" - "\367\367\367\377\355\355\355\377\355\355\355\377\356\356\356\377\357" - "\357\357\377\360\360\360\377\361\361\361\377\362\362\362\377\363\363" - "\363\377\364\364\364\377\365\365\365\377\365\365\365\377\366\366\366" - "\377\367\367\367\377\370\370\370\377\371\371\371\377\372\372\372\377" - "\373\373\373\377\374\374\374\377\363\363\363\377\0\0\0\377\0\0\0=\0\0" - "\0\27\0\0\0\377\367\367\367\377\356\356\356\377\357\357\357\377\357\357" - "\357\377\360\360\360\377\361\361\361\377\362\362\362\377\363\363\363" - "\377\364\364\364\377\365\365\365\377\366\366\366\377\367\367\367\377" - "\367\367\367\377\370\370\370\377\371\371\371\377\372\372\372\377\373" - "\373\373\377\374\374\374\377\375\375\375\377\364\364\364\377\0\0\0\377" - "\0\0\0=\0\0\0\27\0\0\0\377\370\370\370\377\360\360\360\377\267\267\267" - "\377\270\270\270\377\270\270\270\377\270\270\270\377\271\271\271\377" - "\272\272\272\377\273\273\273\377\273\273\273\377\274\274\274\377\275" - "\275\275\377\276\276\276\377\276\276\276\377\276\276\276\377\277\277" - "\277\377\300\300\300\377\301\301\301\377\377\377\377\377\365\365\365" - "\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0\377\370\370\370\377\361\361\361" - "\377\362\362\362\377\363\363\363\377\364\364\364\377\364\364\364\377" - "\365\365\365\377\366\366\366\377\367\367\367\377\370\370\370\377\371" - "\371\371\377\372\372\372\377\373\373\373\377\374\374\374\377\375\375" - "\375\377\375\375\375\377\376\376\376\377\377\377\377\377\377\377\377" - "\377\365\365\365\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0\377\362\362\362" - "\377\362\362\362\377\363\363\363\377\364\364\364\377\365\365\365\377" - "\366\366\366\377\366\366\366\377\367\367\367\377\274\274\274\377\371" - "\371\371\377\372\372\372\377\373\373\373\377\374\374\374\377\375\375" - "\375\377\376\376\376\377\377\377\377\377\377\377\377\377\377\377\377" - "\377\377\377\377\377\331\331\331\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0" - "\232\311\311\311\377\332\332\332\377\356\356\356\377\353\353\353\377" - "\354\354\354\377\355\355\355\377\356\356\356\377\356\356\356\377\357" - "\357\357\377\360\360\360\377\361\361\361\377\362\362\362\377\363\363" - "\363\377\364\364\364\377\365\365\365\377\365\365\365\377\365\365\365" - "\377\365\365\365\377\344\344\344\377\275\275\275\377\0\0\0\324\0\0\0" - ":\0\0\0\26\0\0\0\34\0\0\0\243\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377" - "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377" - "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377" - "\0\0\0\324\0\0\0Y\0\0\0-\0\0\0\20\0\0\0\6\0\0\0\24\0\0\0)\0\0\0""8\0" - "\0\0<\0\0\0=\0\0\0=\0\0\0=\0\0\0=\0\0\0=\0\0\0=\0\0\0=\0\0\0=\0\0\0=" - "\0\0\0=\0\0\0=\0\0\0=\0\0\0=\0\0\0=\0\0\0=\0\0\0""9\0\0\0-\0\0\0\31\0" - "\0\0\7\0\0\0\1\0\0\0\6\0\0\0\16\0\0\0\24\0\0\0\27\0\0\0\27\0\0\0\27\0" - "\0\0\27\0\0\0\27\0\0\0\27\0\0\0\27\0\0\0\27\0\0\0\27\0\0\0\27\0\0\0\27" - "\0\0\0\27\0\0\0\27\0\0\0\27\0\0\0\27\0\0\0\27\0\0\0\25\0\0\0\20\0\0\0" - "\7\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\2\0\0\0\3\0\0\0\3\0\0\0\3\0" - "\0\0\3\0\0\0\3\0\0\0\3\0\0\0\3\0\0\0\3\0\0\0\3\0\0\0\3\0\0\0\3\0\0\0" - "\3\0\0\0\3\0\0\0\3\0\0\0\3\0\0\0\3\0\0\0\3\0\0\0\2\0\0\0\1\0\0\0\0"}; - - -/* GdkPixbuf RGBA C-Source image dump */ - -#ifdef __SUNPRO_C -#pragma align 4 (stock_text_numbered_list) -#endif -#ifdef __GNUC__ -static const guint8 stock_text_numbered_list[] __attribute__ ((__aligned__ (4))) = -#else -static const guint8 stock_text_numbered_list[] = -#endif -{ "" - /* Pixbuf magic (0x47646b50) */ - "GdkP" - /* length: header (24) + pixel_data (2304) */ - "\0\0\11\30" - /* pixdata_type (0x1010002) */ - "\1\1\0\2" - /* rowstride (96) */ - "\0\0\0`" - /* width (24) */ - "\0\0\0\30" - /* height (24) */ - "\0\0\0\30" - /* pixel_data: */ - "\0\0\0\27\0\0\0\224\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377" - "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377" - "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\232" - "\0\0\0'\0\0\0\6\0\0\0\1\0\0\0\224\342\342\342\377\362\362\362\377\362" - "\362\362\377\362\362\362\377\362\362\362\377\363\363\363\377\363\363" - "\363\377\363\363\363\377\364\364\364\377\364\364\364\377\364\364\364" - "\377\365\365\365\377\365\365\365\377\365\365\365\377\366\366\366\377" - "\366\366\366\377\367\367\367\377\367\367\367\377\364\364\364\377\333" - "\333\333\377\0\0\0\243\0\0\0\25\0\0\0\6\0\0\0\377\360\360\360\377\340" - "\340\340\377\340\340\340\377\341\341\341\377\342\342\342\377\343\343" - "\343\377\344\344\344\377\345\345\345\377\346\346\346\377\347\347\347" - "\377\350\350\350\377\350\350\350\377\351\351\351\377\352\352\352\377" - "\353\353\353\377\354\354\354\377\355\355\355\377\356\356\356\377\357" - "\357\357\377\355\355\355\377\0\0\0\377\0\0\0)\0\0\0\16\0\0\0\377\362" - "\362\362\377\341\341\341\377\341\341\341\377\314\314\314\377mmm\377\344" - "\344\344\377\345\345\345\377\346\346\346\377\347\347\347\377\350\350" - "\350\377\351\351\351\377\352\352\352\377\352\352\352\377\353\353\353" - "\377\354\354\354\377\355\355\355\377\356\356\356\377\357\357\357\377" - "\360\360\360\377\361\361\361\377\0\0\0\377\0\0\0""8\0\0\0\25\0\0\0\377" - "\362\362\362\377\342\342\342\377\315\315\315\377mmm\377mmm\377\345\345" - "\345\377\346\346\346\377\347\347\347\377ooo\377ppp\377ppp\377qqq\377" - "qqq\377qqq\377rrr\377rrr\377sss\377\360\360\360\377\361\361\361\377\362" - "\362\362\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0\377\363\363\363\377\343" - "\343\343\377\344\344\344\377\345\345\345\377nnn\377\346\346\346\377\347" - "\347\347\377\350\350\350\377\351\351\351\377\352\352\352\377\353\353" - "\353\377\354\354\354\377\355\355\355\377\355\355\355\377\356\356\356" - "\377\357\357\357\377\360\360\360\377\361\361\361\377\362\362\362\377" - "\363\363\363\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0\377\363\363\363\377" - "\344\344\344\377\345\345\345\377\346\346\346\377ooo\377\347\347\347\377" - "\350\350\350\377\351\351\351\377ppp\377qqq\377qqq\377rrr\377rrr\377s" - "ss\377sss\377sss\377ttt\377\362\362\362\377\363\363\363\377\364\364\364" - "\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0\377\363\363\363\377\345\345\345" - "\377\346\346\346\377\347\347\347\377ooo\377\351\351\351\377\351\351\351" - "\377\352\352\352\377\353\353\353\377\354\354\354\377\355\355\355\377" - "\356\356\356\377\357\357\357\377\360\360\360\377\356\356\356\377\360" - "\360\360\377\361\361\361\377\363\363\363\377\364\364\364\377\365\365" - "\365\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0\377\364\364\364\377\346\346" - "\346\377\347\347\347\377\350\350\350\377\351\351\351\377\352\352\352" - "\377\352\352\352\377\353\353\353\377\206\206\206\377rrr\377rrr\377ss" - "s\377sss\377ttt\377\362\362\362\377\363\363\363\377\363\363\363\377\364" - "\364\364\377\365\365\365\377\366\366\366\377\0\0\0\377\0\0\0=\0\0\0\27" - "\0\0\0\377\364\364\364\377\347\347\347\377\350\350\350\377\351\351\351" - "\377\352\352\352\377\353\353\353\377\354\354\354\377\354\354\354\377" - "\355\355\355\377\356\356\356\377\357\357\357\377\360\360\360\377\361" - "\361\361\377\362\362\362\377\363\363\363\377\364\364\364\377\365\365" - "\365\377\365\365\365\377\366\366\366\377\367\367\367\377\0\0\0\377\0" - "\0\0=\0\0\0\27\0\0\0\377\365\365\365\377\350\350\350\377\351\351\351" - "\377\352\352\352\377\353\353\353\377\354\354\354\377\355\355\355\377" - "\356\356\356\377\356\356\356\377\357\357\357\377\360\360\360\377\361" - "\361\361\377\362\362\362\377\363\363\363\377\364\364\364\377\365\365" - "\365\377\366\366\366\377\367\367\367\377\367\367\367\377\370\370\370" - "\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0\377\365\365\365\377\351\351\351" - "\377\352\352\352\377\353\353\353\377\354\354\354\377\355\355\355\377" - "\356\356\356\377\357\357\357\377\360\360\360\377\360\360\360\377\361" - "\361\361\377\362\362\362\377\363\363\363\377\364\364\364\377\365\365" - "\365\377\366\366\366\377\367\367\367\377\370\370\370\377\370\370\370" - "\377\371\371\371\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0\377\365\365\365" - "\377\352\352\352\377\353\353\353\377\303\303\303\377rrr\377\327\327\327" - "\377\357\357\357\377\360\360\360\377\361\361\361\377\362\362\362\377" - "\362\362\362\377\363\363\363\377\364\364\364\377\365\365\365\377\366" - "\366\366\377\367\367\367\377\370\370\370\377\371\371\371\377\372\372" - "\372\377\372\372\372\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0\377\366\366" - "\366\377\353\353\353\377\354\354\354\377rrr\377\356\356\356\377sss\377" - "\360\360\360\377\361\361\361\377ttt\377uuu\377\203\203\203\377uuu\377" - "vvv\377vvv\377www\377www\377xxx\377\372\372\372\377\373\373\373\377\374" - "\374\374\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0\377\367\367\367\377\355" - "\355\355\377\355\355\355\377\356\356\356\377\330\330\330\377sss\377\361" - "\361\361\377\362\362\362\377\363\363\363\377\364\364\364\377\365\365" - "\365\377\365\365\365\377\366\366\366\377\367\367\367\377\370\370\370" - "\377\371\371\371\377\372\372\372\377\373\373\373\377\374\374\374\377" - "\375\375\375\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0\377\367\367\367\377" - "\356\356\356\377\357\357\357\377\330\330\330\377sss\377\332\332\332\377" - "\362\362\362\377\363\363\363\377uuu\377vvv\377vvv\377www\377www\377w" - "ww\377xxx\377xxx\377\373\373\373\377\374\374\374\377\375\375\375\377" - "\376\376\376\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0\377\370\370\370\377" - "\360\360\360\377\361\361\361\377ttt\377ttt\377uuu\377\364\364\364\377" - "\365\365\365\377\366\366\366\377\367\367\367\377\370\370\370\377\371" - "\371\371\377\372\372\372\377\373\373\373\377\373\373\373\377\374\374" - "\374\377\375\375\375\377\376\376\376\377\377\377\377\377\377\377\377" - "\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0\377\370\370\370\377\361\361\361" - "\377\362\362\362\377\363\363\363\377\364\364\364\377\364\364\364\377" - "\365\365\365\377\366\366\366\377\367\367\367\377\370\370\370\377\371" - "\371\371\377\372\372\372\377\373\373\373\377\374\374\374\377\375\375" - "\375\377\375\375\375\377\376\376\376\377\377\377\377\377\377\377\377" - "\377\377\377\377\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0\377\362\362\362" - "\377\362\362\362\377\363\363\363\377\364\364\364\377\365\365\365\377" - "\366\366\366\377\366\366\366\377\367\367\367\377\370\370\370\377\371" - "\371\371\377\372\372\372\377\373\373\373\377\374\374\374\377\375\375" - "\375\377\376\376\376\377\377\377\377\377\377\377\377\377\377\377\377" - "\377\377\377\377\377\354\354\354\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0" - "\232\311\311\311\377\355\355\355\377\370\370\370\377\365\365\365\377" - "\366\366\366\377\367\367\367\377\370\370\370\377\370\370\370\377\371" - "\371\371\377\372\372\372\377\373\373\373\377\374\374\374\377\375\375" - "\375\377\376\376\376\377\377\377\377\377\377\377\377\377\377\377\377" - "\377\377\377\377\377\356\356\356\377\275\275\275\377\0\0\0\324\0\0\0" - ":\0\0\0\26\0\0\0\34\0\0\0\243\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377" - "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377" - "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377" - "\0\0\0\324\0\0\0Y\0\0\0-\0\0\0\20\0\0\0\6\0\0\0\24\0\0\0)\0\0\0""8\0" - "\0\0<\0\0\0=\0\0\0=\0\0\0=\0\0\0=\0\0\0=\0\0\0=\0\0\0=\0\0\0=\0\0\0=" - "\0\0\0=\0\0\0=\0\0\0=\0\0\0=\0\0\0=\0\0\0=\0\0\0""9\0\0\0-\0\0\0\31\0" - "\0\0\7\0\0\0\1\0\0\0\6\0\0\0\16\0\0\0\24\0\0\0\27\0\0\0\27\0\0\0\27\0" - "\0\0\27\0\0\0\27\0\0\0\27\0\0\0\27\0\0\0\27\0\0\0\27\0\0\0\27\0\0\0\27" - "\0\0\0\27\0\0\0\27\0\0\0\27\0\0\0\27\0\0\0\27\0\0\0\25\0\0\0\20\0\0\0" - "\7\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\2\0\0\0\3\0\0\0\3\0\0\0\3\0" - "\0\0\3\0\0\0\3\0\0\0\3\0\0\0\3\0\0\0\3\0\0\0\3\0\0\0\3\0\0\0\3\0\0\0" - "\3\0\0\0\3\0\0\0\3\0\0\0\3\0\0\0\3\0\0\0\3\0\0\0\2\0\0\0\1\0\0\0\0"}; - - -/* GdkPixbuf RGBA C-Source image dump */ - -#ifdef __SUNPRO_C -#pragma align 4 (stock_text_unindent) -#endif -#ifdef __GNUC__ -static const guint8 stock_text_unindent[] __attribute__ ((__aligned__ (4))) = -#else -static const guint8 stock_text_unindent[] = -#endif -{ "" - /* Pixbuf magic (0x47646b50) */ - "GdkP" - /* length: header (24) + pixel_data (2304) */ - "\0\0\11\30" - /* pixdata_type (0x1010002) */ - "\1\1\0\2" - /* rowstride (96) */ - "\0\0\0`" - /* width (24) */ - "\0\0\0\30" - /* height (24) */ - "\0\0\0\30" - /* pixel_data: */ - "\0\0\0\27\0\0\0\224\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377" - "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377" - "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\232" - "\0\0\0'\0\0\0\6\0\0\0\1\0\0\0\224\342\342\342\377\362\362\362\377\362" - "\362\362\377\362\362\362\377\362\362\362\377\363\363\363\377\363\363" - "\363\377\363\363\363\377\364\364\364\377\364\364\364\377\364\364\364" - "\377\365\365\365\377\365\365\365\377\365\365\365\377\366\366\366\377" - "\366\366\366\377\367\367\367\377\367\367\367\377\364\364\364\377\333" - "\333\333\377\0\0\0\243\0\0\0\25\0\0\0\6\0\0\0\377\360\360\360\377\340" - "\340\340\377\340\340\340\377\341\341\341\377\342\342\342\377\343\343" - "\343\377\344\344\344\377\345\345\345\377\256\256\256\377\347\347\347" - "\377\350\350\350\377\350\350\350\377\351\351\351\377\352\352\352\377" - "\353\353\353\377\354\354\354\377\355\355\355\377\356\356\356\377\357" - "\357\357\377\343\343\343\377\0\0\0\377\0\0\0)\0\0\0\16\0\0\0\377\362" - "\362\362\377\341\341\341\377\341\341\341\377\342\342\342\377\343\343" - "\343\377\344\344\344\377\345\345\345\377\346\346\346\377\347\347\347" - "\377\350\350\350\377\351\351\351\377\352\352\352\377\352\352\352\377" - "\353\353\353\377\354\354\354\377\355\355\355\377\356\356\356\377\357" - "\357\357\377\360\360\360\377\347\347\347\377\0\0\0\377\0\0\0""8\0\0\0" - "\25\0\0\0\377\362\362\362\377\342\342\342\377\254\254\254\377\254\254" - "\254\377\255\255\255\377\256\256\256\377\256\256\256\377\257\257\257" - "\377\260\260\260\377\261\261\261\377\262\262\262\377\262\262\262\377" - "\263\263\263\377\263\263\263\377\264\264\264\377\265\265\265\377\265" - "\265\265\377\266\266\266\377\361\361\361\377\350\350\350\377\0\0\0\377" - "\0\0\0=\0\0\0\27\0\0\0\377\363\363\363\377\343\343\343\377\344\344\344" - "\377\345\345\345\377\345\345\345\377\346\346\346\377\347\347\347\377" - "\350\350\350\377\351\351\351\377\352\352\352\377\353\353\353\377\354" - "\354\354\377\355\355\355\377\355\355\355\377\356\356\356\377\357\357" - "\357\377\360\360\360\377\361\361\361\377\362\362\362\377\351\351\351" - "\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0\377\363\363\363\377\344\344\344" - "\377\345\345\345\377\346\346\346\377\347\347\347\377\347\347\347\377" - "\350\350\350\377\351\351\351\377\352\352\352\377\353\353\353\377\354" - "\354\354\377\355\355\355\377\356\356\356\377\357\357\357\377\357\357" - "\357\377\360\360\360\377\361\361\361\377\362\362\362\377\363\363\363" - "\377\352\352\352\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0\377\363\363\363" - "\377\345\345\345\377\346\346\346\377\347\347\347\377\350\350\350\377" - "\351\351\351\377\351\351\351\377\352\352\352\377uuu\377vvv\377vvv\377" - "www\377www\377xxx\377xxx\377xxx\377yyy\377yyy\377\364\364\364\377\353" - "\353\353\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0\377\364\364\364\377\346" - "\346\346\377\347\347\347\377\252\252\252\377\351\351\351\377\352\352" - "\352\377\352\352\352\377\353\353\353\377\354\354\354\377\355\355\355" - "\377\356\356\356\377\357\357\357\377\360\360\360\377\361\361\361\377" - "\362\362\362\377\363\363\363\377\363\363\363\377\364\364\364\377\365" - "\365\365\377\354\354\354\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0\377\364" - "\364\364\377\347\347\347\377\252\252\252\377\0\0\0\377\352\352\352\377" - "\353\353\353\377\354\354\354\377\354\354\354\377vvv\377www\377www\377" - "xxx\377xxx\377yyy\377yyy\377zzz\377zzz\377zzz\377\366\366\366\377\355" - "\355\355\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0\377\365\365\365\377\252" - "\252\252\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\356\356" - "\356\377\356\356\356\377\357\357\357\377\360\360\360\377\361\361\361" - "\377\362\362\362\377\363\363\363\377\364\364\364\377\365\365\365\377" - "\366\366\366\377\367\367\367\377\367\367\367\377\356\356\356\377\0\0" - "\0\377\0\0\0=\0\0\0\27\0\0\0\377\365\365\365\377\351\351\351\377\253" - "\253\253\377\0\0\0\377\354\354\354\377\355\355\355\377\356\356\356\377" - "\357\357\357\377xxx\377xxx\377xxx\377yyy\377yyy\377zzz\377zzz\377{{{" - "\377{{{\377|||\377\370\370\370\377\357\357\357\377\0\0\0\377\0\0\0=\0" - "\0\0\27\0\0\0\377\365\365\365\377\352\352\352\377\353\353\353\377\255" - "\255\255\377\355\355\355\377\356\356\356\377\357\357\357\377\360\360" - "\360\377\361\361\361\377\362\362\362\377\362\362\362\377\363\363\363" - "\377\364\364\364\377\365\365\365\377\366\366\366\377\367\367\367\377" - "\370\370\370\377\371\371\371\377\372\372\372\377\360\360\360\377\0\0" - "\0\377\0\0\0=\0\0\0\27\0\0\0\377\366\366\366\377\353\353\353\377\354" - "\354\354\377\355\355\355\377\356\356\356\377\357\357\357\377\360\360" - "\360\377\361\361\361\377yyy\377yyy\377zzz\377zzz\377zzz\377\366\366\366" - "\377\367\367\367\377\370\370\370\377\371\371\371\377\372\372\372\377" - "\373\373\373\377\362\362\362\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0\377" - "\367\367\367\377\355\355\355\377\355\355\355\377\356\356\356\377\357" - "\357\357\377\360\360\360\377\361\361\361\377\362\362\362\377\363\363" - "\363\377\364\364\364\377\365\365\365\377\365\365\365\377\366\366\366" - "\377\367\367\367\377\370\370\370\377\371\371\371\377\372\372\372\377" - "\373\373\373\377\374\374\374\377\363\363\363\377\0\0\0\377\0\0\0=\0\0" - "\0\27\0\0\0\377\367\367\367\377\356\356\356\377\357\357\357\377\357\357" - "\357\377\360\360\360\377\361\361\361\377\362\362\362\377\363\363\363" - "\377\364\364\364\377\365\365\365\377\366\366\366\377\367\367\367\377" - "\367\367\367\377\370\370\370\377\371\371\371\377\372\372\372\377\373" - "\373\373\377\374\374\374\377\375\375\375\377\364\364\364\377\0\0\0\377" - "\0\0\0=\0\0\0\27\0\0\0\377\370\370\370\377\360\360\360\377\267\267\267" - "\377\270\270\270\377\270\270\270\377\270\270\270\377\271\271\271\377" - "\272\272\272\377\273\273\273\377\273\273\273\377\274\274\274\377\275" - "\275\275\377\276\276\276\377\276\276\276\377\276\276\276\377\277\277" - "\277\377\300\300\300\377\301\301\301\377\377\377\377\377\365\365\365" - "\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0\377\370\370\370\377\361\361\361" - "\377\362\362\362\377\363\363\363\377\364\364\364\377\364\364\364\377" - "\365\365\365\377\366\366\366\377\367\367\367\377\370\370\370\377\371" - "\371\371\377\372\372\372\377\373\373\373\377\374\374\374\377\375\375" - "\375\377\375\375\375\377\376\376\376\377\377\377\377\377\377\377\377" - "\377\365\365\365\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0\377\362\362\362" - "\377\362\362\362\377\363\363\363\377\364\364\364\377\365\365\365\377" - "\366\366\366\377\366\366\366\377\367\367\367\377\274\274\274\377\371" - "\371\371\377\372\372\372\377\373\373\373\377\374\374\374\377\375\375" - "\375\377\376\376\376\377\377\377\377\377\377\377\377\377\377\377\377" - "\377\377\377\377\377\331\331\331\377\0\0\0\377\0\0\0=\0\0\0\27\0\0\0" - "\232\311\311\311\377\332\332\332\377\356\356\356\377\353\353\353\377" - "\354\354\354\377\355\355\355\377\356\356\356\377\356\356\356\377\357" - "\357\357\377\360\360\360\377\361\361\361\377\362\362\362\377\363\363" - "\363\377\364\364\364\377\365\365\365\377\365\365\365\377\365\365\365" - "\377\365\365\365\377\344\344\344\377\275\275\275\377\0\0\0\324\0\0\0" - ":\0\0\0\26\0\0\0\34\0\0\0\243\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377" - "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377" - "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377" - "\0\0\0\324\0\0\0Y\0\0\0-\0\0\0\20\0\0\0\6\0\0\0\24\0\0\0)\0\0\0""8\0" - "\0\0<\0\0\0=\0\0\0=\0\0\0=\0\0\0=\0\0\0=\0\0\0=\0\0\0=\0\0\0=\0\0\0=" - "\0\0\0=\0\0\0=\0\0\0=\0\0\0=\0\0\0=\0\0\0=\0\0\0""9\0\0\0-\0\0\0\31\0" - "\0\0\7\0\0\0\1\0\0\0\6\0\0\0\16\0\0\0\24\0\0\0\27\0\0\0\27\0\0\0\27\0" - "\0\0\27\0\0\0\27\0\0\0\27\0\0\0\27\0\0\0\27\0\0\0\27\0\0\0\27\0\0\0\27" - "\0\0\0\27\0\0\0\27\0\0\0\27\0\0\0\27\0\0\0\27\0\0\0\25\0\0\0\20\0\0\0" - "\7\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\2\0\0\0\3\0\0\0\3\0\0\0\3\0" - "\0\0\3\0\0\0\3\0\0\0\3\0\0\0\3\0\0\0\3\0\0\0\3\0\0\0\3\0\0\0\3\0\0\0" - "\3\0\0\0\3\0\0\0\3\0\0\0\3\0\0\0\3\0\0\0\3\0\0\0\2\0\0\0\1\0\0\0\0"}; - - -/* GdkPixbuf RGBA C-Source image dump */ - -#ifdef __SUNPRO_C -#pragma align 4 (stock_timer) -#endif -#ifdef __GNUC__ -static const guint8 stock_timer[] __attribute__ ((__aligned__ (4))) = -#else -static const guint8 stock_timer[] = -#endif -{ "" - /* Pixbuf magic (0x47646b50) */ - "GdkP" - /* length: header (24) + pixel_data (2304) */ - "\0\0\11\30" - /* pixdata_type (0x1010002) */ - "\1\1\0\2" - /* rowstride (96) */ - "\0\0\0`" - /* width (24) */ - "\0\0\0\30" - /* height (24) */ - "\0\0\0\30" - /* pixel_data: */ - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\23\0" - "\0\0o\0\0\0\266\0\0\0\344\0\0\0\373\0\0\0\373\0\0\0\345\0\0\0\270\0\0" - "\0t\0\0\0\31\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\0\0\0\377\0\0\0\205\0\0\0" - "\373\207\207\207\377\300\300\300\377\323\323\323\377\326\326\326\377" - "\325\325\325\377\322\322\322\377\275\275\275\377\204\204\204\377\0\0" - "\0\374\0\0\0\217\0\0\0\10\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377[\210\262\377\0\0\0\377\324\324" - "\324\377\342\342\342\377\365\365\365\377\374\374\374\377\374\374\374" - "\377\374\374\374\377\373\373\373\377\363\363\363\377\354\354\354\377" - "\341\341\341\377\220\220\220\377\0\0\0\324\0\0\0""6\0\0\0\3\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\236" - "\270\321\377P\200\255\377\0\0\0\377\375\375\375\377\375\375\375\377\375" - "\375\375\377\316\316\316\377\310\310\310\377\374\374\374\377\373\373" - "\373\377\373\373\373\377\367\367\367\377\350\350\350\377\272\272\272" - "\377\0\0\0\352\0\0\0\77\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\377\277\321\341" - "\377\257\305\332\377\262\307\333\377\266\312\335\377\244\275\325\377" - "\234\267\321\377P\200\255\377\10\15\21\377\375\375\375\377\375\375\375" - "\377\277\277\277\377\270\270\270\377\373\373\373\377\373\373\373\377" - "\372\372\372\377\371\371\371\377\370\370\370\377\350\350\350\377\301" - "\301\301\377\0\0\0\330\0\0\0\32\0\0\0\4\0\0\0\0\0\0\0\377\302\322\341" - "\377\240\272\323\377\234\267\321\377\232\265\317\377\240\272\323\377" - "\234\267\321\377\227\263\316\377_\213\264\377\0\0\0\377\375\375\375\377" - "\260\260\260\377\251\251\251\377\373\373\373\377\373\373\373\377\371" - "\371\371\377\371\371\371\377\367\367\367\377\366\366\366\377\345\345" - "\345\377\217\217\217\377\0\0\0\242\0\0\0\20\0\0\0\1\0\0\0\377\310\326" - "\344\377\236\270\321\377\232\265\317\377\234\267\321\377\234\267\321" - "\377\234\267\321\377\240\272\323\377\225\262\316\377Ly\243\377\0\0\0" - "\377\241\241\241\377\231\231\231\377\373\373\373\377\372\372\372\377" - "\371\371\371\377\370\370\370\377\367\367\367\377\365\365\365\377\363" - "\363\363\377\350\350\350\377\0\0\0\374\0\0\0>\0\0\0\11\0\0\0\377g\213" - "\254\377\77e\210\377\77e\210\377\77e\210\377\77e\210\377\77e\210\377" - "\77e\210\377*C[\377\0\0\0\377\375\375\375\377\221\221\221\377\212\212" - "\212\377\373\373\373\377\372\372\372\377\371\371\371\377\370\370\370" - "\377\366\366\366\377\365\365\365\377\363\363\363\377\355\355\355\377" - "\216\216\216\377\0\0\0\227\0\0\0\25\0\0\0\377d\207\247\3777Yx\3777Yx" - "\3777Yx\377\77e\210\377\77e\210\377*C[\377\0\0\0\377\377\377\377\377" - "\376\376\376\377\201\201\201\377zzz\377\373\373\373\377\371\371\371\377" - "\370\370\370\377\367\367\367\377\365\365\365\377\364\364\364\377\362" - "\362\362\377\357\357\357\377\323\323\323\377\0\0\0\314\0\0\0(\0\0\0\377" - "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\77e\210\377*C[\377\0\0\0\377" - "\375\375\375\377\376\376\376\377\375\375\375\377rrr\377kkk\377\356\356" - "\356\377\371\371\371\377\370\370\370\377\366\366\366\377\364\364\364" - "\377\363\363\363\377\361\361\361\377\357\357\357\377\367\367\367\377" - "\0\0\0\354\0\0\0""9\0\0\0\0\0\0\0\373\350\350\350\377\372\372\372\377" - "\0\0\0\377*C[\377\0\0\0\377\374\374\374\377\374\374\374\377\374\374\374" - "\377\374\374\374\377ccc\377[[[\377\313\313\313\377\345\345\345\377\367" - "\367\367\377\365\365\365\377\364\364\364\377\362\362\362\377\273\273" - "\273\377\356\356\356\377\370\370\370\377\0\0\0\374\0\0\0D\0\0\0\0\0\0" - "\0\373\336\336\336\377\371\371\371\377\0\0\0\377\0\0\0\377\373\373\373" - "\377\373\373\373\377\373\373\373\377\373\373\373\377\373\373\373\377" - "\221\221\221\377LLL\377EEE\377bbb\377\300\300\300\377\335\335\335\377" - "\362\362\362\377\361\361\361\377\265\265\265\377\355\355\355\377\370" - "\370\370\377\0\0\0\374\0\0\0J\0\0\0\0\0\0\0\346\332\332\332\377\370\370" - "\370\377\0\0\0\377\371\371\371\377\371\371\371\377\371\371\371\377\372" - "\372\372\377\372\372\372\377\372\372\372\377\352\352\352\377\276\276" - "\276\377ddd\377...\377'''\377III\377\361\361\361\377\357\357\357\377" - "\355\355\355\377\371\371\371\377\367\367\367\377\0\0\0\355\0\0\0J\0\0" - "\0\0\0\0\0\273\275\275\275\377\365\365\365\377\367\367\367\377\370\370" - "\370\377\370\370\370\377\370\370\370\377\370\370\370\377\370\370\370" - "\377\370\370\370\377\367\367\367\377\366\366\366\377\335\335\335\377" - "\276\276\276\377WWW\377xxx\377\357\357\357\377\356\356\356\377\354\354" - "\354\377\371\371\371\377\323\323\323\377\0\0\0\316\0\0\0D\0\0\0\0\0\0" - "\0t\177\177\177\377\341\341\341\377\366\366\366\377\366\366\366\377\366" - "\366\366\377\366\366\366\377\367\367\367\377\366\366\366\377\366\366" - "\366\377\365\365\365\377\364\364\364\377\364\364\364\377\362\362\362" - "\377\361\361\361\377\357\357\357\377\356\356\356\377\355\355\355\377" - "\364\364\364\377\370\370\370\377\214\214\214\377\0\0\0\237\0\0\0""9\0" - "\0\0\0\0\0\0\31\0\0\0\374\320\320\320\377\353\353\353\377\364\364\364" - "\377\364\364\364\377\365\365\365\377\364\364\364\377\364\364\364\377" - "\364\364\364\377\363\363\363\377\362\362\362\377\361\361\361\377\360" - "\360\360\377\357\357\357\377\356\356\356\377\355\355\355\377\354\354" - "\354\377\370\370\370\377\361\361\361\377\0\0\0\374\0\0\0_\0\0\0(\0\0" - "\0\0\0\0\0\2\0\0\0\217\211\211\211\377\324\324\324\377\362\362\362\377" - "\362\362\362\377\362\362\362\377\362\362\362\377\362\362\362\377\361" - "\361\361\377\361\361\361\377\360\360\360\377\360\360\360\377\357\357" - "\357\377\356\356\356\377\355\355\355\377\354\354\354\377\371\371\371" - "\377\370\370\370\377\230\230\230\377\0\0\0\260\0\0\0H\0\0\0\25\0\0\0" - "\0\0\0\0\0\0\0\0\10\0\0\0\324\253\253\253\377\323\323\323\377\360\360" - "\360\377\360\360\360\377\360\360\360\377\360\360\360\377\360\360\360" - "\377\357\357\357\377\357\357\357\377\356\356\356\377\356\356\356\377" - "\355\355\355\377\354\354\354\377\371\371\371\377\370\370\370\377\304" - "\304\304\377\0\0\0\335\0\0\0Q\0\0\0.\0\0\0\11\0\0\0\0\0\0\0\0\0\0\0\1" - "\0\0\0""6\0\0\0\352\253\253\253\377\322\322\322\377\344\344\344\377\356" - "\356\356\377\356\356\356\377\356\356\356\377\256\256\256\377\255\255" - "\255\377\355\355\355\377\354\354\354\377\353\353\353\377\370\370\370" - "\377\370\370\370\377\302\302\302\377\0\0\0\355\0\0\0p\0\0\0<\0\0\0\20" - "\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\77\0\0\0\330\202\202\202" - "\377\315\315\315\377\331\331\331\377\354\354\354\377\354\354\354\377" - "\354\354\354\377\354\354\354\377\353\353\353\377\364\364\364\377\370" - "\370\370\377\367\367\367\377\214\214\214\377\0\0\0\335\0\0\0q\0\0\0B" - "\0\0\0\32\0\0\0\4\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\5\0\0" - "\0\32\0\0\0\242\0\0\0\374\210\210\210\377\310\310\310\377\335\335\335" - "\377\370\370\370\377\370\370\370\377\367\367\367\377\361\361\361\377" - "\300\300\300\377\0\0\0\374\0\0\0\260\0\0\0Q\0\0\0<\0\0\0\32\0\0\0\5\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0" - "\20\0\0\0>\0\0\0\227\0\0\0\314\0\0\0\354\0\0\0\374\0\0\0\374\0\0\0\355" - "\0\0\0\316\0\0\0\237\0\0\0_\0\0\0H\0\0\0.\0\0\0\20\0\0\0\4\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\1\0\0\0\10\0\0\0\25\0\0\0(\0\0\0""9\0\0\0D\0\0\0J\0\0\0J\0\0\0D\0\0" - "\0""9\0\0\0(\0\0\0\25\0\0\0\10\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\1\0\0\0\6\0\0\0\12\0\0\0\15\0\0\0\17\0\0\0\17\0\0\0\15\0\0\0\12" - "\0\0\0\6\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"}; - - -/* GdkPixbuf RGBA C-Source image dump */ - -#ifdef __SUNPRO_C -#pragma align 4 (stock_timer_stopped) -#endif -#ifdef __GNUC__ -static const guint8 stock_timer_stopped[] __attribute__ ((__aligned__ (4))) = -#else -static const guint8 stock_timer_stopped[] = -#endif -{ "" - /* Pixbuf magic (0x47646b50) */ - "GdkP" - /* length: header (24) + pixel_data (2304) */ - "\0\0\11\30" - /* pixdata_type (0x1010002) */ - "\1\1\0\2" - /* rowstride (96) */ - "\0\0\0`" - /* width (24) */ - "\0\0\0\30" - /* height (24) */ - "\0\0\0\30" - /* pixel_data: */ - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\23\0\0" - "\0o\0\0\0\266\0\0\0\344\0\0\0\373\0\0\0\373\0\0\0\345\0\0\0\270\0\0\0" - "t\0\0\0\31\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\205\0\0\0\373\207" - "\207\207\377\300\300\300\377\323\323\323\377\326\326\326\377\325\325" - "\325\377\322\322\322\377\275\275\275\377\204\204\204\377\0\0\0\374\0" - "\0\0\217\0\0\0\10\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0)\0\0\0\314\223\223\223\377\324\324\324\377" - "\342\342\342\377\365\365\365\377\374\374\374\377\374\374\374\377\374" - "\374\374\377\373\373\373\377\363\363\363\377\354\354\354\377\341\341" - "\341\377\220\220\220\377\0\0\0\324\0\0\0""6\0\0\0\3\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0)\0\0\0\344\277\277\277\377\336\336" - "\336\377\360\360\360\377\375\375\375\377\375\375\375\377\375\375\375" - "\377\316\316\316\377\310\310\310\377\374\374\374\377\373\373\373\377" - "\373\373\373\377\367\367\367\377\350\350\350\377\272\272\272\377\0\0" - "\0\352\0\0\0\77\0\0\0\5\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\314\267\267\267\377\342\342\342\377\373\373\373\377\375\375\375\377" - "\375\375\375\377\375\375\375\377\375\375\375\377\277\277\277\377\270" - "\270\270\377\373\373\373\377\373\373\373\377\372\372\372\377\371\371" - "\371\377\370\370\370\377\350\350\350\377\301\301\301\377\0\0\0\330\0" - "\0\0\32\0\0\0\4\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\205\207\207\207\377\336" - "\336\336\377\373\373\373\377\375\375\375\377\375\375\375\377\375\375" - "\375\377\375\375\375\377\375\375\375\377\260\260\260\377\251\251\251" - "\377\373\373\373\377\373\373\373\377\371\371\371\377\371\371\371\377" - "\367\367\367\377\366\366\366\377\345\345\345\377\217\217\217\377\0\0" - "\0\242\0\0\0\20\0\0\0\1\0\0\0\0\0\0\0\23\0\0\0\373\324\324\324\377\367" - "\367\367\377\375\375\375\377\375\375\375\377\375\375\375\377\375\375" - "\375\377\375\375\375\377\375\375\375\377\241\241\241\377\231\231\231" - "\377\373\373\373\377\372\372\372\377\371\371\371\377\370\370\370\377" - "\367\367\367\377\365\365\365\377\363\363\363\377\350\350\350\377\0\0" - "\0\374\0\0\0>\0\0\0\11\0\0\0\0\0\0\0o\207\207\207\377\342\342\342\377" - "\374\374\374\377\375\375\375\377\375\375\375\377\375\375\375\377\375" - "\375\375\377\376\376\376\377\375\375\375\377\221\221\221\377\212\212" - "\212\377\373\373\373\377\372\372\372\377\371\371\371\377\370\370\370" - "\377\366\366\366\377\365\365\365\377\363\363\363\377\355\355\355\377" - "\216\216\216\377\0\0\0\227\0\0\0\25\0\0\0\0\0\0\0\266\300\300\300\377" - "\364\364\364\377\374\374\374\377\374\374\374\377\375\375\375\377\375" - "\375\375\377\376\376\376\377\377\377\377\377\376\376\376\377\201\201" - "\201\377zzz\377\373\373\373\377\371\371\371\377\370\370\370\377\367\367" - "\367\377\365\365\365\377\364\364\364\377\362\362\362\377\357\357\357" - "\377\323\323\323\377\0\0\0\314\0\0\0(\0\0\0\0\0\0\0\346\323\323\323\377" - "\372\372\372\377\373\373\373\377\374\374\374\377\374\374\374\377\375" - "\375\375\377\375\375\375\377\376\376\376\377\375\375\375\377rrr\377k" - "kk\377\356\356\356\377\371\371\371\377\370\370\370\377\366\366\366\377" - "\364\364\364\377\363\363\363\377\361\361\361\377\357\357\357\377\367" - "\367\367\377\0\0\0\354\0\0\0""9\0\0\0\0\0\0\0\373\350\350\350\377\372" - "\372\372\377\337\337\337\377\373\373\373\377\374\374\374\377\374\374" - "\374\377\374\374\374\377\374\374\374\377\374\374\374\377ccc\377[[[\377" - "\313\313\313\377\345\345\345\377\367\367\367\377\365\365\365\377\364" - "\364\364\377\362\362\362\377\273\273\273\377\356\356\356\377\370\370" - "\370\377\0\0\0\374\0\0\0D\0\0\0\0\0\0\0\373\336\336\336\377\371\371\371" - "\377\332\332\332\377\372\372\372\377\373\373\373\377\373\373\373\377" - "\373\373\373\377\373\373\373\377\373\373\373\377\221\221\221\377LLL\377" - "EEE\377bbb\377\300\300\300\377\335\335\335\377\362\362\362\377\361\361" - "\361\377\265\265\265\377\355\355\355\377\370\370\370\377\0\0\0\374\0" - "\0\0J\0\0\0\0\0\0\0\346\332\332\332\377\370\370\370\377\371\371\371\377" - "\371\371\371\377\371\371\371\377\371\371\371\377\372\372\372\377\372" - "\372\372\377\372\372\372\377\352\352\352\377\276\276\276\377ddd\377." - "..\377'''\377III\377\361\361\361\377\357\357\357\377\355\355\355\377" - "\371\371\371\377\367\367\367\377\0\0\0\355\0\0\0J\0\0\0\0\0\0\0\273\275" - "\275\275\377\365\365\365\377\367\367\367\377\370\370\370\377\370\370" - "\370\377\370\370\370\377\370\370\370\377\370\370\370\377\370\370\370" - "\377\367\367\367\377\366\366\366\377\335\335\335\377\276\276\276\377" - "WWW\377xxx\377\357\357\357\377\356\356\356\377\354\354\354\377\371\371" - "\371\377\323\323\323\377\0\0\0\316\0\0\0D\0\0\0\0\0\0\0t\177\177\177" - "\377\341\341\341\377\366\366\366\377\366\366\366\377\366\366\366\377" - "\366\366\366\377\367\367\367\377\366\366\366\377\366\366\366\377\365" - "\365\365\377\364\364\364\377\364\364\364\377yyy\377\0\0\0\377\0\0\0\377" - "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\234" - "\0\0\0\0\0\0\0\31\0\0\0\374\320\320\320\377\353\353\353\377\364\364\364" - "\377\364\364\364\377\365\365\365\377\364\364\364\377\364\364\364\377" - "\364\364\364\377\363\363\363\377\362\362\362\377\361\361\361\377\0\0" - "\0\377\351\\\23\377\362g\37\377\356b\32\377\345Y\23\377\333T\22\377\322" - "S\27\377\312R\33\377\276D\17\377\0\0\0\377\0\0\0\0\0\0\0\2\0\0\0\217" - "\211\211\211\377\324\324\324\377\362\362\362\377\362\362\362\377\362" - "\362\362\377\362\362\362\377\362\362\362\377\361\361\361\377\361\361" - "\361\377\360\360\360\377\360\360\360\377\0\0\0\377\353a\33\377\376\362" - "\353\377\374\346\333\377\350k,\377\337e)\377\370\342\330\377\373\361" - "\355\377\300K\30\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\10\0\0\0\324\253" - "\253\253\377\323\323\323\377\360\360\360\377\360\360\360\377\360\360" - "\360\377\360\360\360\377\360\360\360\377\357\357\357\377\357\357\357" - "\377\356\356\356\377\0\0\0\377\345[\26\377\372\337\322\377\377\377\377" - "\377\372\346\334\377\372\344\331\377\377\377\377\377\364\334\322\377" - "\275G\23\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0""6\0\0\0\352\253" - "\253\253\377\322\322\322\377\344\344\344\377\356\356\356\377\356\356" - "\356\377\356\356\356\377\256\256\256\377\255\255\255\377\355\355\355" - "\377\0\0\0\377\335U\22\377\342d%\377\371\340\324\377\377\377\377\377" - "\377\377\377\377\365\336\323\377\307U\"\377\271B\16\377\0\0\0\377\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\77\0\0\0\330\202\202\202\377\315\315" - "\315\377\331\331\331\377\354\354\354\377\354\354\354\377\354\354\354" - "\377\354\354\354\377\353\353\353\377\0\0\0\377\323O\21\377\332a)\377" - "\371\343\331\377\377\377\377\377\377\377\377\377\366\344\333\377\304" - "W(\377\265@\16\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\5" - "\0\0\0\32\0\0\0\242\0\0\0\374\210\210\210\377\310\310\310\377\335\335" - "\335\377\370\370\370\377\370\370\370\377\367\367\367\377\0\0\0\377\312" - "N\23\377\367\341\327\377\377\377\377\377\364\335\323\377\364\335\323" - "\377\377\377\377\377\364\342\332\377\262B\23\377\0\0\0\377\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\20\0\0\0>\0\0\0\227\0\0" - "\0\314\0\0\0\354\0\0\0\374\0\0\0\374\0\0\0\355\0\0\0\377\302K\26\377" - "\370\353\345\377\363\333\321\377\304S\"\377\300R\"\377\361\332\320\377" - "\367\353\347\377\255A\25\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\10\0\0\0\25\0\0\0(\0\0\0""9\0\0\0D\0" - "\0\0J\0\0\0J\0\0\0\377\267@\16\377\272E\23\377\270C\21\377\266@\16\377" - "\263>\15\377\260>\20\377\253\77\23\377\2447\14\377\0\0\0\377\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0" - "\0\6\0\0\0\12\0\0\0\15\0\0\0\17\0\0\0\17\0\0\0\206\0\0\0\377\0\0\0\377" - "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\177"}; - - -/* GdkPixbuf RGBA C-Source image dump */ - -#ifdef __SUNPRO_C -#pragma align 4 (stock_trash) -#endif -#ifdef __GNUC__ -static const guint8 stock_trash[] __attribute__ ((__aligned__ (4))) = -#else -static const guint8 stock_trash[] = -#endif -{ "" - /* Pixbuf magic (0x47646b50) */ - "GdkP" - /* length: header (24) + pixel_data (2304) */ - "\0\0\11\30" - /* pixdata_type (0x1010002) */ - "\1\1\0\2" - /* rowstride (96) */ - "\0\0\0`" - /* width (24) */ - "\0\0\0\30" - /* height (24) */ - "\0\0\0\30" - /* pixel_data: */ - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0R\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0" - "X\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\5\0\0\0\220\34\34" - "\34\377vvv\377\346\346\346\377\323\323\323\377\303\303\303\377\220\220" - "\220\377III\377\0\0\0\377\0\0\0\276\0\0\0,\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0E\0\0\0\240\0\0\0" - "\377\0\0\0\377HG=\377\272\270\246\377\342\342\337\377\361\361\360\377" - "\352\351\346\377\362\362\356\377\353\352\345\377\301\300\265\377WVJ\377" - "RQF\377\0\0\0\377\0\0\0\377\0\0\0\227\0\0\0""3\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0T\0\0\0\377\250\246\217\377\275\273\241\377\300" - "\276\243\377\243\241\212\377ml\\\377||r\377LLI\377EE\77\377DC:\377oo" - "g\377\306\305\271\377\266\265\233\377ml]\377\263\261\233\377\247\246" - "\216\377\220\217z\377\0\0\0\377\0\0\0E\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\377\252\251\223\377\314\313\265\377\320\316\272\377\325\323" - "\301\377\256\255\243\377\224\223\212\377EDB\377##!\377541\377)(#\377" - "\36\36\32\377SRF\377\255\254\223\377\222\221\211\377\302\301\257\377" - "\261\257\226\377\254\252\222\377\223\222}\377\0\0\0\377\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\10\10\10\377\321\320\301\377\314\313\265\377\326\325" - "\304\377\337\336\321\377\316\315\300\377\254\254\246\377\220\217\212" - "\377~}w\377\\\\U\377GF>\377edV\377wve\377\200~o\377\276\275\247\377\265" - "\263\232\377\266\265\233\377\265\263\232\377\241\237\210\377\0\0\0\377" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\331\330\314\377\366\365\362" - "\377\333\332\321\377\332\331\316\377\345\344\331\377\320\317\303\377" - "\323\323\311\377\312\311\274\377\267\266\246\377\270\266\241\377\260" - "\257\226\377\241\237\210\377\271\270\235\377\271\267\235\377\270\266" - "\234\377\304\302\251\377\257\255\227\377\213\211v\377\0\0\0\377\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\252\251\230\377\266\266\262\377" - "\371\371\367\377\372\372\370\377\364\364\360\377\342\341\332\377\331" - "\331\316\377\333\332\317\377\325\323\301\377\323\321\276\377\304\302" - "\251\377\300\276\243\377\305\304\254\377\326\325\303\377\315\314\277" - "\377\273\272\255\377|zi\377qp`\377\0\0\0\336\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\23\23\23\316\231\230\202\377\257\256\235\377\303\303\276\377" - "\336\336\334\377\351\351\350\377\373\373\372\377\375\375\374\377\375" - "\375\375\377\374\373\372\377\371\371\367\377\362\362\357\377\352\351" - "\343\377\333\332\321\377\300\277\261\377\225\224\204\377xwf\377nm]\377" - "[[M\377\0\0\0\315\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\222]\\O\377\223" - "\222}\377\243\242\223\377\270\267\246\377\330\327\320\377\333\333\324" - "\377\323\322\312\377\310\310\303\377\306\305\275\377\275\274\255\377" - "\272\270\250\377\237\236\213\377\216\214x\377\214\213w\377\216\214x\377" - "zyh\377lk]\377NME\377\0\0\0y\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0""2" - "\0\0\0\377BBB\377{{s\377\237\237\226\377\322\321\307\377\334\333\322" - "\377\314\313\276\377\321\320\302\377\304\303\266\377\261\257\226\377" - "\261\257\226\377\261\257\226\377\232\230\203\377\200\177m\377}|k\377" - "ji^\377@@>\377\0\0\0\377\0\0\0""3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\37777-\377\17\17\17\377874\377xxu\377\231\230\223\377\212" - "\211~\377\263\262\244\377\252\252\236\377\243\241\212\377\207\206s\377" - "\217\215y\377baU\377TTQ\37711.\377\0\0\0\377++#\377\0\0\0\377\0\0\0\17" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377qq]\377WWK\377BB:\377" - "&&\40\377!!!\377\33\33\33\377\0\0\0\377$$$\377\0\0\0\377\0\0\0\377\0" - "\0\0\377\0\0\0\377\26\26\23\377**\"\37700'\377\77\77""4\377\0\0\0\377" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377zze\377[[Q" - "\377\205\205v\377vvk\377\230\230\216\377uuk\377QQF\377\177\177t\377j" - "jX\377@@5\377bbQ\377TTE\377>>3\377UUF\37744+\377QQC\377\0\0\0\377\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\205\205n\377]" - "]T\377\221\221\202\377\202\202x\377\252\252\243\377zzq\377NNE\377\212" - "\212\200\377||m\377BB7\377``R\377ZZJ\377<<2\377NNA\37755,\377TTE\377" - "\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0\3\0\0\0\377" - "\205\205n\377[[Q\377\254\254\234\377\205\205{\377\273\273\263\377\243" - "\243\232\377TTK\377\223\223\212\377\221\221\205\377BB7\377``R\377hhV" - "\377AA6\377jjX\377CC7\377jjX\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\1\0\0\0\5\0\0\0\10\0\0\0\377\205\205n\377[[Q\377\244\244\223\377" - "\205\205{\377\301\301\266\377\261\261\242\377kk_\377\261\261\242\377" - "\235\235\213\377TTE\377\204\204p\377qq^\377CC7\377jjX\377CC7\377jjX\377" - "\0\0\0\377\0\0\0\6\0\0\0\3\0\0\0\0\0\0\0\2\0\0\0\12\0\0\0\24\0\0\0\377" - "\205\205n\377[[Q\377\245\245\224\377\205\205{\377\302\302\267\377\261" - "\261\242\377kk_\377\261\261\242\377\235\235\213\377TTE\377\204\204p\377" - "qq^\377CC7\377jjX\377CC7\377jjX\377\0\0\0\377\0\0\0\26\0\0\0\13\0\0\0" - "\2\0\0\0\3\0\0\0\26\0\0\0+\0\0\0\377\205\205n\377[[Q\377\235\235\213" - "\377\205\205{\377\301\301\266\377\261\261\242\377kk_\377\261\261\242" - "\377\235\235\213\377TTE\377\204\204p\377qq^\377CC7\377jjX\377CC7\377" - "jjX\377\0\0\0\377\0\0\0""1\0\0\0\32\0\0\0\4\0\0\0\7\0\0\0#\0\0\0I\0\0" - "\0\377{{e\377[[Q\377\244\244\223\377\205\205{\377\301\301\266\377\261" - "\261\242\377kk_\377\261\261\242\377\235\235\213\377TTE\377\204\204p\377" - "qq^\377CC7\377jjX\377CC7\377__O\377\0\0\0\377\0\0\0H\0\0\0*\0\0\0\7\0" - "\0\0\12\0\0\0,\0\0\0X\0\0\0\377ffT\377[[Q\377\244\244\223\377\202\202" - "x\377\301\301\266\377\261\261\242\377kk_\377\261\261\242\377\235\235" - "\213\377TTE\377\204\204p\377qq^\377CC7\377jjX\377II<\377WWH\377\0\0\0" - "\377\0\0\0P\0\0\0*\0\0\0\7\0\0\0\6\0\0\0\35\0\0\0C\0\0\0r\0\0\0\377W" - "WJ\377}}m\377vvi\377\263\263\250\377\241\241\224\377mma\377\263\263\245" - "\377\235\235\213\377TTE\377\204\204p\377iiW\377AA5\377VVG\377DD8\377" - "\0\0\0\377\0\0\0\177\0\0\0C\0\0\0\35\0\0\0\4\0\0\0\1\0\0\0\13\0\0\0\34" - "\0\0\0""2\0\0\0g\0\0\0\320\0\0\0\377\0\0\0\377YYQ\377XXI\377NN@\377t" - "tg\377aaS\377NNA\377II<\377II<\377\0\0\0\377\0\0\0\377\0\0\0\304\0\0" - "\0t\0\0\0>\0\0\0%\0\0\0\11\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\6\0\0\0\17\0" - "\0\0\31\0\0\0\37\0\0\0r\0\0\0\264\0\0\0\302\0\0\0\377\0\0\0\377\0\0\0" - "\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\271\0\0\0\217\0\0\0S\0\0\0," - "\0\0\0*\0\0\0\33\0\0\0\10\0\0\0\1\0\0\0\0"}; - - -/* GdkPixbuf RGBA C-Source image dump */ - -#ifdef __SUNPRO_C -#pragma align 4 (stock_trash_full) -#endif -#ifdef __GNUC__ -static const guint8 stock_trash_full[] __attribute__ ((__aligned__ (4))) = -#else -static const guint8 stock_trash_full[] = -#endif -{ "" - /* Pixbuf magic (0x47646b50) */ - "GdkP" - /* length: header (24) + pixel_data (2304) */ - "\0\0\11\30" - /* pixdata_type (0x1010002) */ - "\1\1\0\2" - /* rowstride (96) */ - "\0\0\0`" - /* width (24) */ - "\0\0\0\30" - /* height (24) */ - "\0\0\0\30" - /* pixel_data: */ - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\10\10" - "\10\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\6\6\6\21\6\6\6K\16\16\16\377BBB\377JJJ\377>>>\377,,,\377\0" - "\0\0\377\6\6\6>\6\6\6!\0\0\0\0\0\0\0\0\0\0\0\0\10\10\10\377\10\10\10" - "\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\6\6\6:\0\0\0\377\0\0\0\377\205\203q\377\360\355\330\377\362\361\351" - "\377\356\355\344\377\307\306\272\377SRF\377\0\0\0\377\0\0\0\377\6\6\6" - "K\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\6\6\6>\20\20\20\377\302\300\245\377\301\277\245" - "\377zyg\377HG@\377''%\37765.\377\207\205r\377\240\236\210\377\243\241" - "\212\377\245\243\214\377\0\0\0\377\6\6\6!\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0+++\377\323\321\274" - "\377\334\332\304\377\342\340\317\377\271\267\242\377db[\377986\377<<" - "3\377a`S\377\232\230\203\377\267\265\233\377\263\262\230\377\244\242" - "\213\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\10\10\10\377" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\350\344\323\377\364\361\351" - "\377\362\361\344\377\352\351\332\377\345\342\322\377\325\322\276\377" - "\303\301\247\377\257\255\224\377\300\276\244\377\306\304\254\377\270" - "\266\234\377ywf\377\0\0\0\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\10\10\10\377\10\10\10\377\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\212\211" - "u\377\361\355\322\377\373\370\351\377\371\365\355\377\370\367\356\377" - "\370\367\354\377\365\363\346\377\354\352\331\377\336\335\313\377\0\0" - "\0\377\0\0\0\377BA8\377\0\0\0\377\0\0\0\0\0\0\0>\0\0\0\377\0\0\0W\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\202RQF\377sqe\377" - "\237\235\221\377\344\341\310\377\351\345\317\377\342\340\313\377\321" - "\321\313\377\216\215\177\377\0\0\0\377\377\377\377\377\301\301\301\377" - "\0\0\0\377\0\0\0\240\0\0\0L\0\0\0\377\377\377\377\377\0\0\0\377\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\37\37\33\377440\377" - "KID\377hgb\377pof\377kkd\377nl]\377XWK\377++%\377\0\0\0\377\377\377\377" - "\377\222\222\222\377\2\2\2\377\0\0\0\377\346\346\346\377\0\0\0\377\0" - "\0\0>\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0**#\377" - "\240\240\225\377MM@\377660\377**&\377//*\377\17\17\15\377\13\13\11\377" - "\20\20\15\377(($\377\0\0\0\377\274\274\274\377nnn\377\355\355\355\377" - "\0\0\0\377\0\0\0L\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0++$\377\245\244\231\377\267\266\256\377qpg\377\241\241\222" - "\377tsc\377@@5\377ii[\377%%\36\377\34\34\34\377\354\354\354\377\317\317" - "\317\377ooo\377\257\257\257\377\0\0\0\377\0\0\0!\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0,,%\377\255\255\243\377\331" - "\331\322\377\213\213\177\377\326\325\316\377\210\210{\377XWO\377\177" - "\177u\377\0\0\0\377\336\336\336\377\377\377\377\377\336\336\336\377\336" - "\336\336\377\311\311\311\377\0\0\0\377\0\0\0\77\0\0\0\1\0\0\0\1\0\0\0" - "\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\6,,%\377\255\255\243\377\332" - "\332\323\377\217\216\201\377\335\335\324\377\254\253\231\377]]R\377i" - "i`\377mmm\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377" - "\377\377\347\347\347\377\223\223\223\377\0\0\0\377\0\0\0+\0\0\0\13\0" - "\0\0\7\0\0\0\3\0\0\0\1\0\0\0\0\0\0\0\5\0\0\0\21++$\377~~u\377\330\330" - "\321\377\215\215\200\377\335\335\323\377\254\253\231\377PPG\377\30\30" - "\30\377\311\311\311\377\307\340\307\377x\265x\377\233\310\233\377\377" - "\377\377\377\347\347\347\377\306\306\306\377\0\0\0\377\0\0\0U\0\0\0\35" - "\0\0\0\27\0\0\0\15\0\0\0\3\0\0\0\1\0\0\0\11\0\0\0\34''!\377CC=\377\216" - "\216\206\377^^U\377\332\332\320\377\254\253\231\37755.\377]]]\377\324" - "\347\324\377]\246]\377\307\340\307\377\377\377\377\377]\246]\377\215" - "\272\215\377\345\345\345\377\206\206\206\377\0\0\0\377\0\0\0G\0\0\0'" - "\0\0\0\31\0\0\0\10\0\0\0\1\0\0\0\11\0\0\0\34\4\4\4k\6\6\6\377\6\6\6\377" - "BA:\377\217\217{\377zzl\377\0\0\0\377\304\304\304\377s\262s\377\307\340" - "\307\377\377\377\377\377\377\377\377\377x\265x\377n\253n\377\345\345" - "\345\377\220\220\220\377\0\0\0\377\0\0\0w\0\0\0.\0\0\0\"\0\0\0\16\0\0" - "\0\1\0\0\0\5\0\0\0\23\0\0\0&\0\0\0""0\4\4\4y\6\6\6\377\0\0\0\377\17\17" - "\17\377\0\0\0\377\327\327\327\377\377\377\377\377\377\377\377\377\377" - "\377\377\377\377\377\377\377\377\377\377\377\364\364\364\377S\235S\377" - "\277\277\277\377JJJ\377\0\0\0\377\0\0\0""1\0\0\0(\0\0\0\23\0\0\0\0\0" - "\0\0\1\0\0\0\6\0\0\0\23\0\0\0\40\0\0\0)\0\0\0-\0\0\0.\0\0\0""0\0\0\0" - "\377\354\354\354\377x\265x\377\377\377\377\377\377\377\377\377\307\340" - "\307\377\377\377\377\377\272\323\272\377\212\270\212\377\212\267\212" - "\377qqq\377\0\0\0\377\0\0\0""2\0\0\0*\0\0\0\27\0\0\0\0\0\0\0\0\0\0\0" - "\1\0\0\0\3\0\0\0\12\0\0\0\21\0\0\0\26\0\0\0\33\0\0\0\"\0\0\0\377\254" - "\254\254\377\354\354\354\377o\254o\377o\254o\377n\253n\377T\235T\377" - "\262\314\262\377\212\270\212\377\222\222\222\377aaa\377\0\0\0\377\0\0" - "\0""1\0\0\0'\0\0\0\23\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1" - "\0\0\0\2\0\0\0\10\0\0\0\22\0\0\0U\0\0\0\377\0\0\0\377iii\377\200\200" - "\200\377}\220}\377\241\241\241\377\203\203\203\377zzz\377CCC\377\0\0" - "\0\377\0\0\0w\0\0\0*\0\0\0\34\0\0\0\12\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\7\0\0\0\21\0\0\0""9\0\0\0p\0" - "\0\0\234\0\0\0\304\0\0\0\377\0\0\0\377\0\0\0\377(((\377444\263888q\0" - "\0\0#\0\0\0\32\0\0\0\13\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\6\0\0\0\14\0\0\0\21\0\0\0\23" - "\0\0\0\24\0\0\0\26\0\0\0\26\0\0\0\26\0\0\0\25\0\0\0\25\0\0\0\24\0\0\0" - "\17\0\0\0\10\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\2\0\0\0\4\0\0\0\6\0\0" - "\0\6\0\0\0\7\0\0\0\10\0\0\0\7\0\0\0\6\0\0\0\6\0\0\0\4\0\0\0\2\0\0\0\1" - "\0\0\0\0\0\0\0\0"}; - - -/* GdkPixbuf RGBA C-Source image dump */ - -#ifdef __SUNPRO_C -#pragma align 4 (stock_volume) -#endif -#ifdef __GNUC__ -static const guint8 stock_volume[] __attribute__ ((__aligned__ (4))) = -#else -static const guint8 stock_volume[] = -#endif -{ "" - /* Pixbuf magic (0x47646b50) */ - "GdkP" - /* length: header (24) + pixel_data (2304) */ - "\0\0\11\30" - /* pixdata_type (0x1010002) */ - "\1\1\0\2" - /* rowstride (96) */ - "\0\0\0`" - /* width (24) */ - "\0\0\0\30" - /* height (24) */ - "\0\0\0\30" - /* pixel_data: */ - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0,\0\0\0\377\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0I@f\320I@f+\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0-\0\0\0\377" - "\0\0\0\377\0\0\0\6\0\0\0\1\0\0\0\0\0\0\0\0I@f\377I@f+\0\0\0\0I@f+I@f" - "\252I@f+\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0-\0\0\0\377\256\253\237\377\0\0\0\377\0\0\0" - "\21\0\0\0\2\0\0\0\0\0\0\0\0I@f+I@f\377I@f+\0\0\0\0I@f\213I@fO\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\377\0\0\0\377\0\0\0\377" - "\0\0\0o\0\0\0\377\256\253\237\377\334\331\323\377\0\0\0\377\0\0\0\221" - "\0\0\0\4I@f\377I@f+\0\0\0\0I@f\252I@fO\0\0\0\0I@fcI@f\213\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\7\0\0\0\377\233\230\212\377\200~r" - "\377\0\0\0\377\256\253\237\377\342\341\334\377\362\362\360\377\0\0\0" - "\377\0\0\0\347\0\0\0\12I@f+I@f\377\0\0\0\0I@fOI@f\252\0\0\0\0I@f@I@f" - "\252\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0\22\0\0\0\377\343\342" - "\335\377\266\266\261\377\0\0\0\377\356\355\352\377\352\352\346\377\305" - "\301\267\377\0\0\0\377III\377\0\0\0\24\0\0\0\0I@f\377\0\0\0\0I@f+I@f" - "\320\0\0\0\0I@f#I@f\320\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\3\0\0\0" - "\30\0\0\0\377\260\254\234\377\222\216\201\377\0\0\0\377\315\312\301\377" - "\270\264\246\377\277\273\257\377\0\0\0\377\11\11\11\377\0\0\0\30\0\0" - "\0\0I@f\377\0\0\0\0\0\0\0\0I@f\377\0\0\0\0\0\0\0\0I@f\377\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\3\0\0\0\31\0\0\0\377\233\230\212\377\200~" - "r\377\0\0\0\377\236\232\214\377\260\254\234\377\260\254\234\377\0\0\0" - "\377+++\377\0\0\0\27\0\0\0\0I@f\377\0\0\0\0I@f+I@f\320\0\0\0\0I@f#I@" - "f\320\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\3\0\0\0\31\0\0\0\377yvl\377" - "dbY\377\0\0\0\377\236\232\214\377\236\232\214\377\236\232\214\377\0\0" - "\0\377\10\10\10\376\0\0\0\27I@f+I@f\377\0\0\0\0I@fOI@f\252\0\0\0\0I@" - "f@I@f\252\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\3\0\0\0\31\0\0\0\377" - "\0\0\0\377\0\0\0\377\0\0\0\240\0\0\0\377\215\212}\377\236\232\214\377" - "\0\0\0\377\0\0\0\300\0\0\0\30I@f\377I@f+\0\0\0\0I@f\252I@fO\0\0\0\0I" - "@fYI@f\213\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\3\0\0\0\30\0\0\0>\0" - "\0\0S\0\0\0S\0\0\0Q\0\0\0r\0\0\0\377~{p\377\0\0\0\377\0\0\0=\0\0\0\32" - "\0\0\0\0\0\0\0\0I@f+I@f\320I@f+\0\0\0\0I@f\213I@fO\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\2\0\0\0\22\0\0\0/\0\0\0=\0\0\0;\0\0\0""8\0\0\0C" - "\0\0\0o\0\0\0\377\0\0\0\377\0\0\0""1\0\0\0\26\0\0\0\0\0\0\0\0I@f\377" - "I@f+\0\0\0\0I@f+I@f\213I@f+\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0" - "\0\0\7\0\0\0\22\0\0\0\27\0\0\0\26\0\0\0\26\0\0\0%\0\0\0>\0\0\0l\0\0\0" - "\377\0\0\0\"\0\0\0\13\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0I@f\320" - "I@f+\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\2" - "\0\0\0\3\0\0\0\3\0\0\0\4\0\0\0\15\0\0\0#\0\0\0;\0\0\0""8\0\0\0\30\0\0" - "\0\4\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\3\0\0\0\15\0\0\0\37\0\0\0%\0\0\0\21\0\0\0\2\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\3\0\0\0\11\0\0\0\15\0\0\0\6\0\0\0\1\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\1\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"}; - - -/* GdkPixbuf RGBA C-Source image dump */ - -#ifdef __SUNPRO_C -#pragma align 4 (stock_midi) -#endif -#ifdef __GNUC__ -static const guint8 stock_midi[] __attribute__ ((__aligned__ (4))) = -#else -static const guint8 stock_midi[] = -#endif -{ "" - /* Pixbuf magic (0x47646b50) */ - "GdkP" - /* length: header (24) + pixel_data (2304) */ - "\0\0\11\30" - /* pixdata_type (0x1010002) */ - "\1\1\0\2" - /* rowstride (96) */ - "\0\0\0`" - /* width (24) */ - "\0\0\0\30" - /* height (24) */ - "\0\0\0\30" - /* pixel_data: */ - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\24\0\0\0n\0\0\0\24\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\36\0\0" - "\0\206\0\0\0$\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0$\0\0\0^\0\0\0u\0\0\0\231\0\0\0\231\0\0\0Q\0\0\0<\0\0\0" - "(\0\0\0\17\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0.\0\0\0\276\0\0\0X\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "^\0\0\0C\0\0\0u\0\0\0$\0\0\0\24\0\0\0E\0\0\0w\0\0\0}\0\0\0X\0\0\0""7" - "\0\0\0\15\0\0\0A\0\0\0\225\0\0\0""8\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\271\0\0\0$\0\0\0" - "\177\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0!\0\0\0>\0\0\0\201\0\0\0\311" - "\0\0\0\200\0\0\0G\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0E\0\0\0\364\0\0\0b\0\0\0\362\0\0\0" - "U\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\355\377\377\377\377\0\0\0\355\377\377\377\377" - "\0\0\0\356\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\376\250\250\250\377\0\0\0\355\267\267" - "\267\377\0\0\0\356\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0{\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0" - "\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377" - "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377" - "\0\0\0\377\0\0\0z\0\0\0\0\0\0\0\0\0\0\0\377\323\321\316\377\274\272\265" - "\377\254\252\244\377\230\226\217\377\230\226\217\377\230\226\217\377" - "\230\226\217\377\230\226\217\377\230\226\217\377\230\226\217\377\230" - "\226\217\377\230\226\217\377\230\226\217\377\230\226\217\377\230\226" - "\217\377\230\226\217\377\230\226\217\377zxr\377b`[\377USO\377\0\0\0\377" - "\0\0\0\23\0\0\0\0\0\0\0\377\257\255\251\377\234\232\225\377\204\202|" - "\377fd]\377fd]\377fd]\377fd]\377fd]\377fd]\377fd]\377fd]\377fd]\377f" - "d]\377fd]\377fd]\377fd]\377fd]\377RPJ\377RPJ\377A@;\377\0\0\0\377\0\0" - "\0,\0\0\0\3\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377" - "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377" - "\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377" - "\0\0\0\377\0\0\0\377\0\0\0""6\0\0\0\7\0\0\0\377\315\315\315\377VVV\377" - "\0\0\0\377\312\312\312\377VVV\377\0\0\0\377\310\310\310\377VVV\377\0" - "\0\0\377\305\305\305\377\302\302\302\377\271\271\271\377\303\303\303" - "\377VVV\377\0\0\0\377\300\300\300\377VVV\377\0\0\0\377\276\276\276\377" - "\270\270\270\377\0\0\0\377\0\0\0\77\0\0\0\14\0\0\0\377\377\377\377\377" - "kkk\377\0\0\0\377\374\374\374\377kkk\377\0\0\0\377\370\370\370\377kk" - "k\377\0\0\0\377\366\366\366\377\361\361\361\377\346\346\346\377\362\362" - "\362\377kkk\377\0\0\0\377\360\360\360\377kkk\377\0\0\0\377\355\355\355" - "\377\346\346\346\377\0\0\0\377\0\0\0E\0\0\0\22\0\0\0\377\377\377\377" - "\377kkk\377\0\0\0\377\373\373\373\377kkk\377\0\0\0\377\367\367\367\377" - "kkk\377\0\0\0\377\365\365\365\377\361\361\361\377\345\345\345\377\362" - "\362\362\377kkk\377\0\0\0\377\357\357\357\377kkk\377\0\0\0\377\354\354" - "\354\377\345\345\345\377\0\0\0\377\0\0\0D\0\0\0\23\0\0\0\377\377\377" - "\377\377kkk\377\0\0\0\377\372\372\372\377kkk\377\0\0\0\377\367\367\367" - "\377kkk\377\0\0\0\377\365\365\365\377\360\360\360\377\344\344\344\377" - "\362\362\362\377kkk\377\0\0\0\377\356\356\356\377kkk\377\0\0\0\377\353" - "\353\353\377\344\344\344\377\0\0\0\377\0\0\0D\0\0\0\20\0\0\0\377\376" - "\376\376\377NNN\377\0\0\0\377\372\372\372\377NNN\377\0\0\0\377\366\366" - "\366\377NNN\377\0\0\0\377\365\365\365\377\357\357\357\377\344\344\344" - "\377\361\361\361\377NNN\377\0\0\0\377\356\356\356\377NNN\377\0\0\0\377" - "\353\353\353\377\343\343\343\377\0\0\0\377\0\0\0D\0\0\0\16\0\0\0\377" - "\375\375\375\377\374\374\374\377\360\360\360\377\372\372\372\377\367" - "\367\367\377\354\354\354\377\366\366\366\377\363\363\363\377\347\347" - "\347\377\364\364\364\377\356\356\356\377\343\343\343\377\360\360\360" - "\377\352\352\352\377\336\336\336\377\356\356\356\377\346\346\346\377" - "\332\332\332\377\353\353\353\377\343\343\343\377\0\0\0\377\0\0\0D\0\0" - "\0\16\0\0\0\377\374\374\374\377\373\373\373\377\357\357\357\377\372\372" - "\372\377\366\366\366\377\353\353\353\377\366\366\366\377\362\362\362" - "\377\347\347\347\377\363\363\363\377\356\356\356\377\342\342\342\377" - "\360\360\360\377\351\351\351\377\336\336\336\377\355\355\355\377\345" - "\345\345\377\331\331\331\377\352\352\352\377\342\342\342\377\0\0\0\377" - "\0\0\0D\0\0\0\16\0\0\0\377\374\374\374\377\373\373\373\377\370\370\370" - "\377\373\373\373\377\373\373\373\377\366\366\366\377\373\373\373\377" - "\371\371\371\377\366\366\366\377\371\371\371\377\370\370\370\377\363" - "\363\363\377\370\370\370\377\366\366\366\377\361\361\361\377\370\370" - "\370\377\364\364\364\377\360\360\360\377\370\370\370\377\341\341\341" - "\377\0\0\0\377\0\0\0D\0\0\0\16\0\0\0\377\301\301\301\377\300\300\300" - "\377\267\267\267\377\301\301\301\377\275\275\275\377\270\270\270\377" - "\275\275\275\377\272\272\272\377\264\264\264\377\272\272\272\377\270" - "\270\270\377\251\251\251\377\272\272\272\377\263\263\263\377\251\251" - "\251\377\266\266\266\377\257\257\257\377\246\246\246\377\264\264\264" - "\377\255\255\255\377\0\0\0\377\0\0\0D\0\0\0\16\0\0\0n\0\0\0\377\0\0\0" - "\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0" - "\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0" - "\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\227\0\0\0\77\0" - "\0\0\14\0\0\0\6\0\0\0#\0\0\0>\0\0\0D\0\0\0D\0\0\0D\0\0\0D\0\0\0D\0\0" - "\0D\0\0\0D\0\0\0D\0\0\0D\0\0\0D\0\0\0D\0\0\0D\0\0\0D\0\0\0D\0\0\0D\0" - "\0\0D\0\0\0D\0\0\0D\0\0\0\77\0\0\0#\0\0\0\6\0\0\0\1\0\0\0\6\0\0\0\14" - "\0\0\0\15\0\0\0\16\0\0\0\16\0\0\0\16\0\0\0\16\0\0\0\16\0\0\0\16\0\0\0" - "\16\0\0\0\16\0\0\0\16\0\0\0\16\0\0\0\16\0\0\0\16\0\0\0\16\0\0\0\16\0" - "\0\0\16\0\0\0\16\0\0\0\16\0\0\0\14\0\0\0\6\0\0\0\1"}; - - -/* GdkPixbuf RGBA C-Source image dump */ - -#ifdef __SUNPRO_C -#pragma align 4 (stock_authentication) -#endif -#ifdef __GNUC__ -static const guint8 stock_authentication[] __attribute__ ((__aligned__ (4))) = -#else -static const guint8 stock_authentication[] = -#endif -{ "" - /* Pixbuf magic (0x47646b50) */ - "GdkP" - /* length: header (24) + pixel_data (9216) */ - "\0\0$\30" - /* pixdata_type (0x1010002) */ - "\1\1\0\2" - /* rowstride (192) */ - "\0\0\0\300" - /* width (48) */ - "\0\0\0""0" - /* height (48) */ - "\0\0\0""0" - /* pixel_data: */ - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\1\0\0\0\2\0\0\0\3" - "\0\0\0\4\0\0\0\5\0\0\0\5\0\0\0\5\0\0\0\4\0\0\0\3\0\0\0\2\0\0\0\1\0\0" - "\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\1\0\0\0\2\0\0\0\4\0\0\0\7\0\0\0\12\0\0\0\16\0\0\0\21\0\0\0\23\0\0" - "\0\23\0\0\0\23\0\0\0\21\0\0\0\16\0\0\0\12\0\0\0\7\0\0\0\4\0\0\0\2\0\0" - "\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\4\0\0\0\10\0\0" - "\0\16\0\0\0g\0\0\0\253\0\0\0\332\0\0\0\366\1\1\1\377\0\0\0\366\0\0\0" - "\334\0\0\0\260\0\0\0q\0\0\0\36\0\0\0\25\0\0\0\16\0\0\0\10\0\0\0\4\0\0" - "\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\2\0\0\0\5\0\0\0\14\0\0\0\203\0\0\0\354" - "\1\1\1\377\233\233\233\377\320\320\320\377\343\343\343\377\351\351\351" - "\377\335\335\335\377\306\306\306\377\221\221\221\377\1\1\1\377\0\0\0" - "\356\0\0\0\221\0\0\0#\0\0\0\27\0\0\0\15\0\0\0\5\0\0\0\2\0\0\0\1\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\2\0" - "\0\0\7\0\0\0>\0\0\0\320\1\1\1\377\276\276\276\377\352\352\352\377\361" - "\361\361\377\363\363\363\377\361\361\361\377\355\355\355\377\352\352" - "\352\377\346\346\346\377\342\342\342\377\330\330\330\377\234\234\234" - "\377\1\1\1\377\0\0\0\330\0\0\0W\0\0\0\36\0\0\0\20\0\0\0\7\0\0\0\2\0\0" - "\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0\7" - "\0\0\0R\0\0\0\366```\377\343\343\343\377\363\363\363\377\360\360\360" - "\377\354\354\354\377\346\346\346\377\344\344\344\377\343\343\343\377" - "\342\342\342\377\342\342\342\377\342\342\342\377\341\341\341\377\326" - "\326\326\377\267\267\267\377EEE\377\0\0\0\367\0\0\0m\0\0\0\"\0\0\0\22" - "\0\0\0\7\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0" - "\0\5\0\0\0>\0\0\0\366\205\205\205\377\354\354\354\377\363\363\363\377" - "\352\352\352\377\343\343\343\377\331\331\331\377\316\316\316\377\302" - "\302\302\377\302\302\302\377\314\314\314\377\325\325\325\377\334\334" - "\334\377\340\340\340\377\335\335\335\377\310\310\310\377\271\271\271" - "\377bbb\377\0\0\0\370\0\0\0Y\0\0\0!\0\0\0\17\0\0\0\5\0\0\0\1\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\4\0\0\0\15\0\0\0\320^^^\377\354\354\354" - "\377\363\363\363\377\350\350\350\377\334\334\334\377\274\274\274\370" - "XXX\360\24\24\24\341\0\0\0\333\0\0\0\326\0\0\0\324{{{\352\276\276\276" - "\366\340\340\340\377\337\337\337\377\334\334\334\377\303\303\303\377" - "\273\273\273\377LLL\377\0\0\0\273\0\0\0""5\0\0\0\33\0\0\0\13\0\0\0\3" - "\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0\10\0\0\0\203\1\1\1\377\342\342" - "\342\377\363\363\363\377\351\351\351\377\330\330\330\377\227\227\227" - "\354\0\0\0\352\0\0\0\274\0\0\0g\0\0\0Y\0\0\0S\0\0\0Q\0\0\0Y\0\0\0\305" - "\234\234\234\351\335\335\335\371\340\340\340\377\330\330\330\377\273" - "\273\273\377\266\266\266\377\1\1\1\377\0\0\0x\0\0\0*\0\0\0\23\0\0\0\7" - "\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\3\0\0\0\15\0\0\0\354\271\271\271\377\363" - "\363\363\377\353\353\353\377\330\330\330\377\212\212\212\356\0\0\0\342" - "\0\0\0}\0\0\0W\0\0\0F\0\0\0""9\0\0\0""0\0\0\0.\0\0\0""1\0\0\0;\0\0\0" - "\224\222\222\222\337\333\333\333\367\337\337\337\377\316\316\316\377" - "\263\263\263\377\223\223\223\377\0\0\0\313\0\0\0:\0\0\0\36\0\0\0\13\0" - "\0\0\3\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\1\0\0\0\6\0\0\0E\1\1\1\377\352\352\352\377\361\361" - "\361\377\335\335\335\377\300\300\300\377\2\2\2\350\0\0\0\214\0\0\0T\0" - "\0\0<\0\0\0)\0\0\0\34\0\0\0\25\0\0\0\23\0\0\0\26\0\0\0\37\0\0\0.\0\0" - "\0\240\242\242\242\337\345\345\345\377\335\335\335\377\300\300\300\377" - "\266\266\266\377\1\1\1\377\0\0\0a\0\0\0)\0\0\0\22\0\0\0\5\0\0\0\1\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\2\0\0\0\11\0\0\0p\240\240\240\377\361\361\361\377\350\350\350\377" - "\306\306\306\377\201\201\201\354\0\0\0\322\0\0\0Z\0\0\0>\0\0\0%\0\0\0" - "\24\0\0\0\13\0\0\0\7\0\0\0\5\0\0\0\7\0\0\0\15\0\0\0\30\0\0\0""0\2\2\2" - "\313\334\334\334\357\352\352\352\377\321\321\321\377\256\256\256\377" - "vvv\377\0\0\0\220\0\0\0""4\0\0\0\30\0\0\0\10\0\0\0\2\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\3\0\0\0\14" - "\0\0\0\223\320\320\320\377\362\362\362\377\331\331\331\377\300\300\300" - "\377///\345\0\0\0\213\0\0\0J\0\0\0,\0\0\0\25\0\0\0\11\0\0\0\3\0\0\0\1" - "\0\0\0\1\0\0\0\2\0\0\0\4\0\0\0\13\0\0\0\31\0\0\0n\202\202\202\340\356" - "\356\356\377\334\334\334\377\265\265\265\377\237\237\237\377\0\0\0\274" - "\0\0\0>\0\0\0\37\0\0\0\13\0\0\0\3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\4\0\0\0\16\0\0\0\325\341\341\341" - "\377\361\361\361\377\314\314\314\377\300\300\300\377\17\17\17\331\0\0" - "\0e\0\0\0=\0\0\0\40\0\0\0\16\0\0\0\5\0\0\0\2\0\0\0\1\0\0\0\1\0\0\0\1" - "\0\0\0\2\0\0\0\5\0\0\0\17\0\0\0#\37\37\37\323\354\354\354\377\342\342" - "\342\377\300\300\300\377\250\250\250\377\0\0\0\325\0\0\0G\0\0\0%\0\0" - "\0\16\0\0\0\4\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\2\0\0\0\7\0\0\0\24\0\0\0\336\346\346\346\377\357\357\357\377" - "\313\313\313\377\267\267\267\377\0\0\0\322\0\0\0W\0\0\0""6\0\0\0\34\0" - "\0\0\15\0\0\0\10\0\0\0\5\0\0\0\5\0\0\0\5\0\0\0\5\0\0\0\5\0\0\0\10\0\0" - "\0\16\0\0\0\35\0\0\0\301\351\351\351\377\345\345\345\377\305\305\305" - "\377\256\256\256\377\0\0\0\360\0\0\0O\0\0\0.\0\0\0\25\0\0\0\10\0\0\0" - "\3\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\2\0\0\0\6\0\0\0" - "\17\0\0\0\37\0\0\0\354\332\332\332\377\353\353\353\377\312\312\312\377" - "\253\253\253\377\0\0\0\322\0\0\0Y\0\0\0<\0\0\0%\0\0\0\32\0\0\0\26\0\0" - "\0\25\0\0\0\25\0\0\0\25\0\0\0\25\0\0\0\25\0\0\0\26\0\0\0\32\0\0\0&\0" - "\0\0\300\344\344\344\377\343\343\343\377\312\312\312\377\255\254\252" - "\377\0\0\0\371\0\0\0Y\0\0\0;\0\0\0\"\0\0\0\23\0\0\0\12\0\0\0\5\0\0\0" - "\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\5""1\26\7f7\31\10\3777\31\10\377" - "7\31\10\377\234R\27\377\270n%\377\271k&\377\247Z\34\3777\31\10\3777\31" - "\10\3777\31\10\3777\31\10\3777\31\10\3777\31\10\3777\31\10\3777\31\10" - "\3777\31\10\3777\31\10\3777\31\10\3777\31\10\3777\31\10\3777\31\10\377" - "7\31\10\377\245^\37\377\274s*\377\270o'\377\227U\32\3777\31\10\3777\31" - "\10\3777\31\10\3777\31\10\377%\20\5_\0\0\0\33\0\0\0\16\0\0\0\5\0\0\0" - "\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\3\0\0\0\12""7\31\10\377\311\234b\377\364\341\313" - "\377\364\340\311\377\357\333\276\377\354\325\267\377\353\322\264\377" - "\352\322\263\377\353\317\260\377\351\316\256\377\350\314\253\377\347" - "\314\250\377\350\307\241\377\346\306\241\377\346\306\241\377\346\306" - "\241\377\346\306\241\377\346\306\241\377\350\307\241\377\350\307\241" - "\377\346\306\241\377\345\305\240\377\345\305\240\377\343\302\232\377" - "\340\300\233\377\340\275\223\377\337\272\222\377\337\272\216\377\335" - "\263\206\377\325\254|\377\242a\33\3777\31\10\377\0\0\0""1\0\0\0\32\0" - "\0\0\12\0\0\0\3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\4\0\0\0\20""7\31\10\377\365\346\320" - "\377\352\323\257\377\352\317\257\377\343\302\232\377\332\270\213\377" - "\332\266\207\377\330\260\201\377\326\256\177\377\323\253|\377\321\251" - "t\377\317\245n\377\314\243m\377\312\237g\377\312\237g\377\312\237g\377" - "\312\237g\377\312\237g\377\312\237g\377\312\237g\377\310\236g\377\306" - "\233c\377\302\230a\377\302\223[\377\277\220R\377\274\210K\377\275\204" - "@\377\272~=\377\263v4\377\247j\"\377\215S\24\3777\31\10\377\0\0\0E\0" - "\0\0&\0\0\0\17\0\0\0\4\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\5\0\0\0\23""7\31\10\377\365" - "\344\316\377\351\316\256\377\347\315\250\377\337\275\220\377\330\261" - "\203\377\325\255~\377\322\252{\377\322\246w\377\320\247q\377\315\243" - "l\377\310\237h\377\305\233d\377\304\231a\377\304\231a\377\304\231a\377" - "\305\232b\377\305\232b\377\305\232b\377\305\232b\377\304\231a\377\302" - "\230]\377\301\224Z\377\277\220T\377\276\216O\377\274\207I\377\272\202" - "\77\377\272~=\377\261t2\377\247j\"\377\213R\24\3777\31\10\377\0\0\0Q" - "\0\0\0.\0\0\0\23\0\0\0\5\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\5\0\0\0\24""7\31\10\377\365" - "\346\320\377\353\317\260\377\351\316\256\377\340\277\227\377\333\264" - "\206\377\330\260\201\377\327\257\200\377\322\254{\377\322\246w\377\320" - "\246o\377\314\243m\377\265\216\\\377\240~P\377\232yM\377\232yM\377\262" - "\214Y\377\307\234d\377\307\234d\377\307\234d\377\305\232b\377\302\227" - "_\377\302\223[\377\277\220T\377\276\216O\377\274\204A\377\272\202\77" - "\377\265|8\377\257s,\377\243f\36\377\207P\24\3777\31\10\377\0\0\0W\0" - "\0\0""2\0\0\0\25\0\0\0\5\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\5\0\0\0\25""7\31\10\377\365" - "\344\316\377\352\317\257\377\350\315\251\377\337\274\222\377\325\255" - "~\377\322\253}\377\322\252{\377\320\253u\377\320\246o\377\315\243l\377" - "\263\216]\377\224tJ\377w^<\377\40\31\20\377\0\0\0\377\40\31\20\377y`" - ">\377\310\237h\377\312\237g\377\307\235f\377\305\233d\377\304\231a\377" - "\302\230]\377\277\221V\377\276\216O\377\276\206E\377\274\203\77\377\266" - "|7\377\252l#\377\215U\24\3777\31\10\377\0\0\0X\0\0\0""3\0\0\0\25\0\0" - "\0\6\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\1\0\0\0\5\0\0\0\25""7\31\10\377\365\344\316\377\351\316" - "\256\377\350\316\251\377\341\274\224\377\332\264\207\377\330\262\201" - "\377\327\257\200\377\322\252{\377\320\250s\377\317\245n\377\222tM\377" - "z`>\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377y`\77\377\312" - "\237g\377\305\233d\377\305\232b\377\302\227_\377\301\224Z\377\276\217" - "Q\377\274\207I\377\272\201=\377\267~:\377\263y4\377\246i!\377\213R\24" - "\3777\31\10\377\0\0\0X\0\0\0""3\0\0\0\25\0\0\0\6\0\0\0\1\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\5" - "\0\0\0\25""7\31\10\377\364\341\313\377\350\315\251\377\345\311\244\377" - "\335\272\220\377\325\255~\377\322\252{\377\322\252{\377\322\245u\377" - "\321\247p\377\314\243m\377\225uL\377\40\32\20\377\0\0\0\377\0\0\0\377" - "\0\0\0\377\0\0\0\377\0\0\0\377!\32\20\377\327\267\216\377\310\236g\377" - "\306\233c\377\304\231a\377\302\227_\377\277\221V\377\275\214L\377\274" - "\210E\377\273\202>\377\266|7\377\251k\"\377\215S\24\3777\31\10\377\0" - "\0\0X\0\0\0""3\0\0\0\25\0\0\0\6\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\5\0\0\0\25""7\31\10" - "\377\365\344\316\377\351\315\254\377\347\313\246\377\337\274\222\377" - "\330\260\201\377\326\256\177\377\322\253}\377\322\252{\377\321\245r\377" - "\315\243l\377\226wN\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0" - "\377\0\0\0\377\0\0\0\377\341\313\255\377\307\235f\377\304\231a\377\302" - "\227_\377\300\223Y\377\276\217Q\377\275\214L\377\274\205C\377\272~=\377" - "\263x2\377\247j\"\377\213R\24\3777\31\10\377\0\0\0X\0\0\0""3\0\0\0\25" - "\0\0\0\6\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\1\0\0\0\5\0\0\0\25""7\31\10\377\364\341\313\377\350" - "\314\247\377\345\312\244\377\334\271\217\377\326\256\177\377\323\253" - "|\377\322\252{\377\322\245u\377\317\245n\377\312\241k\377\225uL\377\40" - "\31\20\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\40\31\17" - "\377\336\306\247\377\302\230a\377\301\222V\377\277\220T\377\275\215N" - "\377\274\207I\377\272\202\77\377\265}:\377\265x6\377\255r,\377\244f\35" - "\377\207P\24\3777\31\10\377\0\0\0X\0\0\0""3\0\0\0\25\0\0\0\6\0\0\0\1" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\1\0\0\0\5\0\0\0\25""7\31\10\377\365\344\316\377\351\315\254\377\347" - "\313\246\377\335\272\220\377\325\255~\377\322\253y\377\321\250r\377\317" - "\245n\377\312\241k\377\310\237h\377\305\232b\377u\\8\377\0\0\0\377\0" - "\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377u[7\377\335\307\247\377\302\223" - "[\377\301\222V\377\277\220R\377\276\216O\377\274\210K\377\274\203\77" - "\377\267\177<\377\266|7\377\260u/\377\244h!\377\211Q\24\3777\31\10\377" - "\0\0\0X\0\0\0""3\0\0\0\25\0\0\0\6\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\5\0\0\0\25""7\31\10" - "\377\365\346\320\377\352\317\257\377\351\316\252\377\341\274\224\377" - "\333\264\206\377\332\263\205\377\332\263\205\377\326\256\177\377\322" - "\253y\377\320\250s\377\317\245n\377\314\243m\377z`>\377!\32\20\377\0" - "\0\0\377\40\32\21\377\222~c\377\343\317\263\377\324\263\210\377\306\233" - "c\377\302\230]\377\301\224Z\377\277\220T\377\275\214L\377\273\204D\377" - "\267\177<\377\266z9\377\261v0\377\244h!\377\213R\24\3777\31\10\377\0" - "\0\0X\0\0\0""3\0\0\0\25\0\0\0\6\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\5\0\0\0\25""7\31\10" - "\377\364\341\313\377\351\316\252\377\345\311\244\377\332\270\213\377" - "\322\254w\377\322\245u\377\321\250r\377\315\244n\377\312\241k\377\310" - "\236g\377\304\231a\377\302\230]\377\245}M\377\0\0\0\377\0\0\0\377\0\0" - "\0\377\331\277\236\377\312\243q\377\304\231a\377\302\230a\377\302\223" - "[\377\277\221V\377\277\220T\377\275\214L\377\274\210E\377\272\202\77" - "\377\267}8\377\263x2\377\255o&\377\211Q\24\3777\31\10\377\0\0\0X\0\0" - "\0""3\0\0\0\25\0\0\0\6\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\5\0\0\0\25""7\31\10\377\365" - "\344\316\377\351\316\252\377\347\313\246\377\334\271\217\377\326\256" - "\177\377\323\253|\377\322\252{\377\322\245u\377\320\246o\377\312\241" - "k\377\310\236g\377\272\223^\377\225tJ\377\0\0\0\377\0\0\0\377\0\0\0\377" - "\305\263\233\377\304\231a\377\304\231a\377\302\230a\377\301\222V\377" - "\277\221V\377\276\216O\377\274\207I\377\274\203\77\377\267~:\377\265" - "y8\377\255v.\377\257r*\377\207P\24\3777\31\10\377\0\0\0X\0\0\0""3\0\0" - "\0\25\0\0\0\6\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\5\0\0\0\25""7\31\10\377\365\346\320\377" - "\352\317\257\377\351\316\252\377\341\275\226\377\333\264\206\377\330" - "\260\201\377\326\256\177\377\322\254{\377\320\250s\377\315\243l\377\312" - "\240i\377\265\217]\377\203fA\377\0\0\0\377\0\0\0\377\0\0\0\377\217uT" - "\377\336\306\247\377\304\231a\377\302\230]\377\301\222V\377\277\220T" - "\377\275\215N\377\274\211G\377\274\203\77\377\267~:\377\265y8\377\257" - "s,\377\275\202B\377\207P\24\3777\31\10\377\0\0\0X\0\0\0""3\0\0\0\25\0" - "\0\0\6\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\1\0\0\0\5\0\0\0\25""7\31\10\377\364\341\313\377\347" - "\314\250\377\346\306\241\377\333\270\216\377\323\253|\377\322\253y\377" - "\321\247v\377\320\246o\377\314\242k\377\312\237g\377\305\232b\377\264" - "\215Y\377lT3\377\0\0\0\377\0\0\0\377\0\0\0\377mU6\377\336\306\247\377" - "\304\231a\377\302\230a\377\302\223[\377\301\222V\377\277\220R\377\274" - "\210K\377\273\204D\377\272~=\377\264{7\377\261v0\377\300\215Q\377\211" - "N\24\3777\31\10\377\0\0\0X\0\0\0""3\0\0\0\25\0\0\0\6\0\0\0\1\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0" - "\0\5\0\0\0\25""7\31\10\377\364\340\311\377\347\313\246\377\346\306\241" - "\377\334\263\207\377\321\253v\377\321\245r\377\320\246o\377\315\243l" - "\377\310\237h\377\304\231a\377\262\213W\377\254\203N\377\77""0\34\377" - "\0\0\0\377\0\0\0\377\0\0\0\377@2\36\377\322\275\237\377\310\242q\377" - "\302\223[\377\277\221V\377\277\220T\377\275\215N\377\274\211G\377\270" - "\200=\377\265|8\377\265x6\377\257t.\377\300\215Q\377\206L\23\3777\31" - "\10\377\0\0\0X\0\0\0""3\0\0\0\25\0\0\0\6\0\0\0\1\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\5\0\0\0\25" - "7\31\10\377\364\341\313\377\346\312\245\377\346\306\241\377\333\264\206" - "\377\321\253v\377\320\247q\377\317\245n\377\312\241k\377\310\236g\377" - "\304\231a\377\262\207S\377\232uE\377\77""0\34\377\0\0\0\377\0\0\0\377" - "\0\0\0\377\77""0\34\377\211h>\377\332\301\240\377\275\216P\377\275\215" - "N\377\274\210K\377\273\204D\377\272\202\77\377\267~:\377\264{7\377\261" - "w2\377\255q*\377\312\235c\377\207M\24\3777\31\10\377\0\0\0X\0\0\0""3" - "\0\0\0\25\0\0\0\6\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\5\0\0\0\25""7\31\10\377\364\341\313" - "\377\350\314\247\377\344\310\243\377\332\270\215\377\323\253|\377\322" - "\246w\377\320\253u\377\320\246o\377\313\242l\377\310\237h\377\267\217" - "[\377\177c\77\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377r" - "Y8\377\323\263\211\377\302\230a\377\301\222V\377\277\221V\377\276\217" - "Q\377\274\210K\377\274\204A\377\265}:\377\265|8\377\261v0\377\314\237" - "i\377\211Q\24\3777\31\10\377\0\0\0X\0\0\0""3\0\0\0\25\0\0\0\6\0\0\0\1" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\1\0\0\0\5\0\0\0\25""7\31\10\377\365\344\316\377\350\315\251\377\345" - "\311\244\377\334\271\217\377\325\255~\377\322\252{\377\322\253y\377\321" - "\247p\377\317\245n\377\312\241k\377\310\237h\377\305\232b\377\305\232" - "b\377\305\232b\377\305\232b\377\305\232b\377\305\232b\377\305\232b\377" - "\305\232b\377\304\231a\377\302\223[\377\277\221V\377\277\220R\377\274" - "\207I\377\274\203\77\377\267~:\377\270\177;\377\274\202=\377\316\241" - "k\377\211N\24\3777\31\10\377\0\0\0X\0\0\0""3\0\0\0\25\0\0\0\6\0\0\0\1" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\1\0\0\0\5\0\0\0\25""7\31\10\377\364\341\313\377\350\313\245\377\345" - "\311\244\377\332\270\213\377\322\252{\377\322\245u\377\321\247p\377\315" - "\244n\377\312\237g\377\307\234d\377\304\231a\377\301\227\\\377\300\223" - "Y\377\300\222W\377\300\222W\377\300\222W\377\300\222W\377\300\222W\377" - "\300\222W\377\277\221V\377\277\220R\377\276\216O\377\274\211G\377\273" - "\204D\377\271\201>\377\265|8\377\270\177;\377\274\205E\377\315\240j\377" - "\207P\24\3777\31\10\377\0\0\0X\0\0\0""3\0\0\0\25\0\0\0\6\0\0\0\1\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1" - "\0\0\0\5\0\0\0\25""7\31\10\377\364\340\311\377\346\311\243\377\345\305" - "\240\377\331\270\210\377\323\246v\377\320\247q\377\317\245n\377\313\242" - "l\377\312\237g\377\306\233c\377\305\232b\377\304\231a\377\302\230]\377" - "\302\230a\377\302\230a\377\304\231a\377\304\231a\377\305\232b\377\305" - "\232b\377\304\231a\377\301\224Z\377\300\223Y\377\277\220T\377\274\214" - "M\377\274\211G\377\276\212M\377\304\231a\377\276\213O\377\307\235`\377" - "\211N\24\3777\31\10\377\0\0\0W\0\0\0""3\0\0\0\25\0\0\0\5\0\0\0\1\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1" - "\0\0\0\5\0\0\0\24""7\31\10\377\364\340\311\377\346\310\241\377\341\303" - "\234\377\332\263\205\377\321\245r\377\317\245n\377\315\243l\377\310\237" - "h\377\305\233d\377\302\231_\377\302\223[\377\300\222W\377\277\221V\377" - "\277\221V\377\300\222W\377\302\223[\377\301\227\\\377\305\232b\377\310" - "\236g\377\315\243l\377\315\243l\377\316\241k\377\316\241k\377\322\253" - "y\377\322\252w\377\321\245r\377\324\247s\377\277\212L\377\261s0\377\207" - "M\24\3777\31\10\377\0\0\0T\0\0\0""0\0\0\0\24\0\0\0\5\0\0\0\1\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0" - "\0\5\0\0\0\22""3\27\7\301\262u-\377\307\235`\377\304\232]\377\275\214" - "L\377\272~=\377\270~9\377\266z9\377\265x6\377\263u2\377\257w.\377\255" - "r,\377\254t+\377\252r)\377\252r)\377\252r)\377\256q)\377\256q)\377\256" - "q)\377\256q)\377\252r)\377\251m&\377\252l#\377\245i\"\377\243g\40\377" - "\242e\35\377\236a\31\377\233_\30\377\231]\26\377\222V\25\377X0\15\377" - "&\21\5\264\0\0\0K\0\0\0*\0\0\0\21\0\0\0\4\0\0\0\1\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0\0\4\0\0\0\16" - "+\23\6q1\26\7\3077\31\10\3777\31\10\3777\31\10\3777\31\10\3777\31\10" - "\3777\31\10\3777\31\10\3777\31\10\3777\31\10\3777\31\10\3777\31\10\377" - "7\31\10\3777\31\10\3777\31\10\3777\31\10\3777\31\10\3777\31\10\3777\31" - "\10\3777\31\10\3777\31\10\3777\31\10\3777\31\10\3777\31\10\3777\31\10" - "\3777\31\10\3777\31\10\3777\31\10\3777\31\10\377&\21\5\264\14\5\1e\0" - "\0\0;\0\0\0\40\0\0\0\14\0\0\0\3\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\2\0\0\0\11\0\0\0\30" - "\0\0\0,\0\0\0A\0\0\0O\0\0\0U\0\0\0W\0\0\0X\0\0\0X\0\0\0X\0\0\0X\0\0\0" - "X\0\0\0X\0\0\0X\0\0\0X\0\0\0X\0\0\0X\0\0\0X\0\0\0X\0\0\0X\0\0\0X\0\0" - "\0X\0\0\0X\0\0\0X\0\0\0X\0\0\0X\0\0\0X\0\0\0X\0\0\0X\0\0\0W\0\0\0S\0" - "\0\0K\0\0\0;\0\0\0'\0\0\0\24\0\0\0\7\0\0\0\2\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\0\0" - "\0\4\0\0\0\15\0\0\0\30\0\0\0$\0\0\0,\0\0\0""0\0\0\0""3\0\0\0""3\0\0\0" - "3\0\0\0""3\0\0\0""3\0\0\0""3\0\0\0""3\0\0\0""3\0\0\0""3\0\0\0""3\0\0" - "\0""3\0\0\0""3\0\0\0""3\0\0\0""3\0\0\0""3\0\0\0""3\0\0\0""3\0\0\0""3" - "\0\0\0""3\0\0\0""3\0\0\0""3\0\0\0""3\0\0\0""3\0\0\0""2\0\0\0""0\0\0\0" - "*\0\0\0\40\0\0\0\24\0\0\0\11\0\0\0\3\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\2\0\0\0\4\0\0\0\11\0\0\0\16\0\0\0\22\0\0\0\24\0\0\0\25\0\0\0\25\0" - "\0\0\25\0\0\0\25\0\0\0\25\0\0\0\25\0\0\0\25\0\0\0\25\0\0\0\25\0\0\0\25" - "\0\0\0\25\0\0\0\25\0\0\0\25\0\0\0\25\0\0\0\25\0\0\0\25\0\0\0\25\0\0\0" - "\25\0\0\0\25\0\0\0\25\0\0\0\25\0\0\0\25\0\0\0\25\0\0\0\25\0\0\0\24\0" - "\0\0\21\0\0\0\14\0\0\0\7\0\0\0\3\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\1\0\0\0\2\0\0\0\4\0\0\0\5\0\0\0\5\0\0\0\5\0\0\0\5\0\0" - "\0\5\0\0\0\6\0\0\0\6\0\0\0\6\0\0\0\6\0\0\0\6\0\0\0\6\0\0\0\6\0\0\0\6" - "\0\0\0\6\0\0\0\6\0\0\0\6\0\0\0\6\0\0\0\6\0\0\0\6\0\0\0\6\0\0\0\6\0\0" - "\0\6\0\0\0\6\0\0\0\6\0\0\0\5\0\0\0\5\0\0\0\5\0\0\0\4\0\0\0\3\0\0\0\2" - "\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0" - "\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1" - "\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0" - "\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" - "\0\0\0\0\0\0\0\0\0\0\0\0"}; - - diff --git a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/libgnome/libgnomeui/no-pixbuf-csource.patch b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/libgnome/libgnomeui/no-pixbuf-csource.patch deleted file mode 100644 index e0765bae1..000000000 --- a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/libgnome/libgnomeui/no-pixbuf-csource.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- libgnomeui-2.6.1.1/configure.in.old 2004-08-04 00:28:43.582266664 +0100 -+++ libgnomeui-2.6.1.1/configure.in 2004-08-04 00:29:27.496590672 +0100 -@@ -235,7 +235,7 @@ - - dnl This is installed from GTK+ 2.0's gdk-pixbuf - AC_PATH_PROG(GDK_PIXBUF_CSOURCE, gdk-pixbuf-csource) --test -z "$GDK_PIXBUF_CSOURCE" && AC_MSG_ERROR([ -+test -z "$GDK_PIXBUF_CSOURCE" && AC_MSG_WARN([ - *** You need the gdk-pixbuf-csource tool which is installed - *** from GTK+ 2.0's gdk-pixbuf. - *** diff --git a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/libgnome/libgnomeui_2.24.5.bb b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/libgnome/libgnomeui_2.24.5.bb deleted file mode 100644 index 45219d4d7..000000000 --- a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/libgnome/libgnomeui_2.24.5.bb +++ /dev/null @@ -1,31 +0,0 @@ -DESCRIPTION = "GNOME User Interface Library" -LICENSE = "LGPLv2" -LIC_FILES_CHKSUM = "file://COPYING.LIB;md5=55ca817ccb7d5b5b66355690e9abc605" - -SECTION = "x11/gnome/libs" -DEPENDS = "libgnome libgnomecanvas libbonoboui libgnome-keyring intltool-native gnome-common-native" - -inherit gnome - -FILES_${PN} += "${libdir}/gtk-2.0/*/filesystems/lib*.so \ - ${libdir}/libglade/*/lib*.so \ - ${datadir}/pixmaps/gnome-about-logo.png" -FILES_${PN}-dev += "${libdir}/gtk-2.0/*/filesystems/*.la ${libdir}/gtk-2.0/*/filesystems/*.a ${libdir}/libglade/*/*.la" -FILES_${PN}-staticdev += "${libdir}/libglade/*/*.a" - -SRC_URI += " \ - file://0001-suppress-string-format-literal-warning-to-fix-build-.patch \ - file://gnome-stock-pixbufs.h \ - file://no-pixbuf-csource.patch \ -" -SRC_URI[archive.md5sum] = "d4bb506b1916015323928faab5aa708b" -SRC_URI[archive.sha256sum] = "ae352f2495889e65524c979932c909f4629a58e64290fb0c95333373225d3c0f" -GNOME_COMPRESS_TYPE="bz2" - -EXTRA_OECONF = "--disable-gtk-doc" - -do_configure_prepend() { - install -m 0644 ${WORKDIR}/gnome-stock-pixbufs.h ${S}/libgnomeui/pixmaps/gnome-stock-pixbufs.h -} - -LDFLAGS += "-lm" diff --git a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/libgtkstylus/libgtkstylus_0.5.bb b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/libgtkstylus/libgtkstylus_0.5.bb index 3cd791076..a7c8a6fce 100644 --- a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/libgtkstylus/libgtkstylus_0.5.bb +++ b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/libgtkstylus/libgtkstylus_0.5.bb @@ -5,7 +5,9 @@ LICENSE = "LGPL-2.0+" LIC_FILES_CHKSUM = "file://tap.c;beginline=1;endline=20;md5=71756eeb144e9eeb177c69aa672b1635" PR = "r4" -inherit autotools pkgconfig +inherit distro_features_check autotools pkgconfig + +REQUIRED_DISTRO_FEATURES = "x11" SRC_URI = "http://burtonini.com/temp/${BP}.tar.gz \ file://gtkstylus.sh" diff --git a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/libgtop/libgtop_2.30.0.bb b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/libgtop/libgtop_2.30.0.bb deleted file mode 100644 index 946d11845..000000000 --- a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/libgtop/libgtop_2.30.0.bb +++ /dev/null @@ -1,15 +0,0 @@ -SUMMARY = "LibGTop2" -LICENSE = "GPLv2+" -LIC_FILES_CHKSUM = "file://copyright.txt;md5=dbc839bf158d19a20e661db14db7a58c" - -inherit gnomebase lib_package gtk-doc distro_features_check gobject-introspection -# depends on libxau -REQUIRED_DISTRO_FEATURES = "x11" - -SRC_URI = "${GNOME_MIRROR}/${GNOMEBN}/${@gnome_verdir("${PV}")}/${GNOMEBN}-${PV}.tar.${GNOME_COMPRESS_TYPE};name=archive \ - file://0001-netload-Include-libc-net-headers-unconditionally.patch \ - " -SRC_URI[archive.md5sum] = "ee29a9ef60659ebf4b075ac281f71cb2" -SRC_URI[archive.sha256sum] = "463bcbe5737b1b93f3345ee34abf601e8eb864f507c49ff1921c2737abafc1e5" - -DEPENDS = "glib-2.0 intltool-native libxau" diff --git a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/libgtop/libgtop_2.38.0.bb b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/libgtop/libgtop_2.38.0.bb new file mode 100644 index 000000000..494934fe7 --- /dev/null +++ b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/libgtop/libgtop_2.38.0.bb @@ -0,0 +1,13 @@ +SUMMARY = "LibGTop2" +LICENSE = "GPLv2+" +LIC_FILES_CHKSUM = "file://COPYING;md5=59530bdf33659b29e73d4adb9f9f6552" + +inherit gnomebase lib_package gtk-doc distro_features_check gobject-introspection gettext + +# depends on libxau +REQUIRED_DISTRO_FEATURES = "x11" + +SRC_URI[archive.md5sum] = "bb0ce7de6b28694b40405eedac8a31b5" +SRC_URI[archive.sha256sum] = "4f6c0e62bb438abfd16b4559cd2eca0251de19e291c888cdc4dc88e5ffebb612" + +DEPENDS = "glib-2.0 libxau" diff --git a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/libidl/libidl-native_0.8.14.bb b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/libidl/libidl-native_0.8.14.bb deleted file mode 100644 index 2252c44ee..000000000 --- a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/libidl/libidl-native_0.8.14.bb +++ /dev/null @@ -1,10 +0,0 @@ -SECTION = "libs" -require libidl_${PV}.bb -inherit native - -PR = "r1" - -DEPENDS = "bison-native glib-2.0-native flex-native" - -SRC_URI[md5sum] = "bb8e10a218fac793a52d404d14adedcb" -SRC_URI[sha256sum] = "c5d24d8c096546353fbc7cedf208392d5a02afe9d56ebcc1cccb258d7c4d2220" diff --git a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/libidl/libidl.inc b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/libidl/libidl.inc deleted file mode 100644 index 1a5c81582..000000000 --- a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/libidl/libidl.inc +++ /dev/null @@ -1,13 +0,0 @@ -DESCRIPTION = "Library for parsing CORBA IDL files" -HOMEPAGE = "http://andrewtv.org/libIDL/" -SECTION = "x11/gnome/libs" -LICENSE = "LGPLv2+" - -inherit autotools pkgconfig - -SRC_URI = "http://ftp.gnome.org/pub/GNOME/sources/libIDL/0.8/libIDL-${PV}.tar.bz2" - -S = "${WORKDIR}/libIDL-${PV}" - -FILES_${PN} = "${libdir}/*.so.*" -FILES_${PN}-dev += " ${bindir}" diff --git a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/libidl/libidl_0.8.14.bb b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/libidl/libidl_0.8.14.bb deleted file mode 100644 index 86dfcf2f0..000000000 --- a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/libidl/libidl_0.8.14.bb +++ /dev/null @@ -1,13 +0,0 @@ -require libidl.inc - -LIC_FILES_CHKSUM = "file://COPYING;md5=55ca817ccb7d5b5b66355690e9abc605" - -DEPENDS = "glib-2.0 flex-native libidl-native" - -PR = "r1" - -BINCONFIG_GLOB = "*-config-2" -inherit autotools pkgconfig binconfig - -SRC_URI[md5sum] = "bb8e10a218fac793a52d404d14adedcb" -SRC_URI[sha256sum] = "c5d24d8c096546353fbc7cedf208392d5a02afe9d56ebcc1cccb258d7c4d2220" diff --git a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/libtimezonemap/libtimezonemap_0.4.5.bb b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/libtimezonemap/libtimezonemap_0.4.5.bb index d6aeed380..957d7d027 100644 --- a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/libtimezonemap/libtimezonemap_0.4.5.bb +++ b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/libtimezonemap/libtimezonemap_0.4.5.bb @@ -15,7 +15,9 @@ DEPENDS = "gtk+3 gdk-pixbuf libsoup-2.4 json-glib gnome-common-native \ B = "${S}" -inherit autotools pkgconfig gobject-introspection +inherit distro_features_check autotools pkgconfig gobject-introspection + +REQUIRED_DISTRO_FEATURES = "x11" do_configure_prepend() { (cd ${S}; NOCONFIGURE="yes" . ${S}/autogen.sh) diff --git a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/metacity/metacity/0001-drop-zenity-detection.patch b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/metacity/metacity/0001-drop-zenity-detection.patch new file mode 100644 index 000000000..3493e511b --- /dev/null +++ b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/metacity/metacity/0001-drop-zenity-detection.patch @@ -0,0 +1,33 @@ +From ec0e52b49c9b6869413c9544c2ed44710ab91141 Mon Sep 17 00:00:00 2001 +From: Hongxu Jia <hongxu.jia@windriver.com> +Date: Sat, 14 Apr 2018 16:15:59 +0800 +Subject: [PATCH] drop zenity detection + +OE does not support zenity + +Upstream-Status: inappropriate [OE specific] + +Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> +--- + configure.ac | 5 ----- + 1 file changed, 5 deletions(-) + +diff --git a/configure.ac b/configure.ac +index 5f9e7e9..80b32c7 100644 +--- a/configure.ac ++++ b/configure.ac +@@ -359,11 +359,6 @@ fi + + AM_CONDITIONAL(HAVE_SM, test "$found_sm" = "yes") + +-AC_PATH_PROG(ZENITY, zenity, no) +-if test x"$ZENITY" = xno; then +- AC_MSG_ERROR([zenity not found in your path - needed for dialogs]) +-fi +- + dnl ************************************************************************** + dnl Check for Vulkan support + dnl ************************************************************************** +-- +1.8.3.1 + diff --git a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/metacity/metacity/0001-ui-Define-_GNU_SOURCE.patch b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/metacity/metacity/0001-ui-Define-_GNU_SOURCE.patch deleted file mode 100644 index 539d756b3..000000000 --- a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/metacity/metacity/0001-ui-Define-_GNU_SOURCE.patch +++ /dev/null @@ -1,27 +0,0 @@ -From e7fd072f0df968f342878b77098e97ff07ed28d7 Mon Sep 17 00:00:00 2001 -From: Khem Raj <raj.khem@gmail.com> -Date: Fri, 14 Jul 2017 10:26:31 -0700 -Subject: [PATCH] ui: Define _GNU_SOURCE - -it becomes portable across musl and glibc - -Signed-off-by: Khem Raj <raj.khem@gmail.com> ---- - src/ui/theme.c | 1 + - 1 file changed, 1 insertion(+) - -diff --git a/src/ui/theme.c b/src/ui/theme.c -index 84b57a0..c7eafc8 100644 ---- a/src/ui/theme.c -+++ b/src/ui/theme.c -@@ -60,6 +60,7 @@ - #include <gtk/gtk.h> - #include <string.h> - #include <stdlib.h> -+#define _GNU_SOURCE - #define __USE_XOPEN - #include <math.h> - --- -2.13.3 - diff --git a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/metacity/metacity/remove-yelp-help-rules-var.patch b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/metacity/metacity/remove-yelp-help-rules-var.patch deleted file mode 100644 index 1970e9afb..000000000 --- a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/metacity/metacity/remove-yelp-help-rules-var.patch +++ /dev/null @@ -1,28 +0,0 @@ -Remove unused variable (YELP_HELP_RULES) - -Upstream-Status: Pending -Signed-off-by: Constantin Musca <constantinx.musca@intel.com> - -Index: metacity-2.34.13/doc/creating_themes/Makefile.am -=================================================================== ---- metacity-2.34.13.orig/doc/creating_themes/Makefile.am -+++ metacity-2.34.13/doc/creating_themes/Makefile.am -@@ -1,6 +1,5 @@ - ### This part of Makefile.am can be customized by you. - --@YELP_HELP_RULES@ - - # The name of the directory in /usr/share/gnome/help/, - # and the name of the main .xml file: -Index: metacity-2.34.13/doc/creating_themes/Makefile.in -=================================================================== ---- metacity-2.34.13.orig/doc/creating_themes/Makefile.in -+++ metacity-2.34.13/doc/creating_themes/Makefile.in -@@ -455,7 +455,6 @@ uninstall-am: - mostlyclean-libtool pdf pdf-am ps ps-am uninstall uninstall-am - - --@YELP_HELP_RULES@ - - # Tell versions [3.59,3.63) of GNU make to not export all variables. - # Otherwise a system limit (for SysV at least) may be exceeded. diff --git a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/metacity/metacity_2.34.13.bb b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/metacity/metacity_2.34.13.bb deleted file mode 100644 index 370de7000..000000000 --- a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/metacity/metacity_2.34.13.bb +++ /dev/null @@ -1,35 +0,0 @@ -SECTION = "x11/wm" -SUMMARY = "Metacity is the boring window manager for the adult in you" -LICENSE = "GPLv2+" -LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f \ - file://src/include/main.h;endline=24;md5=c2242df552c880280315989bab626b90" - -DEPENDS = "gsettings-desktop-schemas startup-notification gtk+ gconf gdk-pixbuf-native libcanberra gnome-doc-utils libgtop intltool-native" -PR = "r1" - -inherit gnomebase update-alternatives distro_features_check -# depends on startup-notification which depends on virtual/libx11 -REQUIRED_DISTRO_FEATURES = "x11" - -GNOME_COMPRESS_TYPE = "xz" - -SRC_URI = "${GNOME_MIRROR}/${GNOMEBN}/${@gnome_verdir("${PV}")}/${GNOMEBN}-${PV}.tar.${GNOME_COMPRESS_TYPE};name=archive \ - file://remove-yelp-help-rules-var.patch \ - file://0001-ui-Define-_GNU_SOURCE.patch \ - " -SRC_URI[archive.md5sum] = "6d89b71672d4fa49fc87f83d610d0ef6" -SRC_URI[archive.sha256sum] = "8cf4dbf0da0a6f36357ce7db7f829ec685908a7792453c662fb8184572b91075" - -ALTERNATIVE_${PN} = "x-window-manager" -ALTERNATIVE_TARGET[x-window-manager] = "${bindir}/metacity" -ALTERNATIVE_PRIORITY = "10" - -EXTRA_OECONF += "--disable-xinerama" - -do_configure_prepend() { - sed -i -e 's:$ZENITY:$NOZENITY:g' -e 's:-Werror::g' ${S}/configure.in -} - -FILES_${PN} += "${datadir}/themes ${datadir}/gnome-control-center ${datadir}/gnome" -RDEPENDS_${PN} += "gsettings-desktop-schemas" - diff --git a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/metacity/metacity_3.38.0.bb b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/metacity/metacity_3.38.0.bb new file mode 100644 index 000000000..48fc9144d --- /dev/null +++ b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/metacity/metacity_3.38.0.bb @@ -0,0 +1,34 @@ +SECTION = "x11/wm" +SUMMARY = "Metacity is the boring window manager for the adult in you" +LICENSE = "GPLv2+" +LIC_FILES_CHKSUM = "file://COPYING;md5=b4cce53560b8e619ffa7c830fb8761aa \ + file://src/include/main.h;endline=24;md5=72148ede07a6dadd01de6a882d20a9ad" + +DEPENDS = "gsettings-desktop-schemas startup-notification \ + gnome-doc-utils gdk-pixbuf-native \ + gtk+3 glib-2.0 libcanberra libgtop intltool-native" + +inherit autotools gettext gnomebase distro_features_check +# depends on startup-notification which depends on virtual/libx11 +REQUIRED_DISTRO_FEATURES = "x11" + +SRC_URI = "git://github.com/GNOME/metacity.git;branch=master \ + file://0001-drop-zenity-detection.patch \ +" + +S = "${WORKDIR}/git" +SRCREV = "c0d4b2fc0fcd6f2d3c37da935923f9e9ed5eb99f" + +EXTRA_OECONF += "--disable-xinerama" + +do_configure_prepend() { + cd ${S} + aclocal --install || exit 1 + autoreconf --verbose --force --install -Wno-portability || exit 1 + cd - + +} + +FILES_${PN} += "${datadir}/themes ${datadir}/gnome-control-center ${datadir}/gnome" +RDEPENDS_${PN} += "gsettings-desktop-schemas" + diff --git a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/nautilus/nautilus/no-try-run-strftime.diff b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/nautilus/nautilus/no-try-run-strftime.diff deleted file mode 100644 index ccd2934b3..000000000 --- a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/nautilus/nautilus/no-try-run-strftime.diff +++ /dev/null @@ -1,28 +0,0 @@ ---- /tmp/configure.in 2009-04-13 11:26:43.000000000 +0200 -+++ nautilus-2.26.1/configure.in 2009-04-13 11:28:37.000000000 +0200 -@@ -375,25 +375,6 @@ - - dnl =========================================================================== - --dnl strftime checks -- --AC_TRY_RUN([#include <time.h> -- int main () -- { -- char buf[100]; -- struct tm tm = {0}; -- tm.tm_year = 99; -- if (strftime(buf, 100, "%EY", &tm) == 4 && -- strcmp (buf, "1999")==0) -- return 0; -- return 1; -- } -- ], -- AC_DEFINE(HAVE_STRFTIME_EXTENSION, 1, [Define if strftime supports %E and %O modifiers.]) -- ) -- --dnl =========================================================================== -- - # - # Checks for Xft/XRender - # diff --git a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/nautilus/nautilus3/no-try-run-strftime.diff b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/nautilus/nautilus3/no-try-run-strftime.diff deleted file mode 100644 index 56d2e159d..000000000 --- a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/nautilus/nautilus3/no-try-run-strftime.diff +++ /dev/null @@ -1,41 +0,0 @@ -From dc9c8cf2676c8c91ea0ae250cfedf863352f3ccd Mon Sep 17 00:00:00 2001 -From: Koen Kooi <koen@dominion.thruhere.net> -Date: Fri, 24 Jun 2011 20:24:08 +0200 -Subject: [PATCH] hack out check that tries to run generated binaries - -Signed-off-by: Koen Kooi <koen@dominion.thruhere.net> ---- - configure.in | 17 +---------------- - 1 files changed, 1 insertions(+), 16 deletions(-) - -diff --git a/configure.in b/configure.in -index c3aa371..1d3ecdc 100644 ---- a/configure.in -+++ b/configure.in -@@ -251,22 +251,7 @@ AC_SUBST(WARNING_CFLAGS) - - dnl =========================================================================== - --dnl strftime checks -- --AC_TRY_RUN([#include <time.h> -- int main () -- { -- char buf[100]; -- struct tm tm = {0}; -- tm.tm_year = 99; -- if (strftime(buf, 100, "%EY", &tm) == 4 && -- strcmp (buf, "1999")==0) -- return 0; -- return 1; -- } -- ], -- AC_DEFINE(HAVE_STRFTIME_EXTENSION, 1, [Define if strftime supports %E and %O modifiers.]) -- ) -+AC_DEFINE(HAVE_STRFTIME_EXTENSION, 1, [Define if strftime supports %E and %O modifiers.]) - - dnl ========================================================================== - --- -1.6.6.1 - diff --git a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/nautilus/nautilus_3.18.5.bb b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/nautilus/nautilus_3.18.5.bb new file mode 100644 index 000000000..8fdbf6ac2 --- /dev/null +++ b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/nautilus/nautilus_3.18.5.bb @@ -0,0 +1,29 @@ +SUMMARY = "File manager for GNOME" +SECTION = "x11/gnome" + +LICENSE="GPLv2" +LIC_FILES_CHKSUM = "file://COPYING;md5=36cf660aea2b8beffba7945f44a7e748 \ + file://COPYING.EXTENSIONS;md5=7579d6678402a1868631bf82c93ff0d4 \ + file://COPYING.LIB;md5=f30a9716ef3762e3467a2f62bf790f0a" + +SRC_URI = "http://ftp.gnome.org/pub/GNOME/sources/nautilus/3.18/nautilus-${PV}.tar.xz" + +SRC_URI[md5sum] = "0f578bda5655c0ce204befafca5803d7" +SRC_URI[sha256sum] = "60a927c0522b4cced9d8f62baed2ee5e2fd4305be4523eb5bc44805971a6cc15" + +DEPENDS = "gtk+3 gnome-desktop3 gsettings-desktop-schemas glib-2.0-native intltool-native pango" + +inherit distro_features_check autotools pkgconfig gobject-introspection +REQUIRED_DISTRO_FEATURES = "x11" + +EXTRA_OECONF = " \ + --disable-gtk-doc \ + --disable-update-mimedb \ + --disable-nst-extension \ + --enable-tracker=no \ + --disable-schemas-compile \ + --enable-xmp=no \ + --enable-libexif=no \ +" + +FILES_${PN} += "${datadir}/*" diff --git a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/orbit2/orbit2/0001-linc2-src-Makefile.am-fix-build-with-glib-2.36.patch b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/orbit2/orbit2/0001-linc2-src-Makefile.am-fix-build-with-glib-2.36.patch deleted file mode 100644 index daf7464c3..000000000 --- a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/orbit2/orbit2/0001-linc2-src-Makefile.am-fix-build-with-glib-2.36.patch +++ /dev/null @@ -1,34 +0,0 @@ -From 10bd8094e1d94e5c737791c7f4b6b844f535c120 Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?Andreas=20M=C3=BCller?= <schnitzeltony@googlemail.com> -Date: Fri, 3 May 2013 10:00:16 +0200 -Subject: [PATCH] linc2/src/Makefile.am: fix build with glib 2.36 -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit - -Upstream-Status: Submitted [1] - -[1] https://bugzilla.gnome.org/show_bug.cgi?id=696900 - -Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> ---- - linc2/src/Makefile.am | 3 +-- - 1 files changed, 1 insertions(+), 2 deletions(-) - -diff --git a/linc2/src/Makefile.am b/linc2/src/Makefile.am -index 357a2dd..ba0e347 100644 ---- a/linc2/src/Makefile.am -+++ b/linc2/src/Makefile.am -@@ -12,8 +12,7 @@ INCLUDES = \ - -I$(top_builddir)/linc2/include \ - -I$(top_srcdir)/linc2/include \ - $(LINC_CFLAGS) \ -- $(WARN_CFLAGS) \ -- -DG_DISABLE_DEPRECATED -+ $(WARN_CFLAGS) - - if OS_WIN32 - else --- -1.7.6.5 - diff --git a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/orbit2/orbit2/0002-Use-AM_CPPFLAGS-instead-of-INCLUDES-and-fix-problem-.patch b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/orbit2/orbit2/0002-Use-AM_CPPFLAGS-instead-of-INCLUDES-and-fix-problem-.patch deleted file mode 100644 index 7993abb92..000000000 --- a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/orbit2/orbit2/0002-Use-AM_CPPFLAGS-instead-of-INCLUDES-and-fix-problem-.patch +++ /dev/null @@ -1,42 +0,0 @@ -From d91dbb42dc3b6073720027f68827acd0abee6d75 Mon Sep 17 00:00:00 2001 -From: Kjartan Maraas <kmaraas@gnome.org> -Date: Tue, 14 May 2013 13:29:53 +0200 -Subject: [PATCH] Use AM_CPPFLAGS instead of INCLUDES and fix problem using -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit - -Upstream-Status: Backport [1] - -[1] https://git.gnome.org/browse/ORBit2/commit/test/everything/Makefile.am?id=d91dbb42dc3b6073720027f68827acd0abee6d75 - -Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> ---- - test/everything/Makefile.am | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -diff --git a/test/everything/Makefile.am b/test/everything/Makefile.am -index 32beb36..cb4b1d6 100644 ---- a/test/everything/Makefile.am -+++ b/test/everything/Makefile.am -@@ -10,7 +10,7 @@ EVERYTHING_IDLOUT = \ - $(EVERYTHING_BUILT) \ - everything-imodule.c - --INCLUDES = \ -+AM_CPPFLAGS = \ - -I$(top_srcdir)/include \ - -I$(top_builddir)/include \ - -I$(top_builddir)/src \ -@@ -78,7 +78,7 @@ include $(top_srcdir)/Makefile.shared - BUILT_SOURCES = ${EVERYTHING_BUILT} everything-imodule.c - CLEANFILES = ${BUILT_SOURCES} iorfile - --TESTS = $(srcdir)/test.sh -+TESTS = $(top_builddir)/test/everything/test.sh - - EXTRA_DIST = $(IDL_FILES) test.sh $(included_src) - --- -1.8.3.1 - diff --git a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/orbit2/orbit2/configure-lossage.patch b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/orbit2/orbit2/configure-lossage.patch deleted file mode 100644 index 5fc1de561..000000000 --- a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/orbit2/orbit2/configure-lossage.patch +++ /dev/null @@ -1,37 +0,0 @@ ---- ORBit2-2.14.17/configure.in-orig 2009-01-10 09:36:18.000000000 -0800 -+++ ORBit2-2.14.17/configure.in 2009-06-17 15:10:59.000000000 -0700 -@@ -217,20 +217,20 @@ dnl - dnl So many people with broken linking setups asked about this - dnl it turned out to be necessary to check for this. - dnl --dofus_save_libs="$LIBS" --LIBS="$ORBIT_LIBS $LIBS" --AC_TRY_RUN([ #include <stdio.h> -- main () -- { -- return 0; -- } ],, -- AC_MSG_ERROR([ --Linking is badly borked on your system. Please ensure your library path is correct --Check config.log for details - check near the end of the log above 'failed program was' --Alternatively ensure that your /etc/ld.so.conf (and/or LD_LIBRARY_PATH) includes the --prefix you're compiling on: '${prefix}' ]), --AC_MSG_WARN([Could not check for borked linking while cross-compiling])) --LIBS="$dofus_save_libs" -+dnl dofus_save_libs="$LIBS" -+dnl LIBS="$ORBIT_LIBS $LIBS" -+dnl AC_TRY_RUN([ #include <stdio.h> -+dnl main () -+dnl { -+dnl return 0; -+dnl } ],, -+dnl AC_MSG_ERROR([ -+dnl Linking is badly borked on your system. Please ensure your library path is correct -+dnl Check config.log for details - check near the end of the log above 'failed program was' -+dnl Alternatively ensure that your /etc/ld.so.conf (and/or LD_LIBRARY_PATH) includes the -+dnl prefix you're compiling on: '${prefix}' ]), -+dnl AC_MSG_WARN([Could not check for borked linking while cross-compiling])) -+dnl LIBS="$dofus_save_libs" - - orig_CPPFLAGS=$CPPFLAGS - CPPFLAGS="$CPPFLAGS $ORBIT_CFLAGS" diff --git a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/orbit2/orbit2/pkgconfig-fix.patch b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/orbit2/orbit2/pkgconfig-fix.patch deleted file mode 100644 index f629e506d..000000000 --- a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/orbit2/orbit2/pkgconfig-fix.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff -urN ORBit2-2.14.12.orig/ORBit-2.0.pc.in ORBit2-2.14.12/ORBit-2.0.pc.in ---- ORBit2-2.14.12.orig/ORBit-2.0.pc.in 2008-01-29 13:45:22.000000000 +0100 -+++ ORBit2-2.14.12/ORBit-2.0.pc.in 2008-09-23 20:13:07.000000000 +0200 -@@ -2,7 +2,7 @@ - exec_prefix=@exec_prefix@ - libdir=@libdir@ - includedir=@includedir@ --orbit_idl=@bindir@/orbit-idl-2@EXEEXT@ -+orbit_idl=@exec_prefix@/bin/orbit-idl-2@EXEEXT@ - - - Name: ORBit-2.0 diff --git a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/orbit2/orbit2_2.14.19.bb b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/orbit2/orbit2_2.14.19.bb deleted file mode 100644 index eb4397263..000000000 --- a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/orbit2/orbit2_2.14.19.bb +++ /dev/null @@ -1,42 +0,0 @@ -SUMMARY = "CORBA ORB" -HOMEPAGE = "http://www.gnome.org/projects/ORBit2" -SECTION = "x11/gnome/libs" -LICENSE = "GPL-2.0" -LIC_FILES_CHKSUM = "file://COPYING;md5=59530bdf33659b29e73d4adb9f9f6552" -SRC_NAME = "ORBit2" -SHRT_VER = "${@d.getVar('PV').split('.')[0]}.${@d.getVar('PV').split('.')[1]}" -SRC_URI = " \ - ${GNOME_MIRROR}/${SRC_NAME}/${SHRT_VER}/${SRC_NAME}-${PV}.tar.bz2 \ - file://configure-lossage.patch \ - file://pkgconfig-fix.patch \ - file://0001-linc2-src-Makefile.am-fix-build-with-glib-2.36.patch \ - file://0002-Use-AM_CPPFLAGS-instead-of-INCLUDES-and-fix-problem-.patch \ -" -SRC_URI[md5sum] = "7082d317a9573ab338302243082d10d1" -SRC_URI[sha256sum] = "55c900a905482992730f575f3eef34d50bda717c197c97c08fa5a6eafd857550" - -BBCLASSEXTEND = "native" - -IDL_COMPILER_DEPENDS = "orbit2-native" -IDL_COMPILER_DEPENDS_class-native = " " -DEPENDS = "libidl popt ${IDL_COMPILER_DEPENDS}" - -# IDL_COMPILER_DEPENDS_class-native for some reason didn't work and orbit2-native -# was still in orbit2-native DEPENDS causing circular dependency -DEPENDS_class-native = "libidl-native popt-native" -PARALLEL_MAKE = "" - - -FILES_${PN} += "${libdir}/orbit-2.0/*.so" -FILES_${PN}-dev += "${libdir}/orbit-2.0/*.la" -FILES_${PN}-staticdev += "${libdir}/orbit-2.0/*.a" -FILES_${PN}-dbg += "${libdir}/orbit-2.0/.debug" - -S = "${WORKDIR}/${SRC_NAME}-${PV}" - -LEAD_SONAME = "libORBit-2.so" - -inherit autotools pkgconfig gtk-doc - -EXTRA_OEMAKE = "IDL_COMPILER='${STAGING_BINDIR_NATIVE}/orbit-idl-2'" -EXTRA_OEMAKE_class-native = " " diff --git a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/pimlico/contacts/stock_contact.png b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/pimlico/contacts/stock_contact.png Binary files differdeleted file mode 100644 index 123b4485a..000000000 --- a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/pimlico/contacts/stock_contact.png +++ /dev/null diff --git a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/pimlico/contacts/stock_person.png b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/pimlico/contacts/stock_person.png Binary files differdeleted file mode 100644 index 2b1328b4e..000000000 --- a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/pimlico/contacts/stock_person.png +++ /dev/null diff --git a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/pimlico/dates.inc b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/pimlico/dates.inc deleted file mode 100644 index 12d2f83f9..000000000 --- a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/pimlico/dates.inc +++ /dev/null @@ -1,11 +0,0 @@ -DESCRIPTION = "Dates is a calendar application." -HOMEPAGE = "http://pimlico-project.org/dates.html" -BUGTRACKER = "https://bugzilla.gnome.org/" - -LICENSE = "GPLv2 & GPLv2+ & LGPLv2+" - -SECTION = "x11" -DEPENDS = "glib-2.0 gtk+ libglade evolution-data-server intltool-native" -RDEPENDS_${PN} = "libedata-cal" - -inherit autotools gettext pkgconfig gtk-icon-cache diff --git a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/pimlico/dates/0001-Fix-format-security-warnings.patch b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/pimlico/dates/0001-Fix-format-security-warnings.patch deleted file mode 100644 index 4f551a7d8..000000000 --- a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/pimlico/dates/0001-Fix-format-security-warnings.patch +++ /dev/null @@ -1,54 +0,0 @@ -From 687881c5fa342686c8724adcdac0f9d555a351c3 Mon Sep 17 00:00:00 2001 -From: Khem Raj <raj.khem@gmail.com> -Date: Wed, 5 Apr 2017 18:10:57 -0700 -Subject: [PATCH] Fix format security warnings - -Signed-off-by: Khem Raj <raj.khem@gmail.com> ---- - src/dates_callbacks.c | 2 +- - src/dates_gtk.c | 2 +- - src/gconf-bridge.c | 2 +- - 3 files changed, 3 insertions(+), 3 deletions(-) - -diff --git a/src/dates_callbacks.c b/src/dates_callbacks.c -index d704c8f..46b8cb1 100644 ---- a/src/dates_callbacks.c -+++ b/src/dates_callbacks.c -@@ -365,7 +365,7 @@ dates_about_cb (GtkWidget *widget, DatesData *d) - - if (!pixb) { - g_assert (error); -- g_warning (error->message); -+ g_warning ("%s", error->message); - g_clear_error (&error); - } - -diff --git a/src/dates_gtk.c b/src/dates_gtk.c -index 403bc25..fd691d2 100644 ---- a/src/dates_gtk.c -+++ b/src/dates_gtk.c -@@ -1114,7 +1114,7 @@ calendar_do_edit_dialog_response_cb (GtkDialog *dialog, gint response_id, gpoint - GTK_DIALOG_MODAL | GTK_DIALOG_DESTROY_WITH_PARENT, - GTK_MESSAGE_WARNING, - GTK_BUTTONS_NONE, -- prompt); -+ "%s", prompt); - - g_free (prompt); - -diff --git a/src/gconf-bridge.c b/src/gconf-bridge.c -index 49754cf..67d3757 100644 ---- a/src/gconf-bridge.c -+++ b/src/gconf-bridge.c -@@ -1220,7 +1220,7 @@ error_handler (GConfClient *client, - dlg = gtk_message_dialog_new (NULL, 0, - GTK_MESSAGE_ERROR, - GTK_BUTTONS_OK, -- message); -+ "%s", message); - g_free (message); - - gtk_message_dialog_format_secondary_text --- -2.12.2 - diff --git a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/pimlico/dates/dso_linking_change_build_fix.patch b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/pimlico/dates/dso_linking_change_build_fix.patch deleted file mode 100644 index 649d59d91..000000000 --- a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/pimlico/dates/dso_linking_change_build_fix.patch +++ /dev/null @@ -1,44 +0,0 @@ -after gcc linking has changed, all the libraries must be explicitely specified -This patch avoids these linking errors: - - -| make[2]: Entering directory `/disk0/pokybuild/build1/tmp/work/i586-poky-linux/dates-0.4.11+git0+514185dc1f6588085fda41eb59898b93d0487dd4-r2/git/src'^M -... -| /disk0/pokybuild/build1/tmp/sysroots/x86_64-linux/usr/libexec/i586-poky-linux/gcc/i586-poky-linux/4.5.1/ld: e: invalid DSO for symbol `pow@@GLIBC_2.0' definition^M -| /disk0/pokybuild/build1/tmp/sysroots/i586-poky-linux/usr/lib/libm.so: could not read symbols: Bad value^M -| collect2: ld returned 1 exit status^M -| make[2]: *** [dates] Error 1 - - - -| /disk0/pokybuild/build1/tmp/sysroots/x86_64-linux/usr/libexec/i586-poky-linux/gcc/i586-poky-linux/4.5.1/ld: z: invalid DSO for symbol `pango_layout_get_extents' definition -| /disk0/pokybuild/build1/tmp/sysroots/i586-poky-linux/usr/lib/libpango-1.0.so: could not read symbols: Bad value -| collect2: ld returned 1 exit status -| make[2]: *** [dates] Error 1 - - -Nitin A Kamble <nitin.a.kamble@intel.com> -Date: 2011/01/11 - -Update: -This is identified as a libtool issue. While creating the libgtkdatesview.la -file, libtool should have added these needed libraries in there. - A bug has been created for this issue: - http://bugzilla.pokylinux.org/show_bug.cgi?id=664 -Nitin A Kamble <nitin.a.kamble@intel.com> -Date: 2011/01/19 - -Upstream-Status: Pending - -Index: git/src/Makefile.am -=================================================================== ---- git.orig/src/Makefile.am -+++ git/src/Makefile.am -@@ -34,6 +34,6 @@ dates_SOURCES = $(platform) \ - gconf-bridge.h \ - gconf-bridge.c - --dates_LDADD = $(DATES_LIBS) $(OWL_LIBS) libgtkdatesview.la -+dates_LDADD = $(DATES_LIBS) $(OWL_LIBS) libgtkdatesview.la -lm -lpango-1.0 - - MAINTAINERCLEANFILES = config.h.in Makefile.in diff --git a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/pimlico/dates/uclibc-NL_TIME_FIRST_WEEKDAY-absent.patch b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/pimlico/dates/uclibc-NL_TIME_FIRST_WEEKDAY-absent.patch deleted file mode 100644 index 6ade4708f..000000000 --- a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/pimlico/dates/uclibc-NL_TIME_FIRST_WEEKDAY-absent.patch +++ /dev/null @@ -1,37 +0,0 @@ -uclibc has langinfo.h but it does not define _NL_TIME_FIRST_WEEKDAY -therefore we introduce a check in configure for the this define -and then we make sure that we use it when it really exists - -Signed-off-by: Khem Raj <raj.khem@gmail.com> - -Upstream-Status: Pending - -Index: git/configure.ac -=================================================================== ---- git.orig/configure.ac 2011-07-18 10:34:15.000000000 -0700 -+++ git/configure.ac 2011-07-18 10:54:26.403798188 -0700 -@@ -98,6 +98,8 @@ - src/libgtkdatesview.pc - ]) - -+AC_CHECK_DECLS([_NL_TIME_FIRST_WEEKDAY],[],[],[[#include <langinfo.h>]]) -+ - AC_OUTPUT - - echo " " -Index: git/src/dates_view.c -=================================================================== ---- git.orig/src/dates_view.c 2011-07-18 10:34:15.000000000 -0700 -+++ git/src/dates_view.c 2011-07-18 10:58:46.093798136 -0700 -@@ -1505,7 +1505,11 @@ - priv->days = 1; - priv->months = 0; - priv->months_in_row = 4; -+#if HAVE_DECL__NL_TIME_FIRST_WEEKDAY - priv->week_start = *nl_langinfo (_NL_TIME_FIRST_WEEKDAY) - 1; -+#else -+ priv->week_start = 0; -+#endif - priv->dragbox = TRUE; - priv->single_click = TRUE; - priv->double_click = FALSE; diff --git a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/pimlico/dates_git.bb b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/pimlico/dates_git.bb deleted file mode 100644 index 14965e94f..000000000 --- a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/pimlico/dates_git.bb +++ /dev/null @@ -1,18 +0,0 @@ -require dates.inc - -LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe \ - file://src/dates_view.h;endline=22;md5=29f934f356eb970309cdeb6693b3123a \ - file://src/dates_hildon.c;endline=19;md5=63938904198b25de429abb65fbdbdb8a \ - file://src/gconf-bridge.c;endline=22;md5=ad7626c6daf4aec590474a243f4912fa" - -SRCREV = "c8e30fa3211dcdfcda48184f4c57746a552b9c7a" -PV = "0.4.11+git${SRCPV}" -PR = "r9" - -S = "${WORKDIR}/git" - -SRC_URI = "git://git.gnome.org/${BPN} \ - file://dso_linking_change_build_fix.patch \ - file://uclibc-NL_TIME_FIRST_WEEKDAY-absent.patch \ - file://0001-Fix-format-security-warnings.patch \ - " diff --git a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/system-tools/system-tools-backends-2.10.2/system-tools-backends b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/system-tools/system-tools-backends-2.10.2/system-tools-backends deleted file mode 100644 index 704c36dbf..000000000 --- a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/system-tools/system-tools-backends-2.10.2/system-tools-backends +++ /dev/null @@ -1,74 +0,0 @@ -#! /bin/sh -### BEGIN INIT INFO -# Provides: system-tools-backends -# Required-Start: $local_fs dbus -# Required-Stop: $local_fs dbus -# Should-Start: $syslog -# Should-Stop: $syslog -# Default-Start: 2 3 4 5 -# Default-Stop: 1 -# Short-Description: Gnome System Tools Backends -# Description: The Gnome System Tools Backends daemon handles root-needed -# operations to configure your machine with the Gnome System -# Tools. -### END INIT INFO - -PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin -DAEMON=/usr/bin/system-tools-backends -PIDDIR=/var/run -PIDFILE=$PIDDIR/system-tools-backends.pid -NAME=system-tools-backends -DESC="System Tools Backends" - -test -x $DAEMON || exit 0 - -set -e - -do_start() { - echo "Starting $DESC" - start-stop-daemon --start --startas $DAEMON --quiet --pidfile $PIDFILE -} - -do_stop() { - echo "Stopping $DESC" - start-stop-daemon --stop --oknodo --quiet --pidfile $PIDFILE --startas $DAEMON -} - -case "$1" in - start) - do_start - ;; - stop) - do_stop - ;; - #reload) - # - # If the daemon can reload its config files on the fly - # for example by sending it SIGHUP, do it here. - # - # If the daemon responds to changes in its config file - # directly anyway, make this a do-nothing entry. - # - # echo "Reloading $DESC configuration files." - # start-stop-daemon --stop --signal 1 --quiet --pidfile \ - # /var/run/$NAME.pid --exec $DAEMON - #;; - restart|force-reload) - # - # If the "reload" option is implemented, move the "force-reload" - # option to the "reload" entry above. If not, "force-reload" is - # just the same as "restart". - # - do_stop - sleep 5 - do_start - ;; - *) - N=/etc/init.d/$NAME - echo "Usage: $N {start|stop|restart|reload|force-reload|status}" >&2 - exit 1 - ;; -esac - -exit 0 - diff --git a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/themes/gnome-themes/drop-localedir-override.patch b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/themes/gnome-themes/drop-localedir-override.patch deleted file mode 100644 index e37482b97..000000000 --- a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/themes/gnome-themes/drop-localedir-override.patch +++ /dev/null @@ -1,22 +0,0 @@ -Causes locale file to be installed in /usr/locale instead of /usr/share/locale - -Apply the same fix as in evolution-data-server: -https://git.gnome.org/browse/evolution-data-server/commit/configure.ac?id=ec46c763e9342f604b7228c660623d271dfeb101 - -Upstream-Status: Pending - -diff -uNr gnome-themes-2.32.1.orig/configure.in gnome-themes-2.32.1/configure.in ---- gnome-themes-2.32.1.orig/configure.in 2015-09-18 15:01:25.152055729 +0200 -+++ gnome-themes-2.32.1/configure.in 2015-09-18 15:09:03.312072156 +0200 -@@ -19,11 +19,6 @@ - - AM_GLIB_GNU_GETTEXT - --# AM_GLIB_GNU_GETTEXT above subst. $DATADIRNAME --# this is the directory where the *.{mo,gmo} files are installed --localedir='${prefix}/${DATADIRNAME}/locale' --AC_SUBST(localedir) -- - # Workaround to make aclocal get the right flags - AC_SUBST(ACLOCAL_AMFLAGS, "\${ACLOCAL_FLAGS}") - diff --git a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/themes/gnome-themes/iconpath-option.patch b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/themes/gnome-themes/iconpath-option.patch deleted file mode 100644 index 1b4096dd0..000000000 --- a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/themes/gnome-themes/iconpath-option.patch +++ /dev/null @@ -1,52 +0,0 @@ - -The patch is ported from sato-icon-theme. - -pkg-config will only search the target sysroot and we want the native script. This -patch adds an option to allow the path to the tool to be specified. - -Upstream-Status: Pending -Signed-off-by: Jackie Huang <jackie.huang@windriver.com> ---- - configure.in | 26 ++++++++++++++++---------- - 1 file changed, 16 insertions(+), 10 deletions(-) - -diff --git a/configure.in b/configure.in -index 5f7a18c..e8fc31e 100644 ---- a/configure.in -+++ b/configure.in -@@ -74,16 +74,22 @@ AC_ARG_ENABLE([icon-mapping], - ICONMAP="true" - if test "x$enable_mapping" != "xno"; then - UTILS_REQUIRED=0.8.7 -- -- AC_MSG_CHECKING([icon-naming-utils >= $UTILS_REQUIRED]) -- PKG_CHECK_EXISTS(icon-naming-utils >= $UTILS_REQUIRED, have_utils=yes, have_utils=no) -- if test "x$have_utils" = "xyes"; then -- UTILS_PATH="`$PKG_CONFIG --variable=program_path icon-naming-utils`" -- ICONMAP="$UTILS_PATH/icon-name-mapping" -- AC_MSG_RESULT([yes]) -- else -- AC_MSG_RESULT([no]) -- AC_MSG_ERROR([icon-naming-utils >= $UTILS_REQUIRED is required to build and install gnome-themes]) -+ PKG_PROG_PKG_CONFIG() -+ AC_ARG_WITH(iconmap, -+ AC_HELP_STRING([--with-iconmap=<dir>], [The location of the icon-name-mapping script to use]), -+ ICONMAP=$withval, ICONMAP="") -+ if test "x$ICONMAP" = "x"; then -+ AC_MSG_CHECKING([icon-naming-utils >= $UTILS_REQUIRED]) -+ PKG_CHECK_EXISTS(icon-naming-utils >= $UTILS_REQUIRED, have_utils=yes, have_utils=no) -+ if test "x$have_utils" = "xyes"; then -+ UTILS_PATH="`$PKG_CONFIG --variable=program_path icon-naming-utils`" -+ ICONMAP="$UTILS_PATH/icon-name-mapping" -+ -+ AC_MSG_RESULT([yes]) -+ else -+ AC_MSG_RESULT([no]) -+ AC_MSG_ERROR([icon-naming-utils >= $UTILS_REQUIRED is required to build and install gnome-themes"]) -+ fi - fi - fi - AC_SUBST(ICONMAP) --- -1.7.9.5 - diff --git a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/themes/gnome-themes_2.32.1.bb b/import-layers/meta-openembedded/meta-gnome/recipes-gnome/themes/gnome-themes_2.32.1.bb deleted file mode 100644 index 1a89f48dd..000000000 --- a/import-layers/meta-openembedded/meta-gnome/recipes-gnome/themes/gnome-themes_2.32.1.bb +++ /dev/null @@ -1,37 +0,0 @@ -SUMMARY = "GNOME themes" -LICENSE = "LGPLv2.1" -LIC_FILES_CHKSUM = "file://COPYING;md5=2b543dc97eb7594d026af39d9b54204b" - -PR = "r3" - -SECTION = "x11/gnome" -DEPENDS = "gtk-engines icon-naming-utils icon-naming-utils-native \ - glib-2.0 intltool-native libxml-simple-perl-native \ - glib-2.0-native \ -" -RDEPENDS_${PN} = "adwaita-icon-theme" - -EXTRA_OECONF += "--enable-all-themes \ - --with-iconmap=${STAGING_LIBEXECDIR_NATIVE}/icon-name-mapping \ -" - -inherit gnomebase perlnative - -PACKAGES =+ " gnome-theme-crux gnome-theme-highcontrast gnome-theme-highcontrastinverse gnome-theme-highcontrastlargeprint gnome-theme-highcontrastlargeprintinverse gnome-theme-largeprint gnome-theme-mist" -FILES_gnome-theme-crux = "${datadir}/themes/Crux ${datadir}/icons/Crux" -FILES_gnome-theme-highcontrast = "${datadir}/themes/HighContrast ${datadir}/icons/HighContrast" -FILES_gnome-theme-highcontrastinverse = "${datadir}/themes/HighContrastInverse ${datadir}/icons/HighContrastInverse" -FILES_gnome-theme-highcontrastlargeprint = "${datadir}/themes/HighContrastLargePrint ${datadir}/icons/HighContrastLargePrint" -FILES_gnome-theme-highcontrastlargeprintinverse = "${datadir}/themes/HighContrastLargePrintInverse ${datadir}/icons/HighContrastLargePrintInverse" -FILES_gnome-theme-largeprint = "${datadir}/themes/LargePrint ${datadir}/icons/LargePrint" -FILES_gnome-theme-mist = "${datadir}/themes/Mist ${datadir}/icons/Mist" - -FILES_${PN} += "${datadir}/themes ${datadir}/icons" - -SRC_URI += "file://iconpath-option.patch \ - file://drop-localedir-override.patch \ -" -SRC_URI[archive.md5sum] = "41db9e3cb25d35af2675c599e67944d1" -SRC_URI[archive.sha256sum] = "8601ee24c2e096593221cbd6ebdb6686042225a03c02a01c0d67c163f9febd1a" -GNOME_COMPRESS_TYPE="bz2" - diff --git a/import-layers/meta-openembedded/meta-gnome/recipes-support/florence/florence_0.6.3.bb b/import-layers/meta-openembedded/meta-gnome/recipes-support/florence/florence_0.6.3.bb deleted file mode 100644 index b9b7d0cb1..000000000 --- a/import-layers/meta-openembedded/meta-gnome/recipes-support/florence/florence_0.6.3.bb +++ /dev/null @@ -1,19 +0,0 @@ -SUMMARY = "Florence is a virtual keyboard for touch screens" -HOMEPAGE = "http://florence.sourceforge.net/english.html" - -#NOTICE: If florence can't find its gconf settings, you need to start florence with --config for one time and save the configuration once. - -LICENSE = "GPLv2" -LIC_FILES_CHKSUM = "file://COPYING;md5=59530bdf33659b29e73d4adb9f9f6552" - -DEPENDS = "gtk+3 libxml2 libglade librsvg libxtst gconf gconf-native cairo intltool-native gnome-doc-utils libnotify gstreamer1.0" - -SRC_URI = "${SOURCEFORGE_MIRROR}/project/${PN}/${PN}/${PV}/${PN}-${PV}.tar.bz2" -SRC_URI[md5sum] = "8775051d7352f75dec5a86dc9964e8e0" -SRC_URI[sha256sum] = "422992fd07d285be73cce721a203e22cee21320d69b0fda1579ce62944c5091e" - -inherit gettext autotools gconf pkgconfig - -EXTRA_OECONF = "--disable-scrollkeeper --without-docs --without-at-spi --without-panelapplet --without-xrecord" - -FILES_${PN} += "${datadir}/glib-2.0/schemas" diff --git a/import-layers/meta-openembedded/meta-gnome/recipes-support/keybinder/keybinder_3.0.bb b/import-layers/meta-openembedded/meta-gnome/recipes-support/keybinder/keybinder_3.0.bb index d6744a306..0a0a3e6b4 100644 --- a/import-layers/meta-openembedded/meta-gnome/recipes-support/keybinder/keybinder_3.0.bb +++ b/import-layers/meta-openembedded/meta-gnome/recipes-support/keybinder/keybinder_3.0.bb @@ -18,7 +18,9 @@ SRC_URI = "git://github.com/engla/keybinder.git;branch=keybinder-3.0 \ RDEPENDS_${PN} = "gtk+" -inherit autotools gtk-doc gobject-introspection +inherit distro_features_check autotools gtk-doc gobject-introspection + +REQUIRED_DISTRO_FEATURES = "x11" do_configure_prepend() { touch ${S}/ChangeLog } diff --git a/import-layers/meta-openembedded/meta-gnome/recipes-support/onboard/onboard_1.4.1.bb b/import-layers/meta-openembedded/meta-gnome/recipes-support/onboard/onboard_1.4.1.bb index 10765ee0c..4e49becc4 100644 --- a/import-layers/meta-openembedded/meta-gnome/recipes-support/onboard/onboard_1.4.1.bb +++ b/import-layers/meta-openembedded/meta-gnome/recipes-support/onboard/onboard_1.4.1.bb @@ -10,7 +10,9 @@ SRC_URI = "https://launchpad.net/onboard/1.4/${PV}/+download/${BPN}-${PV}.tar.gz SRC_URI[md5sum] = "1a2fbe82e934f5b37841d17ff51e80e8" SRC_URI[sha256sum] = "01cae1ac5b1ef1ab985bd2d2d79ded6fc99ee04b1535cc1bb191e43a231a3865" -inherit setuptools3 pkgconfig gtk-icon-cache gsettings +inherit distro_features_check setuptools3 pkgconfig gtk-icon-cache gsettings + +REQUIRED_DISTRO_FEATURES = "x11" FILES_${PN} += " \ ${datadir}/dbus-1 \ diff --git a/import-layers/meta-openembedded/meta-gnome/recipes-support/tracker/files/90tracker b/import-layers/meta-openembedded/meta-gnome/recipes-support/tracker/files/90tracker deleted file mode 100644 index 9594b9168..000000000 --- a/import-layers/meta-openembedded/meta-gnome/recipes-support/tracker/files/90tracker +++ /dev/null @@ -1,4 +0,0 @@ -#!/bin/sh - -/usr/bin/trackerd -m & - diff --git a/import-layers/meta-openembedded/meta-gnome/recipes-support/tracker/files/tracker-dbus.service b/import-layers/meta-openembedded/meta-gnome/recipes-support/tracker/files/tracker-dbus.service deleted file mode 100644 index c97f49a89..000000000 --- a/import-layers/meta-openembedded/meta-gnome/recipes-support/tracker/files/tracker-dbus.service +++ /dev/null @@ -1,15 +0,0 @@ -[Unit] -Description=tracker DBus session bus handler -Before=tracker-store.service -After=dbus.service -Requires=dbus.service -BindTo=tracker-store.service - -[Service] -Type=forking -EnvironmentFile=-/tmp/tracker.env -ExecStartPre=@BASE_BINDIR@/rm -rf /tmp/tracker.env -ExecStart=/bin/sh -c 'echo "DBUS_SESSION_BUS_ADDRESS=`dbus-daemon --fork --session --print-address`" > /tmp/tracker.env' - -[Install] -WantedBy=multi-user.target diff --git a/import-layers/meta-openembedded/meta-gnome/recipes-support/tracker/files/tracker-miner-fs.service b/import-layers/meta-openembedded/meta-gnome/recipes-support/tracker/files/tracker-miner-fs.service deleted file mode 100644 index 34d9a1e68..000000000 --- a/import-layers/meta-openembedded/meta-gnome/recipes-support/tracker/files/tracker-miner-fs.service +++ /dev/null @@ -1,12 +0,0 @@ -[Unit] -Description=tracker-miner-fs -After=syslog.target local-fs.target udev.service dbus.service tracker-store.service -Requires=tracker-store.service - -[Service] -Environment=HOME=/home/root -EnvironmentFile=-/tmp/tracker.env -ExecStart=@LIBEXECDIR@/tracker-miner-fs - -[Install] -WantedBy=multi-user.target diff --git a/import-layers/meta-openembedded/meta-gnome/recipes-support/tracker/files/tracker-store.service b/import-layers/meta-openembedded/meta-gnome/recipes-support/tracker/files/tracker-store.service deleted file mode 100644 index c5037f3ab..000000000 --- a/import-layers/meta-openembedded/meta-gnome/recipes-support/tracker/files/tracker-store.service +++ /dev/null @@ -1,12 +0,0 @@ -[Unit] -Description=tracker-store -After=syslog.target local-fs.target dbus.service -Requires=dbus.service tracker-dbus.service -BindTo=tracker-dbus.service - -[Service] -EnvironmentFile=-/tmp/tracker.env -ExecStart=@LIBEXECDIR@/tracker-store - -[Install] -WantedBy=multi-user.target diff --git a/import-layers/meta-openembedded/meta-gnome/recipes-support/usermode/usermode_1.111.bb b/import-layers/meta-openembedded/meta-gnome/recipes-support/usermode/usermode_1.111.bb index c2d73289e..3aea2e6bb 100644 --- a/import-layers/meta-openembedded/meta-gnome/recipes-support/usermode/usermode_1.111.bb +++ b/import-layers/meta-openembedded/meta-gnome/recipes-support/usermode/usermode_1.111.bb @@ -23,7 +23,8 @@ SRC_URI[sha256sum] = "3dd0b9639b5bd396b7ea5fada6aaa694dbfdaa3ad06eb95a6eabcdfd02 LIC_FILES_CHKSUM = "file://COPYING;md5=59530bdf33659b29e73d4adb9f9f6552" -inherit autotools gettext pkgconfig +inherit distro_features_check autotools gettext pkgconfig EXTRA_OEMAKE += "INSTALL='install -p'" +REQUIRED_DISTRO_FEATURES = "x11 pam" diff --git a/import-layers/meta-openembedded/meta-gnome/site/riscv64-linux b/import-layers/meta-openembedded/meta-gnome/site/riscv64-linux new file mode 100644 index 000000000..e3a41ea0e --- /dev/null +++ b/import-layers/meta-openembedded/meta-gnome/site/riscv64-linux @@ -0,0 +1,16 @@ +# libidl +libIDL_cv_long_long_format=${libIDL_cv_long_long_format=ll} + +# ORBit2 +ac_cv_alignof_CORBA_boolean=1 +ac_cv_alignof_CORBA_char=1 +ac_cv_alignof_CORBA_double=8 +ac_cv_alignof_CORBA_float=4 +ac_cv_alignof_CORBA_long=4 +ac_cv_alignof_CORBA_long_double=8 +ac_cv_alignof_CORBA_long_long=8 +ac_cv_alignof_CORBA_octet=1 +ac_cv_alignof_CORBA_pointer=4 +ac_cv_alignof_CORBA_short=2 +ac_cv_alignof_CORBA_struct=1 +ac_cv_alignof_CORBA_wchar=2 |