summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-gnome
diff options
context:
space:
mode:
authorKoen Kooi <koen@dominion.thruhere.net>2011-06-09 17:17:57 +0200
committerKoen Kooi <koen@dominion.thruhere.net>2011-06-09 17:21:09 +0200
commitc35f42970ffe9f49dd1480c8ab279d68e443d000 (patch)
tree09b379f84a3845bde50b3bf7f58ca2f5d68eaf01 /meta-oe/recipes-gnome
parented365c1c4d3f2f43ccc074b4c9440f0ddd145615 (diff)
downloadmeta-openembedded-c35f42970ffe9f49dd1480c8ab279d68e443d000.tar.gz
move various GNOME recipes to meta-gnome
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
Diffstat (limited to 'meta-oe/recipes-gnome')
-rw-r--r--meta-oe/recipes-gnome/gnome/files/acinclude.m490
-rw-r--r--meta-oe/recipes-gnome/gnome/files/gtk-doc.m453
-rw-r--r--meta-oe/recipes-gnome/gnome/files/gtk-doc.make173
-rw-r--r--meta-oe/recipes-gnome/gnome/files/libproxy-move-define-__USE_BSD.patch17
-rw-r--r--meta-oe/recipes-gnome/gnome/files/tasn.m4161
-rw-r--r--meta-oe/recipes-gnome/gnome/gconf-native_2.6.1.bb17
-rw-r--r--meta-oe/recipes-gnome/gnome/gconf_2.28.0.bb40
-rw-r--r--meta-oe/recipes-gnome/gnome/gobject-introspection/use-usr-bin-env-for-python.patch20
-rw-r--r--meta-oe/recipes-gnome/gnome/gobject-introspection_0.9.10.bb32
-rw-r--r--meta-oe/recipes-gnome/gnome/gobject-introspection_git.bb33
-rw-r--r--meta-oe/recipes-gnome/gnome/orbit2-2.14.17/configure-lossage.patch37
-rw-r--r--meta-oe/recipes-gnome/gnome/orbit2-native_2.14.12.bb27
-rw-r--r--meta-oe/recipes-gnome/gnome/orbit2.inc32
-rw-r--r--meta-oe/recipes-gnome/gnome/orbit2/configure-lossage.patch35
-rw-r--r--meta-oe/recipes-gnome/gnome/orbit2/pkgconfig-fix.patch12
-rw-r--r--meta-oe/recipes-gnome/gnome/orbit2_2.14.17.bb5
-rw-r--r--meta-oe/recipes-gnome/hicolor-icon-theme/files/index.theme1731
-rw-r--r--meta-oe/recipes-gnome/hicolor-icon-theme/hicolor-icon-theme_0.12.bb22
-rw-r--r--meta-oe/recipes-gnome/libidl/libidl-native_0.8.13.bb10
-rw-r--r--meta-oe/recipes-gnome/libidl/libidl.inc12
-rw-r--r--meta-oe/recipes-gnome/libidl/libidl_0.8.13.bb13
-rw-r--r--meta-oe/recipes-gnome/librsvg/librsvg_2.32.1.bbappend2
22 files changed, 0 insertions, 2574 deletions
diff --git a/meta-oe/recipes-gnome/gnome/files/acinclude.m4 b/meta-oe/recipes-gnome/gnome/files/acinclude.m4
deleted file mode 100644
index 53518fb2e..000000000
--- a/meta-oe/recipes-gnome/gnome/files/acinclude.m4
+++ /dev/null
@@ -1,90 +0,0 @@
1## this one is commonly used with AM_PATH_PYTHONDIR ...
2dnl AM_CHECK_PYMOD(MODNAME [,SYMBOL [,ACTION-IF-FOUND [,ACTION-IF-NOT-FOUND]]])
3dnl Check if a module containing a given symbol is visible to python.
4AC_DEFUN(AM_CHECK_PYMOD,
5[AC_REQUIRE([AM_PATH_PYTHON])
6py_mod_var=`echo $1['_']$2 | sed 'y%./+-%__p_%'`
7AC_MSG_CHECKING(for ifelse([$2],[],,[$2 in ])python module $1)
8AC_CACHE_VAL(py_cv_mod_$py_mod_var, [
9ifelse([$2],[], [prog="
10import sys
11try:
12 import $1
13except ImportError:
14 sys.exit(1)
15except:
16 sys.exit(0)
17sys.exit(0)"], [prog="
18import $1
19$1.$2"])
20if $PYTHON -c "$prog" 1>&AC_FD_CC 2>&AC_FD_CC
21 then
22 eval "py_cv_mod_$py_mod_var=yes"
23 else
24 eval "py_cv_mod_$py_mod_var=no"
25 fi
26])
27py_val=`eval "echo \`echo '$py_cv_mod_'$py_mod_var\`"`
28if test "x$py_val" != xno; then
29 AC_MSG_RESULT(yes)
30 ifelse([$3], [],, [$3
31])dnl
32else
33 AC_MSG_RESULT(no)
34 ifelse([$4], [],, [$4
35])dnl
36fi
37])
38
39dnl a macro to check for ability to create python extensions
40dnl AM_CHECK_PYTHON_HEADERS([ACTION-IF-POSSIBLE], [ACTION-IF-NOT-POSSIBLE])
41dnl function also defines PYTHON_INCLUDES
42AC_DEFUN([AM_CHECK_PYTHON_HEADERS],
43[AC_REQUIRE([AM_PATH_PYTHON])
44AC_MSG_CHECKING(for headers required to compile python extensions)
45dnl deduce PYTHON_INCLUDES
46AC_ARG_WITH(python-includes,
47 [ --with-python-includes=DIR path to Python includes], py_exec_prefix=$withval)
48if test x$py_exec_prefix != x; then
49PYTHON_INCLUDES="-I${py_exec_prefix}/include/python${PYTHON_VERSION}"
50else
51py_prefix=`$PYTHON -c "import sys; print sys.prefix"`
52py_exec_prefix=`$PYTHON -c "import sys; print sys.exec_prefix"`
53PYTHON_INCLUDES="-I${py_prefix}/include/python${PYTHON_VERSION}"
54if test "$py_prefix" != "$py_exec_prefix"; then
55 PYTHON_INCLUDES="$PYTHON_INCLUDES -I${py_exec_prefix}/include/python${PYTHON_VERSION}"
56fi
57fi
58AC_SUBST(PYTHON_INCLUDES)
59dnl check if the headers exist:
60save_CPPFLAGS="$CPPFLAGS"
61CPPFLAGS="$CPPFLAGS $PYTHON_INCLUDES"
62AC_TRY_CPP([#include <Python.h>],dnl
63[AC_MSG_RESULT(found)
64$1],dnl
65[AC_MSG_RESULT(not found)
66$2])
67CPPFLAGS="$save_CPPFLAGS"
68])
69
70dnl
71dnl JH_ADD_CFLAG(FLAG)
72dnl checks whether the C compiler supports the given flag, and if so, adds
73dnl it to $CFLAGS. If the flag is already present in the list, then the
74dnl check is not performed.
75AC_DEFUN([JH_ADD_CFLAG],
76[
77case " $CFLAGS " in
78*@<:@\ \ @:>@$1@<:@\ \ @:>@*)
79 ;;
80*)
81 save_CFLAGS="$CFLAGS"
82 CFLAGS="$CFLAGS $1"
83 AC_MSG_CHECKING([whether [$]CC understands $1])
84 AC_TRY_COMPILE([], [], [jh_has_option=yes], [jh_has_option=no])
85 AC_MSG_RESULT($jh_has_option)
86 if test $jh_has_option = no; then
87 CFLAGS="$save_CFLAGS"
88 fi
89 ;;
90esac])
diff --git a/meta-oe/recipes-gnome/gnome/files/gtk-doc.m4 b/meta-oe/recipes-gnome/gnome/files/gtk-doc.m4
deleted file mode 100644
index 3ec41666b..000000000
--- a/meta-oe/recipes-gnome/gnome/files/gtk-doc.m4
+++ /dev/null
@@ -1,53 +0,0 @@
1dnl -*- mode: autoconf -*-
2
3# serial 1
4
5dnl Usage:
6dnl GTK_DOC_CHECK([minimum-gtk-doc-version])
7AC_DEFUN([GTK_DOC_CHECK],
8[
9 AC_BEFORE([AC_PROG_LIBTOOL],[$0])dnl setup libtool first
10 AC_BEFORE([AM_PROG_LIBTOOL],[$0])dnl setup libtool first
11 dnl for overriding the documentation installation directory
12 AC_ARG_WITH(html-dir,
13 AC_HELP_STRING([--with-html-dir=PATH], [path to installed docs]),,
14 [with_html_dir='${datadir}/gtk-doc/html'])
15 HTML_DIR="$with_html_dir"
16 AC_SUBST(HTML_DIR)
17
18 dnl enable/disable documentation building
19 AC_ARG_ENABLE(gtk-doc,
20 AC_HELP_STRING([--enable-gtk-doc],
21 [use gtk-doc to build documentation [default=no]]),,
22 enable_gtk_doc=no)
23
24 have_gtk_doc=no
25 if test -z "$PKG_CONFIG"; then
26 AC_PATH_PROG(PKG_CONFIG, pkg-config, no)
27 fi
28 if test "$PKG_CONFIG" != "no" && $PKG_CONFIG --exists gtk-doc; then
29 have_gtk_doc=yes
30 fi
31
32 dnl do we want to do a version check?
33ifelse([$1],[],,
34 [gtk_doc_min_version=$1
35 if test "$have_gtk_doc" = yes; then
36 AC_MSG_CHECKING([gtk-doc version >= $gtk_doc_min_version])
37 if $PKG_CONFIG --atleast-version $gtk_doc_min_version gtk-doc; then
38 AC_MSG_RESULT(yes)
39 else
40 AC_MSG_RESULT(no)
41 have_gtk_doc=no
42 fi
43 fi
44])
45 if test x$enable_gtk_doc = xyes; then
46 if test "$have_gtk_doc" != yes; then
47 enable_gtk_doc=no
48 fi
49 fi
50
51 AM_CONDITIONAL(ENABLE_GTK_DOC, test x$enable_gtk_doc = xyes)
52 AM_CONDITIONAL(GTK_DOC_USE_LIBTOOL, test -n "$LIBTOOL")
53])
diff --git a/meta-oe/recipes-gnome/gnome/files/gtk-doc.make b/meta-oe/recipes-gnome/gnome/files/gtk-doc.make
deleted file mode 100644
index 354ffb7c6..000000000
--- a/meta-oe/recipes-gnome/gnome/files/gtk-doc.make
+++ /dev/null
@@ -1,173 +0,0 @@
1# -*- mode: makefile -*-
2
3####################################
4# Everything below here is generic #
5####################################
6
7if GTK_DOC_USE_LIBTOOL
8GTKDOC_CC = $(LIBTOOL) --mode=compile $(CC) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
9GTKDOC_LD = $(LIBTOOL) --mode=link $(CC) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS)
10else
11GTKDOC_CC = $(CC) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
12GTKDOC_LD = $(CC) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS)
13endif
14
15# We set GPATH here; this gives us semantics for GNU make
16# which are more like other make's VPATH, when it comes to
17# whether a source that is a target of one rule is then
18# searched for in VPATH/GPATH.
19#
20GPATH = $(srcdir)
21
22TARGET_DIR=$(HTML_DIR)/$(DOC_MODULE)
23
24EXTRA_DIST = \
25 $(content_files) \
26 $(HTML_IMAGES) \
27 $(DOC_MAIN_SGML_FILE) \
28 $(DOC_MODULE)-sections.txt \
29 $(DOC_MODULE)-overrides.txt
30
31DOC_STAMPS=scan-build.stamp tmpl-build.stamp sgml-build.stamp html-build.stamp \
32 $(srcdir)/tmpl.stamp $(srcdir)/sgml.stamp $(srcdir)/html.stamp
33
34SCANOBJ_FILES = \
35 $(DOC_MODULE).args \
36 $(DOC_MODULE).hierarchy \
37 $(DOC_MODULE).interfaces \
38 $(DOC_MODULE).prerequisites \
39 $(DOC_MODULE).signals
40
41REPORT_FILES = \
42 $(DOC_MODULE)-undocumented.txt \
43 $(DOC_MODULE)-undeclared.txt \
44 $(DOC_MODULE)-unused.txt
45
46CLEANFILES = $(SCANOBJ_FILES) $(REPORT_FILES) $(DOC_STAMPS)
47
48if ENABLE_GTK_DOC
49all-local: html-build.stamp
50else
51all-local:
52endif
53
54docs: html-build.stamp
55
56#### scan ####
57
58scan-build.stamp: $(HFILE_GLOB) $(CFILE_GLOB)
59 @echo 'gtk-doc: Scanning header files'
60 @-chmod -R u+w $(srcdir)
61 cd $(srcdir) && \
62 gtkdoc-scan --module=$(DOC_MODULE) --source-dir=$(DOC_SOURCE_DIR) --ignore-headers="$(IGNORE_HFILES)" $(SCAN_OPTIONS) $(EXTRA_HFILES)
63 if grep -l '^..*$$' $(srcdir)/$(DOC_MODULE).types > /dev/null 2>&1 ; then \
64 CC="$(GTKDOC_CC)" LD="$(GTKDOC_LD)" CFLAGS="$(GTKDOC_CFLAGS)" LDFLAGS="$(GTKDOC_LIBS)" gtkdoc-scangobj $(SCANGOBJ_OPTIONS) --module=$(DOC_MODULE) --output-dir=$(srcdir) ; \
65 else \
66 cd $(srcdir) ; \
67 for i in $(SCANOBJ_FILES) ; do \
68 test -f $$i || touch $$i ; \
69 done \
70 fi
71 touch scan-build.stamp
72
73$(DOC_MODULE)-decl.txt $(SCANOBJ_FILES) $(DOC_MODULE)-sections.txt $(DOC_MODULE)-overrides.txt: scan-build.stamp
74 @true
75
76#### templates ####
77
78tmpl-build.stamp: $(DOC_MODULE)-decl.txt $(SCANOBJ_FILES) $(DOC_MODULE)-sections.txt $(DOC_MODULE)-overrides.txt
79 @echo 'gtk-doc: Rebuilding template files'
80 @-chmod -R u+w $(srcdir)
81 cd $(srcdir) && gtkdoc-mktmpl --module=$(DOC_MODULE) $(MKTMPL_OPTIONS)
82 touch tmpl-build.stamp
83
84tmpl.stamp: tmpl-build.stamp
85 @true
86
87tmpl/*.sgml:
88 @true
89
90
91#### xml ####
92
93sgml-build.stamp: tmpl.stamp $(HFILE_GLOB) $(CFILE_GLOB) $(DOC_MODULE)-sections.txt $(srcdir)/tmpl/*.sgml $(expand_content_files)
94 @echo 'gtk-doc: Building XML'
95 @-chmod -R u+w $(srcdir)
96 cd $(srcdir) && \
97 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)
98 touch sgml-build.stamp
99
100sgml.stamp: sgml-build.stamp
101 @true
102
103#### html ####
104
105html-build.stamp: sgml.stamp $(DOC_MAIN_SGML_FILE) $(content_files)
106 @echo 'gtk-doc: Building HTML'
107 @-chmod -R u+w $(srcdir)
108 rm -rf $(srcdir)/html
109 mkdir $(srcdir)/html
110 cd $(srcdir)/html && gtkdoc-mkhtml $(DOC_MODULE) ../$(DOC_MAIN_SGML_FILE)
111 test "x$(HTML_IMAGES)" = "x" || ( cd $(srcdir) && cp $(HTML_IMAGES) html )
112 @echo 'gtk-doc: Fixing cross-references'
113 cd $(srcdir) && gtkdoc-fixxref --module-dir=html --html-dir=$(HTML_DIR) $(FIXXREF_OPTIONS)
114 touch html-build.stamp
115
116##############
117
118clean-local:
119 rm -f *~ *.bak
120 rm -rf .libs
121
122distclean-local:
123 cd $(srcdir) && \
124 rm -rf xml $(REPORT_FILES) \
125 $(DOC_MODULE)-decl-list.txt $(DOC_MODULE)-decl.txt
126
127maintainer-clean-local: clean
128 cd $(srcdir) && rm -rf xml html
129
130install-data-local:
131 -installfiles=`echo $(srcdir)/html/*`; \
132 if test "$$installfiles" = '$(srcdir)/html/*'; \
133 then echo '-- Nothing to install' ; \
134 else \
135 $(mkinstalldirs) $(DESTDIR)$(TARGET_DIR); \
136 for i in $$installfiles; do \
137 echo '-- Installing '$$i ; \
138 $(INSTALL_DATA) $$i $(DESTDIR)$(TARGET_DIR); \
139 done; \
140 echo '-- Installing $(srcdir)/html/index.sgml' ; \
141 $(INSTALL_DATA) $(srcdir)/html/index.sgml $(DESTDIR)$(TARGET_DIR) || :; \
142 which gtkdoc-rebase >/dev/null && \
143 gtkdoc-rebase --relative --dest-dir=$(DESTDIR) --html-dir=$(DESTDIR)$(TARGET_DIR) ; \
144 fi
145
146
147uninstall-local:
148 rm -f $(DESTDIR)$(TARGET_DIR)/*
149
150#
151# Require gtk-doc when making dist
152#
153if ENABLE_GTK_DOC
154dist-check-gtkdoc:
155else
156dist-check-gtkdoc:
157 @echo "*** gtk-doc must be installed and enabled in order to make dist"
158 @false
159endif
160
161dist-hook: dist-check-gtkdoc dist-hook-local
162 mkdir $(distdir)/tmpl
163 mkdir $(distdir)/xml
164 mkdir $(distdir)/html
165 -cp $(srcdir)/tmpl/*.sgml $(distdir)/tmpl
166 -cp $(srcdir)/xml/*.xml $(distdir)/xml
167 cp $(srcdir)/html/* $(distdir)/html
168 -cp $(srcdir)/$(DOC_MODULE).types $(distdir)/
169 -cp $(srcdir)/$(DOC_MODULE)-sections.txt $(distdir)/
170 cd $(distdir) && rm -f $(DISTCLEANFILES)
171 -gtkdoc-rebase --online --relative --html-dir=$(distdir)/html
172
173.PHONY : dist-hook-local docs
diff --git a/meta-oe/recipes-gnome/gnome/files/libproxy-move-define-__USE_BSD.patch b/meta-oe/recipes-gnome/gnome/files/libproxy-move-define-__USE_BSD.patch
deleted file mode 100644
index b65b3608d..000000000
--- a/meta-oe/recipes-gnome/gnome/files/libproxy-move-define-__USE_BSD.patch
+++ /dev/null
@@ -1,17 +0,0 @@
1Index: libproxy-0.2.3/src/lib/dns.c
2===================================================================
3--- libproxy-0.2.3.orig/src/lib/dns.c 2009-08-14 14:13:21.123557812 -0700
4+++ libproxy-0.2.3/src/lib/dns.c 2009-08-14 14:13:31.954575500 -0700
5@@ -17,11 +17,11 @@
6 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
7 ******************************************************************************/
8
9+#define __USE_BSD
10 #include <string.h>
11 #include <errno.h>
12 #include <stdio.h>
13 #include <netdb.h>
14-#define __USE_BSD
15 #include <unistd.h>
16
17 #include "misc.h"
diff --git a/meta-oe/recipes-gnome/gnome/files/tasn.m4 b/meta-oe/recipes-gnome/gnome/files/tasn.m4
deleted file mode 100644
index 6df32085a..000000000
--- a/meta-oe/recipes-gnome/gnome/files/tasn.m4
+++ /dev/null
@@ -1,161 +0,0 @@
1dnl Autoconf macros for libtasn1
2dnl $id$
3
4# Modified for LIBTASN1 -- nmav
5# Configure paths for LIBGCRYPT
6# Shamelessly stolen from the one of XDELTA by Owen Taylor
7# Werner Koch 99-12-09
8
9dnl AM_PATH_LIBTASN1([MINIMUM-VERSION, [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND ]]])
10dnl Test for libtasn1, and define LIBTASN1_CFLAGS and LIBTASN1_LIBS
11dnl
12AC_DEFUN([AM_PATH_LIBTASN1],
13[dnl
14dnl Get the cflags and libraries from the libtasn1-config script
15dnl
16AC_ARG_WITH(libtasn1-prefix,
17 [ --with-libtasn1-prefix=PFX Prefix where libtasn1 is installed (optional)],
18 libtasn1_config_prefix="$withval", libtasn1_config_prefix="")
19
20 if test x$libtasn1_config_prefix != x ; then
21 if test x${LIBTASN1_CONFIG+set} != xset ; then
22 LIBTASN1_CONFIG=$libtasn1_config_prefix/bin/libtasn1-config
23 fi
24 fi
25
26 AC_PATH_PROG(LIBTASN1_CONFIG, libtasn1-config, no)
27 min_libtasn1_version=ifelse([$1], ,0.1.0,$1)
28 AC_MSG_CHECKING(for libtasn1 - version >= $min_libtasn1_version)
29 no_libtasn1=""
30 if test "$LIBTASN1_CONFIG" = "no" ; then
31 no_libtasn1=yes
32 else
33 LIBTASN1_CFLAGS=`$LIBTASN1_CONFIG $libtasn1_config_args --cflags`
34 LIBTASN1_LIBS=`$LIBTASN1_CONFIG $libtasn1_config_args --libs`
35 libtasn1_config_version=`$LIBTASN1_CONFIG $libtasn1_config_args --version`
36
37
38 ac_save_CFLAGS="$CFLAGS"
39 ac_save_LIBS="$LIBS"
40 CFLAGS="$CFLAGS $LIBTASN1_CFLAGS"
41 LIBS="$LIBS $LIBTASN1_LIBS"
42dnl
43dnl Now check if the installed libtasn1 is sufficiently new. Also sanity
44dnl checks the results of libtasn1-config to some extent
45dnl
46 rm -f conf.libtasn1test
47 AC_TRY_RUN([
48#include <stdio.h>
49#include <stdlib.h>
50#include <string.h>
51#include <libtasn1.h>
52
53int
54main ()
55{
56 system ("touch conf.libtasn1test");
57
58 if( strcmp( asn1_check_version(NULL), "$libtasn1_config_version" ) )
59 {
60 printf("\n*** 'libtasn1-config --version' returned %s, but LIBTASN1 (%s)\n",
61 "$libtasn1_config_version", asn1_check_version(NULL) );
62 printf("*** was found! If libtasn1-config was correct, then it is best\n");
63 printf("*** to remove the old version of LIBTASN1. You may also be able to fix the error\n");
64 printf("*** by modifying your LD_LIBRARY_PATH enviroment variable, or by editing\n");
65 printf("*** /etc/ld.so.conf. Make sure you have run ldconfig if that is\n");
66 printf("*** required on your system.\n");
67 printf("*** If libtasn1-config was wrong, set the environment variable LIBTASN1_CONFIG\n");
68 printf("*** to point to the correct copy of libtasn1-config, and remove the file config.cache\n");
69 printf("*** before re-running configure\n");
70 }
71 else if ( strcmp(asn1_check_version(NULL), LIBTASN1_VERSION ) )
72 {
73 printf("\n*** LIBTASN1 header file (version %s) does not match\n", LIBTASN1_VERSION);
74 printf("*** library (version %s)\n", asn1_check_version(NULL) );
75 }
76 else
77 {
78 if ( asn1_check_version( "$min_libtasn1_version" ) )
79 {
80 return 0;
81 }
82 else
83 {
84 printf("no\n*** An old version of LIBTASN1 (%s) was found.\n",
85 asn1_check_version(NULL) );
86 printf("*** You need a version of LIBTASN1 newer than %s. The latest version of\n",
87 "$min_libtasn1_version" );
88 printf("*** LIBTASN1 is always available from ftp://gnutls.hellug.gr/pub/gnutls/libtasn1.\n");
89 printf("*** \n");
90 printf("*** If you have already installed a sufficiently new version, this error\n");
91 printf("*** probably means that the wrong copy of the libtasn1-config shell script is\n");
92 printf("*** being found. The easiest way to fix this is to remove the old version\n");
93 printf("*** of LIBTASN1, but you can also set the LIBTASN1_CONFIG environment to point to the\n");
94 printf("*** correct copy of libtasn1-config. (In this case, you will have to\n");
95 printf("*** modify your LD_LIBRARY_PATH enviroment variable, or edit /etc/ld.so.conf\n");
96 printf("*** so that the correct libraries are found at run-time))\n");
97 }
98 }
99 return 0;
100}
101],, no_libtasn1=yes,[echo $ac_n "cross compiling; assumed OK... $ac_c"])
102 CFLAGS="$ac_save_CFLAGS"
103 LIBS="$ac_save_LIBS"
104 fi
105
106 if test "x$no_libtasn1" = x ; then
107 AC_MSG_RESULT(yes)
108 ifelse([$2], , :, [$2])
109 else
110 if test -f conf.libtasn1test ; then
111 :
112 else
113 AC_MSG_RESULT(no)
114 fi
115 if test "$LIBTASN1_CONFIG" = "no" ; then
116 echo "*** The libtasn1-config script installed by LIBTASN1 could not be found"
117 echo "*** If LIBTASN1 was installed in PREFIX, make sure PREFIX/bin is in"
118 echo "*** your path, or set the LIBTASN1_CONFIG environment variable to the"
119 echo "*** full path to libtasn1-config."
120 else
121 if test -f conf.libtasn1test ; then
122 :
123 else
124 echo "*** Could not run libtasn1 test program, checking why..."
125 CFLAGS="$CFLAGS $LIBTASN1_CFLAGS"
126 LIBS="$LIBS $LIBTASN1_LIBS"
127 AC_TRY_LINK([
128#include <stdio.h>
129#include <stdlib.h>
130#include <string.h>
131#include <libtasn1.h>
132], [ return !!asn1_check_version(NULL); ],
133 [ echo "*** The test program compiled, but did not run. This usually means"
134 echo "*** that the run-time linker is not finding LIBTASN1 or finding the wrong"
135 echo "*** version of LIBTASN1. If it is not finding LIBTASN1, you'll need to set your"
136 echo "*** LD_LIBRARY_PATH environment variable, or edit /etc/ld.so.conf to point"
137 echo "*** to the installed location Also, make sure you have run ldconfig if that"
138 echo "*** is required on your system"
139 echo "***"
140 echo "*** If you have an old version installed, it is best to remove it, although"
141 echo "*** you may also be able to get things to work by modifying LD_LIBRARY_PATH"
142 echo "***" ],
143 [ echo "*** The test program failed to compile or link. See the file config.log for the"
144 echo "*** exact error that occured. This usually means LIBTASN1 was incorrectly installed"
145 echo "*** or that you have moved LIBTASN1 since it was installed. In the latter case, you"
146 echo "*** may want to edit the libtasn1-config script: $LIBTASN1_CONFIG" ])
147 CFLAGS="$ac_save_CFLAGS"
148 LIBS="$ac_save_LIBS"
149 fi
150 fi
151 LIBTASN1_CFLAGS=""
152 LIBTASN1_LIBS=""
153 ifelse([$3], , :, [$3])
154 fi
155 rm -f conf.libtasn1test
156 AC_SUBST(LIBTASN1_CFLAGS)
157 AC_SUBST(LIBTASN1_LIBS)
158])
159
160dnl *-*wedit:notab*-* Please keep this as the last line.
161
diff --git a/meta-oe/recipes-gnome/gnome/gconf-native_2.6.1.bb b/meta-oe/recipes-gnome/gnome/gconf-native_2.6.1.bb
deleted file mode 100644
index 2ca2dada1..000000000
--- a/meta-oe/recipes-gnome/gnome/gconf-native_2.6.1.bb
+++ /dev/null
@@ -1,17 +0,0 @@
1NOTE = "This is just a dummy package to get packages stop complaining about gconftool-2 \
2 which they are not using anyway... :D"
3
4LICENSE = "MIT"
5LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58"
6
7PR = "r1"
8
9inherit native
10
11do_install() {
12 install -d ${D}${bindir}
13 echo "#!/bin/sh" >${D}${bindir}/gconftool-2
14 chmod a+rx ${D}${bindir}/gconftool-2
15}
16
17NATIVE_INSTALL_WORKS = "1"
diff --git a/meta-oe/recipes-gnome/gnome/gconf_2.28.0.bb b/meta-oe/recipes-gnome/gnome/gconf_2.28.0.bb
deleted file mode 100644
index defb5fe2f..000000000
--- a/meta-oe/recipes-gnome/gnome/gconf_2.28.0.bb
+++ /dev/null
@@ -1,40 +0,0 @@
1DESCRIPTION = "GNOME configuration database system"
2SECTION = "x11/gnome"
3DEPENDS = "gtk+ orbit2 glib-2.0 libxml2 polkit"
4ORBIT_IDL_SRC = "${STAGING_BINDIR_NATIVE}/orbit-idl-2"
5
6LICENSE = "LGPLv2+"
7LIC_FILES_CHKSUM = "file://COPYING;md5=55ca817ccb7d5b5b66355690e9abc605"
8
9S = "${WORKDIR}/GConf-${PV}"
10
11SRC_URI = "http://ftp.gnome.org/pub/GNOME/sources/GConf/2.28/GConf-${PV}.tar.bz2;name=archive"
12SRC_URI[archive.md5sum] = "ad2aeb9c7d906b274954c51a615caeac"
13SRC_URI[archive.sha256sum] = "d057dcfe2bfb2a80e592349c2a78d7dce12d19542aeced466c64fb701c806ac8"
14
15PR = "r3"
16
17RDEPENDS_${PN} += "dbus-x11"
18
19EXTRA_OECONF = " --without-openldap --disable-gtk-doc --enable-gtk POLKIT_POLICY_FILE_VALIDATE=true"
20
21inherit autotools gettext
22
23EXTRA_OEMAKE = 'ORBIT_IDL="${ORBIT_IDL_SRC}"'
24
25do_install_append() {
26 # this directory need to be created to avoid an Error 256 at gdm launch
27 install -d ${D}${sysconfdir}/gconf/gconf.xml.system
28
29 # this stuff is unusable
30 rm ${D}${libdir}/GConf/*/*.*a
31}
32
33FILES_${PN} += "${libdir}/GConf/* \
34 ${datadir}/polkit* \
35 ${datadir}/dbus-1/services/*.service \
36 ${datadir}/dbus-1/system-services/*.service \
37"
38
39FILES_${PN}-dbg += "${libdir}/*/*/.debug"
40FILES_${PN}-dev += "${datadir}/sgml/gconf/gconf-1.0.dtd"
diff --git a/meta-oe/recipes-gnome/gnome/gobject-introspection/use-usr-bin-env-for-python.patch b/meta-oe/recipes-gnome/gnome/gobject-introspection/use-usr-bin-env-for-python.patch
deleted file mode 100644
index 67b85470d..000000000
--- a/meta-oe/recipes-gnome/gnome/gobject-introspection/use-usr-bin-env-for-python.patch
+++ /dev/null
@@ -1,20 +0,0 @@
1Index: gobject-introspection-0.9.10/tools/g-ir-annotation-tool.in
2===================================================================
3--- gobject-introspection-0.9.10.orig/tools/g-ir-annotation-tool.in
4+++ gobject-introspection-0.9.10/tools/g-ir-annotation-tool.in
5@@ -1,4 +1,4 @@
6-#!@PYTHON@
7+#!/usr/bin/env python
8 # -*- Mode: Python -*-
9 # GObject-Introspection - a framework for introspecting GObject libraries
10 # Copyright (C) 2008 Johan Dahlin
11Index: gobject-introspection-0.9.10/tools/g-ir-scanner.in
12===================================================================
13--- gobject-introspection-0.9.10.orig/tools/g-ir-scanner.in
14+++ gobject-introspection-0.9.10/tools/g-ir-scanner.in
15@@ -1,4 +1,4 @@
16-#!@PYTHON@
17+#!/usr/bin/env python
18 # -*- Mode: Python -*-
19 # GObject-Introspection - a framework for introspecting GObject libraries
20 # Copyright (C) 2008 Johan Dahlin
diff --git a/meta-oe/recipes-gnome/gnome/gobject-introspection_0.9.10.bb b/meta-oe/recipes-gnome/gnome/gobject-introspection_0.9.10.bb
deleted file mode 100644
index f1a46a10b..000000000
--- a/meta-oe/recipes-gnome/gnome/gobject-introspection_0.9.10.bb
+++ /dev/null
@@ -1,32 +0,0 @@
1# NOTE: WIP! This recipe does not cross-compile atm., only -native
2SECTION = "libs"
3DEPENDS = "glib-2.0 libffi bison-native"
4BBCLASSEXTEND = "native"
5PR = "r1"
6
7LICENSE = "GPLv2+ & LGPLv2+"
8LIC_FILES_CHKSUM = "file://COPYING;md5=90d577535a3898e1ae5dbf0ae3509a8c \
9 file://COPYING.GPL;md5=94d55d512a9ba36caa9b7df079bae19f \
10 file://COPYING.LGPL;md5=3bf50002aefd002f49e7bb854063f7e7"
11
12SRC_URI[md5sum] = "e5cd63d6bcc5c105e898e7c33cf42175"
13SRC_URI[sha256sum] = "4bf244db75df04499dea704e7734376c0fc5a3a17fb59be2123c8d76111e6fb8"
14
15SRC_URI = "\
16 ${GNOME_MIRROR}/gobject-introspection/0.9/${BPN}-${PV}.tar.bz2 \
17 file://use-usr-bin-env-for-python.patch \
18"
19S = "${WORKDIR}/${BPN}-${PV}"
20
21inherit autotools
22
23do_configure_prepend() {
24 touch -f gtk-doc.make
25}
26
27EXTRA_OECONF = "\
28 --disable-gtk-doc \
29 --disable-gtk-doc-html \
30 --disable-gtk-doc-pdf \
31 --disable-tests \
32"
diff --git a/meta-oe/recipes-gnome/gnome/gobject-introspection_git.bb b/meta-oe/recipes-gnome/gnome/gobject-introspection_git.bb
deleted file mode 100644
index 2a7f30c11..000000000
--- a/meta-oe/recipes-gnome/gnome/gobject-introspection_git.bb
+++ /dev/null
@@ -1,33 +0,0 @@
1# NOTE: WIP! This recipe does not cross-compile atm., only -native
2DEPENDS = "glib-2.0 libffi python-native gobject-introspection-native"
3DEPENDS_virtclass-native = "libffi-native python-native bison-native flex-native"
4BBCLASSEXTEND = "native"
5
6SRC_URI = "git://git.gnome.org/gobject-introspection;protocol=git \
7 file://use-usr-bin-env-for-python.patch \
8"
9
10LICENSE = "GPLv2+ & LGPLv2+"
11LIC_FILES_CHKSUM = "file://COPYING.tools;md5=94d55d512a9ba36caa9b7df079bae19f \
12 file://COPYING.lib;md5=3bf50002aefd002f49e7bb854063f7e7"
13
14SRCREV = "8d64bc23d2b837421ecf9c7b0e4b8d5d95ca0d21"
15PV = "1.29.0+gitr${SRCPV}"
16DEFAULT_PREFERENCE = "-1"
17
18S = "${WORKDIR}/git"
19
20inherit autotools
21
22BBCLASSEXTEND = "native"
23
24do_configure_prepend () {
25 echo "EXTRA_DIST = " > ${S}/gtk-doc.make
26}
27
28EXTRA_OECONF = "\
29 --disable-gtk-doc \
30 --disable-gtk-doc-html \
31 --disable-gtk-doc-pdf \
32 --disable-tests \
33"
diff --git a/meta-oe/recipes-gnome/gnome/orbit2-2.14.17/configure-lossage.patch b/meta-oe/recipes-gnome/gnome/orbit2-2.14.17/configure-lossage.patch
deleted file mode 100644
index 5fc1de561..000000000
--- a/meta-oe/recipes-gnome/gnome/orbit2-2.14.17/configure-lossage.patch
+++ /dev/null
@@ -1,37 +0,0 @@
1--- ORBit2-2.14.17/configure.in-orig 2009-01-10 09:36:18.000000000 -0800
2+++ ORBit2-2.14.17/configure.in 2009-06-17 15:10:59.000000000 -0700
3@@ -217,20 +217,20 @@ dnl
4 dnl So many people with broken linking setups asked about this
5 dnl it turned out to be necessary to check for this.
6 dnl
7-dofus_save_libs="$LIBS"
8-LIBS="$ORBIT_LIBS $LIBS"
9-AC_TRY_RUN([ #include <stdio.h>
10- main ()
11- {
12- return 0;
13- } ],,
14- AC_MSG_ERROR([
15-Linking is badly borked on your system. Please ensure your library path is correct
16-Check config.log for details - check near the end of the log above 'failed program was'
17-Alternatively ensure that your /etc/ld.so.conf (and/or LD_LIBRARY_PATH) includes the
18-prefix you're compiling on: '${prefix}' ]),
19-AC_MSG_WARN([Could not check for borked linking while cross-compiling]))
20-LIBS="$dofus_save_libs"
21+dnl dofus_save_libs="$LIBS"
22+dnl LIBS="$ORBIT_LIBS $LIBS"
23+dnl AC_TRY_RUN([ #include <stdio.h>
24+dnl main ()
25+dnl {
26+dnl return 0;
27+dnl } ],,
28+dnl AC_MSG_ERROR([
29+dnl Linking is badly borked on your system. Please ensure your library path is correct
30+dnl Check config.log for details - check near the end of the log above 'failed program was'
31+dnl Alternatively ensure that your /etc/ld.so.conf (and/or LD_LIBRARY_PATH) includes the
32+dnl prefix you're compiling on: '${prefix}' ]),
33+dnl AC_MSG_WARN([Could not check for borked linking while cross-compiling]))
34+dnl LIBS="$dofus_save_libs"
35
36 orig_CPPFLAGS=$CPPFLAGS
37 CPPFLAGS="$CPPFLAGS $ORBIT_CFLAGS"
diff --git a/meta-oe/recipes-gnome/gnome/orbit2-native_2.14.12.bb b/meta-oe/recipes-gnome/gnome/orbit2-native_2.14.12.bb
deleted file mode 100644
index 1db2496c3..000000000
--- a/meta-oe/recipes-gnome/gnome/orbit2-native_2.14.12.bb
+++ /dev/null
@@ -1,27 +0,0 @@
1DESCRIPTION = "CORBA ORB"
2PR = "r0"
3LICENSE = "LGPL GPL"
4LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f"
5SECTION = "x11/gnome/libs"
6SRC_URI = "http://ftp.gnome.org/pub/GNOME/sources/ORBit2/2.14/ORBit2-${PV}.tar.bz2 \
7 file://configure-lossage.patch \
8 file://gtk-doc.m4 \
9 file://gtk-doc.make"
10DEPENDS = "libidl-native popt-native gtk-doc"
11
12S = "${WORKDIR}/ORBit2-${PV}"
13FILESDIR = "${@os.path.dirname(bb.data.getVar('FILE',d,1))}/orbit2"
14
15PARALLEL_MAKE = ""
16inherit autotools native pkgconfig
17
18EXTRA_OECONF = "--disable-gtk-doc"
19
20do_configure_prepend() {
21 mkdir -p m4
22 install ${WORKDIR}/gtk-doc.m4 ./m4/
23 install ${WORKDIR}/gtk-doc.make ./
24}
25
26SRC_URI[md5sum] = "6f4bf7d803d442e9d093a0daa203d506"
27SRC_URI[sha256sum] = "d60027a4a36e64d02723d00b76c08e8d92850cab6269b2edcda4a1bb30cc7723"
diff --git a/meta-oe/recipes-gnome/gnome/orbit2.inc b/meta-oe/recipes-gnome/gnome/orbit2.inc
deleted file mode 100644
index 51978909b..000000000
--- a/meta-oe/recipes-gnome/gnome/orbit2.inc
+++ /dev/null
@@ -1,32 +0,0 @@
1LICENSE = "GPL"
2DESCRIPTION = "CORBA ORB"
3SECTION = "x11/gnome/libs"
4SRC_URI = "http://ftp.gnome.org/pub/GNOME/sources/ORBit2/2.14/ORBit2-${PV}.tar.bz2 \
5 file://configure-lossage.patch \
6 file://pkgconfig-fix.patch \
7 file://gtk-doc.m4 \
8 file://gtk-doc.make"
9DEPENDS = "libidl popt orbit2-native gtk-doc"
10PARALLEL_MAKE = ""
11
12LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f"
13
14FILES_${PN} += "${libdir}/orbit-2.0/*.so"
15FILES_${PN}-dev += "${libdir}/orbit-2.0/*.a ${libdir}/orbit-2.0/*.la"
16FILES_${PN}-dbg += "${libdir}/orbit-2.0/.debug"
17
18S = "${WORKDIR}/ORBit2-${PV}"
19
20LEAD_SONAME = "libORBit-2.so"
21
22inherit autotools pkgconfig
23
24EXTRA_OECONF = "--disable-gtk-doc"
25EXTRA_OEMAKE = "IDL_COMPILER='${STAGING_BINDIR_NATIVE}/orbit-idl-2'"
26
27do_configure_prepend() {
28 mkdir -p m4
29 install ${WORKDIR}/gtk-doc.m4 ./m4/
30 install ${WORKDIR}/gtk-doc.make ./
31}
32
diff --git a/meta-oe/recipes-gnome/gnome/orbit2/configure-lossage.patch b/meta-oe/recipes-gnome/gnome/orbit2/configure-lossage.patch
deleted file mode 100644
index 7485a0ce0..000000000
--- a/meta-oe/recipes-gnome/gnome/orbit2/configure-lossage.patch
+++ /dev/null
@@ -1,35 +0,0 @@
1--- orbit/configure.in~ 2004-05-07 09:31:32.000000000 +0100
2+++ orbit/configure.in 2004-05-08 19:27:35.000000000 +0100
3@@ -193,19 +193,19 @@
4 dnl So many people with broken linking setups asked about this
5 dnl it turned out to be necessary to check for this.
6 dnl
7-dofus_save_libs="$LIBS"
8-LIBS="$ORBIT_LIBS $LIBS"
9-AC_TRY_RUN([ #include <stdio.h>
10- main ()
11- {
12- return 0;
13- } ],,
14- AC_MSG_ERROR([
15-Linking is badly borked on your system. Please ensure your library path is correct
16-Check config.log for details - check near the end of the log above 'failed program was'
17-Alternatively ensure that your /etc/ld.so.conf (and/or LD_LIBRARY_PATH) includes the
18-prefix you're compiling on: '${prefix}' ]))
19-LIBS="$dofus_save_libs"
20+dnl dofus_save_libs="$LIBS"
21+dnl LIBS="$ORBIT_LIBS $LIBS"
22+dnl AC_TRY_RUN([ #include <stdio.h>
23+dnl main ()
24+dnl {
25+dnl return 0;
26+dnl } ],,
27+dnl AC_MSG_ERROR([
28+dnl Linking is badly borked on your system. Please ensure your library path is correct
29+dnl Check config.log for details - check near the end of the log above 'failed program was'
30+dnl Alternatively ensure that your /etc/ld.so.conf (and/or LD_LIBRARY_PATH) includes the
31+dnl prefix you're compiling on: '${prefix}' ]))
32+dnl LIBS="$dofus_save_libs"
33
34 orig_CPPFLAGS=$CPPFLAGS
35 CPPFLAGS="$CPPFLAGS $ORBIT_CFLAGS"
diff --git a/meta-oe/recipes-gnome/gnome/orbit2/pkgconfig-fix.patch b/meta-oe/recipes-gnome/gnome/orbit2/pkgconfig-fix.patch
deleted file mode 100644
index f629e506d..000000000
--- a/meta-oe/recipes-gnome/gnome/orbit2/pkgconfig-fix.patch
+++ /dev/null
@@ -1,12 +0,0 @@
1diff -urN ORBit2-2.14.12.orig/ORBit-2.0.pc.in ORBit2-2.14.12/ORBit-2.0.pc.in
2--- ORBit2-2.14.12.orig/ORBit-2.0.pc.in 2008-01-29 13:45:22.000000000 +0100
3+++ ORBit2-2.14.12/ORBit-2.0.pc.in 2008-09-23 20:13:07.000000000 +0200
4@@ -2,7 +2,7 @@
5 exec_prefix=@exec_prefix@
6 libdir=@libdir@
7 includedir=@includedir@
8-orbit_idl=@bindir@/orbit-idl-2@EXEEXT@
9+orbit_idl=@exec_prefix@/bin/orbit-idl-2@EXEEXT@
10
11
12 Name: ORBit-2.0
diff --git a/meta-oe/recipes-gnome/gnome/orbit2_2.14.17.bb b/meta-oe/recipes-gnome/gnome/orbit2_2.14.17.bb
deleted file mode 100644
index 47f632793..000000000
--- a/meta-oe/recipes-gnome/gnome/orbit2_2.14.17.bb
+++ /dev/null
@@ -1,5 +0,0 @@
1require orbit2.inc
2
3
4SRC_URI[md5sum] = "10bfb957fa4a8935a0b4afaee7d71df7"
5SRC_URI[sha256sum] = "62bfce3f678f9347a19c766944e8aef7b89bc32b25ac23eb3e4c25929ce8974c"
diff --git a/meta-oe/recipes-gnome/hicolor-icon-theme/files/index.theme b/meta-oe/recipes-gnome/hicolor-icon-theme/files/index.theme
deleted file mode 100644
index 0471bd53f..000000000
--- a/meta-oe/recipes-gnome/hicolor-icon-theme/files/index.theme
+++ /dev/null
@@ -1,1731 +0,0 @@
1[Icon Theme]
2Name=Hicolor
3Comment=Fallback icon theme
4Hidden=true
5Directories=16x16/actions,16x16/animations,16x16/apps,16x16/categories,16x16/devices,16x16/emblems,16x16/emotes,16x16/filesystems,16x16/intl,16x16/mimetypes,16x16/places,16x16/status,16x16/stock,16x16/stock/chart,16x16/stock/code,16x16/stock/data,16x16/stock/form,16x16/stock/image,16x16/stock/io,16x16/stock/media,16x16/stock/navigation,16x16/stock/net,16x16/stock/object,16x16/stock/table,16x16/stock/text,22x22/actions,22x22/animations,22x22/apps,22x22/categories,22x22/devices,22x22/emblems,22x22/emotes,22x22/filesystems,22x22/intl,22x22/mimetypes,22x22/places,22x22/status,22x22/stock,22x22/stock/chart,22x22/stock/code,22x22/stock/data,22x22/stock/form,22x22/stock/image,22x22/stock/io,22x22/stock/media,22x22/stock/navigation,22x22/stock/net,22x22/stock/object,22x22/stock/table,22x22/stock/text,24x24/actions,24x24/animations,24x24/apps,24x24/categories,24x24/devices,24x24/emblems,24x24/emotes,24x24/filesystems,24x24/intl,24x24/mimetypes,24x24/places,24x24/status,24x24/stock,24x24/stock/chart,24x24/stock/code,24x24/stock/data,24x24/stock/form,24x24/stock/image,24x24/stock/io,24x24/stock/media,24x24/stock/navigation,24x24/stock/net,24x24/stock/object,24x24/stock/table,24x24/stock/text,32x32/actions,32x32/animations,32x32/apps,32x32/categories,32x32/devices,32x32/emblems,32x32/emotes,32x32/filesystems,32x32/intl,32x32/mimetypes,32x32/places,32x32/status,32x32/stock,32x32/stock/chart,32x32/stock/code,32x32/stock/data,32x32/stock/form,32x32/stock/image,32x32/stock/io,32x32/stock/media,32x32/stock/navigation,32x32/stock/net,32x32/stock/object,32x32/stock/table,32x32/stock/text,36x36/actions,36x36/animations,36x36/apps,36x36/categories,36x36/devices,36x36/emblems,36x36/emotes,36x36/filesystems,36x36/intl,36x36/mimetypes,36x36/places,36x36/status,36x36/stock,36x36/stock/chart,36x36/stock/code,36x36/stock/data,36x36/stock/form,36x36/stock/image,36x36/stock/io,36x36/stock/media,36x36/stock/navigation,36x36/stock/net,36x36/stock/object,36x36/stock/table,36x36/stock/text,48x48/actions,48x48/animations,48x48/apps,48x48/categories,48x48/devices,48x48/emblems,48x48/emotes,48x48/filesystems,48x48/intl,48x48/mimetypes,48x48/places,48x48/status,48x48/stock,48x48/stock/chart,48x48/stock/code,48x48/stock/data,48x48/stock/form,48x48/stock/image,48x48/stock/io,48x48/stock/media,48x48/stock/navigation,48x48/stock/net,48x48/stock/object,48x48/stock/table,48x48/stock/text,64x64/actions,64x64/animations,64x64/apps,64x64/categories,64x64/devices,64x64/emblems,64x64/emotes,64x64/filesystems,64x64/intl,64x64/mimetypes,64x64/places,64x64/status,64x64/stock,64x64/stock/chart,64x64/stock/code,64x64/stock/data,64x64/stock/form,64x64/stock/image,64x64/stock/io,64x64/stock/media,64x64/stock/navigation,64x64/stock/net,64x64/stock/object,64x64/stock/table,64x64/stock/text,72x72/actions,72x72/animations,72x72/apps,72x72/categories,72x72/devices,72x72/emblems,72x72/emotes,72x72/filesystems,72x72/intl,72x72/mimetypes,72x72/places,72x72/status,72x72/stock,72x72/stock/chart,72x72/stock/code,72x72/stock/data,72x72/stock/form,72x72/stock/image,72x72/stock/io,72x72/stock/media,72x72/stock/navigation,72x72/stock/net,72x72/stock/object,72x72/stock/table,72x72/stock/text,96x96/actions,96x96/animations,96x96/apps,96x96/categories,96x96/devices,96x96/emblems,96x96/emotes,96x96/filesystems,96x96/intl,96x96/mimetypes,96x96/places,96x96/status,96x96/stock,96x96/stock/chart,96x96/stock/code,96x96/stock/data,96x96/stock/form,96x96/stock/image,96x96/stock/io,96x96/stock/media,96x96/stock/navigation,96x96/stock/net,96x96/stock/object,96x96/stock/table,96x96/stock/text,128x128/actions,128x128/animations,128x128/apps,128x128/categories,128x128/devices,128x128/emblems,128x128/emotes,128x128/filesystems,128x128/intl,128x128/mimetypes,128x128/places,128x128/status,128x128/stock,128x128/stock/chart,128x128/stock/code,128x128/stock/data,128x128/stock/form,128x128/stock/image,128x128/stock/io,128x128/stock/media,128x128/stock/navigation,128x128/stock/net,128x128/stock/object,128x128/stock/table,128x128/stock/text,192x192/actions,192x192/animations,192x192/apps,192x192/categories,192x192/devices,192x192/emblems,192x192/emotes,192x192/filesystems,192x192/intl,192x192/mimetypes,192x192/places,192x192/status,192x192/stock,192x192/stock/chart,192x192/stock/code,192x192/stock/data,192x192/stock/form,192x192/stock/image,192x192/stock/io,192x192/stock/media,192x192/stock/navigation,192x192/stock/net,192x192/stock/object,192x192/stock/table,192x192/stock/text,scalable/actions,scalable/animations,scalable/apps,scalable/categories,scalable/devices,scalable/emblems,scalable/emotes,scalable/filesystems,scalable/intl,scalable/mimetypes,scalable/places,scalable/status,scalable/stock,scalable/stock/chart,scalable/stock/code,scalable/stock/data,scalable/stock/form,scalable/stock/image,scalable/stock/io,scalable/stock/media,scalable/stock/navigation,scalable/stock/net,scalable/stock/object,scalable/stock/table,scalable/stock/text,12x12/apps,12x12/devices,12x12/filesystems,12x12/hildon,12x12/mimetypes,16x16/hildon,26x26/apps,26x26/devices,26x26/filesystems,26x26/hildon,26x26/mimetypes,34x34/apps,34x34/devices,34x34/filesystems,34x34/hildon,34x34/mimetypes,40x40/apps,40x40/devices,40x40/filesystems,40x40/hildon,40x40/mimetypes,50x50/apps,50x50/devices,50x50/filesystems,50x50/hildon,50x50/mimetypes,250x250/apps,250x250/devices,250x250/filesystems,250x250/hildon,250x250/mimetypes,scalable/hildon
6
7[12x12/apps]
8Size=12
9Context=Applications
10Type=Threshold
11
12[12x12/devices]
13Size=12
14Context=Devices
15Type=Threshold
16
17[12x12/filesystems]
18Size=12
19Context=FileSystems
20Type=Threshold
21
22[12x12/hildon]
23Size=12
24Context=hildon
25Type=Threshold
26
27[12x12/mimetypes]
28Size=12
29Context=MimeTypes
30Type=Threshold
31
32[16x16/actions]
33Size=16
34Context=Actions
35Type=Threshold
36
37[16x16/animations]
38Size=16
39Context=Animations
40Type=Threshold
41
42[16x16/apps]
43Size=16
44Context=Applications
45Type=Threshold
46
47[16x16/categories]
48Size=16
49Context=Categories
50Type=Threshold
51
52[16x16/devices]
53Size=16
54Context=Devices
55Type=Threshold
56
57[16x16/emblems]
58Size=16
59Context=Emblems
60Type=Threshold
61
62[16x16/emotes]
63Size=16
64Context=Emotes
65Type=Threshold
66
67[16x16/filesystems]
68Size=16
69Context=FileSystems
70Type=Threshold
71
72[16x16/hildon]
73Size=16
74Context=hildon
75Type=Threshold
76
77[16x16/intl]
78Size=16
79Context=International
80Type=Threshold
81
82[16x16/mimetypes]
83Size=16
84Context=MimeTypes
85Type=Threshold
86
87[16x16/places]
88Size=16
89Context=Places
90Type=Threshold
91
92[16x16/status]
93Size=16
94Context=Status
95Type=Threshold
96
97[16x16/stock/chart]
98Size=16
99Context=Stock
100Type=Threshold
101
102[16x16/stock/code]
103Size=16
104Context=Stock
105Type=Threshold
106
107[16x16/stock/data]
108Size=16
109Context=Stock
110Type=Threshold
111
112[16x16/stock/form]
113Size=16
114Context=Stock
115Type=Threshold
116
117[16x16/stock/image]
118Size=16
119Context=Stock
120Type=Threshold
121
122[16x16/stock/io]
123Size=16
124Context=Stock
125Type=Threshold
126
127[16x16/stock/media]
128Size=16
129Context=Stock
130Type=Threshold
131
132[16x16/stock/navigation]
133Size=16
134Context=Stock
135Type=Threshold
136
137[16x16/stock/net]
138Size=16
139Context=Stock
140Type=Threshold
141
142[16x16/stock/object]
143Size=16
144Context=Stock
145Type=Threshold
146
147[16x16/stock/table]
148Size=16
149Context=Stock
150Type=Threshold
151
152[16x16/stock/text]
153Size=16
154Context=Stock
155Type=Threshold
156
157[22x22/actions]
158Size=22
159Context=Actions
160Type=Threshold
161
162[22x22/animations]
163Size=22
164Context=Animations
165Type=Threshold
166
167[22x22/apps]
168Size=22
169Context=Applications
170Type=Fixed
171
172[22x22/categories]
173Size=22
174Context=Categories
175Type=Threshold
176
177[22x22/devices]
178Size=22
179Context=Devices
180Type=Threshold
181
182[22x22/emblems]
183Size=22
184Context=Emblems
185Type=Threshold
186
187[22x22/emotes]
188Size=22
189Context=Emotes
190Type=Threshold
191
192[22x22/filesystems]
193Size=22
194Context=FileSystems
195Type=Threshold
196
197[22x22/intl]
198Size=22
199Context=International
200Type=Threshold
201
202[22x22/mimetypes]
203Size=22
204Context=MimeTypes
205Type=Threshold
206
207[22x22/places]
208Size=22
209Context=Places
210Type=Threshold
211
212[22x22/status]
213Size=22
214Context=Status
215Type=Threshold
216
217[22x22/stock/chart]
218Size=22
219Context=Stock
220Type=Threshold
221
222[22x22/stock/code]
223Size=22
224Context=Stock
225Type=Threshold
226
227[22x22/stock/data]
228Size=22
229Context=Stock
230Type=Threshold
231
232[22x22/stock/form]
233Size=22
234Context=Stock
235Type=Threshold
236
237[22x22/stock/image]
238Size=22
239Context=Stock
240Type=Threshold
241
242[22x22/stock/io]
243Size=22
244Context=Stock
245Type=Threshold
246
247[22x22/stock/media]
248Size=22
249Context=Stock
250Type=Threshold
251
252[22x22/stock/navigation]
253Size=22
254Context=Stock
255Type=Threshold
256
257[22x22/stock/net]
258Size=22
259Context=Stock
260Type=Threshold
261
262[22x22/stock/object]
263Size=22
264Context=Stock
265Type=Threshold
266
267[22x22/stock/table]
268Size=22
269Context=Stock
270Type=Threshold
271
272[22x22/stock/text]
273Size=22
274Context=Stock
275Type=Threshold
276
277[24x24/actions]
278Size=24
279Context=Actions
280Type=Threshold
281
282[24x24/animations]
283Size=24
284Context=Animations
285Type=Threshold
286
287[24x24/apps]
288Size=24
289Context=Applications
290Type=Threshold
291
292[24x24/categories]
293Size=24
294Context=Categories
295Type=Threshold
296
297[24x24/devices]
298Size=24
299Context=Devices
300Type=Threshold
301
302[24x24/emblems]
303Size=24
304Context=Emblems
305Type=Threshold
306
307[24x24/emotes]
308Size=24
309Context=Emotes
310Type=Threshold
311
312[24x24/filesystems]
313Size=24
314Context=FileSystems
315Type=Threshold
316
317[24x24/intl]
318Size=24
319Context=International
320Type=Threshold
321
322[24x24/mimetypes]
323Size=24
324Context=MimeTypes
325Type=Threshold
326
327[24x24/places]
328Size=24
329Context=Places
330Type=Threshold
331
332[24x24/status]
333Size=24
334Context=Status
335Type=Threshold
336
337[24x24/stock/chart]
338Size=24
339Context=Stock
340Type=Threshold
341
342[24x24/stock/code]
343Size=24
344Context=Stock
345Type=Threshold
346
347[24x24/stock/data]
348Size=24
349Context=Stock
350Type=Threshold
351
352[24x24/stock/form]
353Size=24
354Context=Stock
355Type=Threshold
356
357[24x24/stock/image]
358Size=24
359Context=Stock
360Type=Threshold
361
362[24x24/stock/io]
363Size=24
364Context=Stock
365Type=Threshold
366
367[24x24/stock/media]
368Size=24
369Context=Stock
370Type=Threshold
371
372[24x24/stock/navigation]
373Size=24
374Context=Stock
375Type=Threshold
376
377[24x24/stock/net]
378Size=24
379Context=Stock
380Type=Threshold
381
382[24x24/stock/object]
383Size=24
384Context=Stock
385Type=Threshold
386
387[24x24/stock/table]
388Size=24
389Context=Stock
390Type=Threshold
391
392[24x24/stock/text]
393Size=24
394Context=Stock
395Type=Threshold
396
397[26x26/apps]
398Size=26
399Context=Applications
400Type=Threshold
401
402[26x26/devices]
403Size=26
404Context=Devices
405Type=Threshold
406
407[26x26/filesystems]
408Size=26
409Context=FileSystems
410Type=Threshold
411
412[26x26/hildon]
413Size=26
414Context=hildon
415Type=Threshold
416
417[26x26/mimetypes]
418Size=26
419Context=MimeTypes
420Type=Threshold
421
422[32x32/actions]
423Size=32
424Context=Actions
425Type=Threshold
426
427[32x32/animations]
428Size=32
429Context=Animations
430Type=Threshold
431
432[32x32/apps]
433Size=32
434Context=Applications
435Type=Threshold
436
437[32x32/categories]
438Size=32
439Context=Categories
440Type=Threshold
441
442[32x32/devices]
443Size=32
444Context=Devices
445Type=Threshold
446
447[32x32/emblems]
448Size=32
449Context=Emblems
450Type=Threshold
451
452[32x32/emotes]
453Size=32
454Context=Emotes
455Type=Threshold
456
457[32x32/filesystems]
458Size=32
459Context=FileSystems
460Type=Threshold
461
462[32x32/intl]
463Size=32
464Context=International
465Type=Threshold
466
467[32x32/mimetypes]
468Size=32
469Context=MimeTypes
470Type=Threshold
471
472[32x32/places]
473Size=32
474Context=Places
475Type=Threshold
476
477[32x32/status]
478Size=32
479Context=Status
480Type=Threshold
481
482[32x32/stock/chart]
483Size=32
484Context=Stock
485Type=Threshold
486
487[32x32/stock/code]
488Size=32
489Context=Stock
490Type=Threshold
491
492[32x32/stock/data]
493Size=32
494Context=Stock
495Type=Threshold
496
497[32x32/stock/form]
498Size=32
499Context=Stock
500Type=Threshold
501
502[32x32/stock/image]
503Size=32
504Context=Stock
505Type=Threshold
506
507[32x32/stock/io]
508Size=32
509Context=Stock
510Type=Threshold
511
512[32x32/stock/media]
513Size=32
514Context=Stock
515Type=Threshold
516
517[32x32/stock/navigation]
518Size=32
519Context=Stock
520Type=Threshold
521
522[32x32/stock/net]
523Size=32
524Context=Stock
525Type=Threshold
526
527[32x32/stock/object]
528Size=32
529Context=Stock
530Type=Threshold
531
532[32x32/stock/table]
533Size=32
534Context=Stock
535Type=Threshold
536
537[32x32/stock/text]
538Size=32
539Context=Stock
540Type=Threshold
541
542[34x34/apps]
543Size=34
544Context=Applications
545Type=Threshold
546
547[34x34/devices]
548Size=34
549Context=Devices
550Type=Threshold
551
552[34x34/filesystems]
553Size=34
554Context=FileSystems
555Type=Threshold
556
557[34x34/hildon]
558Size=34
559Context=hildon
560Type=Threshold
561
562[34x34/mimetypes]
563Size=34
564Context=MimeTypes
565Type=Threshold
566
567[36x36/actions]
568Size=36
569Context=Actions
570Type=Threshold
571
572[36x36/animations]
573Size=36
574Context=Animations
575Type=Threshold
576
577[36x36/apps]
578Size=36
579Context=Applications
580Type=Threshold
581
582[36x36/categories]
583Size=36
584Context=Categories
585Type=Threshold
586
587[36x36/devices]
588Size=36
589Context=Devices
590Type=Threshold
591
592[36x36/emblems]
593Size=36
594Context=Emblems
595Type=Threshold
596
597[36x36/emotes]
598Size=36
599Context=Emotes
600Type=Threshold
601
602[36x36/filesystems]
603Size=36
604Context=FileSystems
605Type=Threshold
606
607[36x36/intl]
608Size=36
609Context=International
610Type=Threshold
611
612[36x36/mimetypes]
613Size=36
614Context=MimeTypes
615Type=Threshold
616
617[36x36/places]
618Size=36
619Context=Places
620Type=Threshold
621
622[36x36/status]
623Size=36
624Context=Status
625Type=Threshold
626
627[36x36/stock/chart]
628Size=36
629Context=Stock
630Type=Threshold
631
632[36x36/stock/code]
633Size=36
634Context=Stock
635Type=Threshold
636
637[36x36/stock/data]
638Size=36
639Context=Stock
640Type=Threshold
641
642[36x36/stock/form]
643Size=36
644Context=Stock
645Type=Threshold
646
647[36x36/stock/image]
648Size=36
649Context=Stock
650Type=Threshold
651
652[36x36/stock/io]
653Size=36
654Context=Stock
655Type=Threshold
656
657[36x36/stock/media]
658Size=36
659Context=Stock
660Type=Threshold
661
662[36x36/stock/navigation]
663Size=36
664Context=Stock
665Type=Threshold
666
667[36x36/stock/net]
668Size=36
669Context=Stock
670Type=Threshold
671
672[36x36/stock/object]
673Size=36
674Context=Stock
675Type=Threshold
676
677[36x36/stock/table]
678Size=36
679Context=Stock
680Type=Threshold
681
682[36x36/stock/text]
683Size=36
684Context=Stock
685Type=Threshold
686
687[40x40/apps]
688Size=40
689Context=Applications
690Type=Threshold
691
692[40x40/devices]
693Size=40
694Context=Devices
695Type=Threshold
696
697[40x40/filesystems]
698Size=40
699Context=FileSystems
700Type=Threshold
701
702[40x40/hildon]
703Size=40
704Context=hildon
705Type=Threshold
706
707[40x40/mimetypes]
708Size=40
709Context=MimeTypes
710Type=Threshold
711
712[48x48/actions]
713Size=48
714Context=Actions
715Type=Threshold
716
717[48x48/animations]
718Size=48
719Context=Animations
720Type=Threshold
721
722[48x48/apps]
723Size=48
724Context=Applications
725Type=Threshold
726
727[48x48/categories]
728Size=48
729Context=Categories
730Type=Threshold
731
732[48x48/devices]
733Size=48
734Context=Devices
735Type=Threshold
736
737[48x48/emblems]
738Size=48
739Context=Emblems
740Type=Threshold
741
742[48x48/emotes]
743Size=48
744Context=Emotes
745Type=Threshold
746
747[48x48/filesystems]
748Size=48
749Context=FileSystems
750Type=Threshold
751
752[48x48/intl]
753Size=48
754Context=International
755Type=Threshold
756
757[48x48/mimetypes]
758Size=48
759Context=MimeTypes
760Type=Threshold
761
762[48x48/places]
763Size=48
764Context=Places
765Type=Threshold
766
767[48x48/status]
768Size=48
769Context=Status
770Type=Threshold
771
772[48x48/stock/chart]
773Size=48
774Context=Stock
775Type=Threshold
776
777[48x48/stock/code]
778Size=48
779Context=Stock
780Type=Threshold
781
782[48x48/stock/data]
783Size=48
784Context=Stock
785Type=Threshold
786
787[48x48/stock/form]
788Size=48
789Context=Stock
790Type=Threshold
791
792[48x48/stock/image]
793Size=48
794Context=Stock
795Type=Threshold
796
797[48x48/stock/io]
798Size=48
799Context=Stock
800Type=Threshold
801
802[48x48/stock/media]
803Size=48
804Context=Stock
805Type=Threshold
806
807[48x48/stock/navigation]
808Size=48
809Context=Stock
810Type=Threshold
811
812[48x48/stock/net]
813Size=48
814Context=Stock
815Type=Threshold
816
817[48x48/stock/object]
818Size=48
819Context=Stock
820Type=Threshold
821
822[48x48/stock/table]
823Size=48
824Context=Stock
825Type=Threshold
826
827[48x48/stock/text]
828Size=48
829Context=Stock
830Type=Threshold
831
832[50x50/apps]
833Size=50
834Context=Applications
835Type=Threshold
836
837[50x50/devices]
838Size=50
839Context=Devices
840Type=Threshold
841
842[50x50/filesystems]
843Size=50
844Context=FileSystems
845Type=Threshold
846
847[50x50/hildon]
848Size=50
849Context=hildon
850Type=Threshold
851
852[50x50/mimetypes]
853Size=50
854Context=MimeTypes
855Type=Threshold
856
857[64x64/actions]
858Size=64
859Context=Actions
860Type=Threshold
861
862[64x64/animations]
863Size=64
864Context=Animations
865Type=Threshold
866
867[64x64/apps]
868Size=64
869Context=Applications
870Type=Threshold
871
872[64x64/categories]
873Size=64
874Context=Categories
875Type=Threshold
876
877[64x64/devices]
878Size=64
879Context=Devices
880Type=Threshold
881
882[64x64/emblems]
883Size=64
884Context=Emblems
885Type=Threshold
886
887[64x64/emotes]
888Size=64
889Context=Emotes
890Type=Threshold
891
892[64x64/filesystems]
893Size=64
894Context=FileSystems
895Type=Threshold
896
897[64x64/intl]
898Size=64
899Context=International
900Type=Threshold
901
902[64x64/mimetypes]
903Size=64
904Context=MimeTypes
905Type=Threshold
906
907[64x64/places]
908Size=64
909Context=Places
910Type=Threshold
911
912[64x64/status]
913Size=64
914Context=Status
915Type=Threshold
916
917[64x64/stock/chart]
918Size=64
919Context=Stock
920Type=Threshold
921
922[64x64/stock/code]
923Size=64
924Context=Stock
925Type=Threshold
926
927[64x64/stock/data]
928Size=64
929Context=Stock
930Type=Threshold
931
932[64x64/stock/form]
933Size=64
934Context=Stock
935Type=Threshold
936
937[64x64/stock/image]
938Size=64
939Context=Stock
940Type=Threshold
941
942[64x64/stock/io]
943Size=64
944Context=Stock
945Type=Threshold
946
947[64x64/stock/media]
948Size=64
949Context=Stock
950Type=Threshold
951
952[64x64/stock/navigation]
953Size=64
954Context=Stock
955Type=Threshold
956
957[64x64/stock/net]
958Size=64
959Context=Stock
960Type=Threshold
961
962[64x64/stock/object]
963Size=64
964Context=Stock
965Type=Threshold
966
967[64x64/stock/table]
968Size=64
969Context=Stock
970Type=Threshold
971
972[64x64/stock/text]
973Size=64
974Context=Stock
975Type=Threshold
976[72x72/actions]
977Size=72
978Context=Actions
979Type=Threshold
980
981[72x72/animations]
982Size=72
983Context=Animations
984Type=Threshold
985
986[72x72/apps]
987Size=72
988Context=Applications
989Type=Threshold
990
991[72x72/categories]
992Size=72
993Context=Categories
994Type=Threshold
995
996[72x72/devices]
997Size=72
998Context=Devices
999Type=Threshold
1000
1001[72x72/emblems]
1002Size=72
1003Context=Emblems
1004Type=Threshold
1005
1006[72x72/emotes]
1007Size=72
1008Context=Emotes
1009Type=Threshold
1010
1011[72x72/filesystems]
1012Size=72
1013Context=FileSystems
1014Type=Threshold
1015
1016[72x72/intl]
1017Size=72
1018Context=International
1019Type=Threshold
1020
1021[72x72/mimetypes]
1022Size=72
1023Context=MimeTypes
1024Type=Threshold
1025
1026[72x72/places]
1027Size=72
1028Context=Places
1029Type=Threshold
1030
1031[72x72/status]
1032Size=72
1033Context=Status
1034Type=Threshold
1035
1036[72x72/stock/chart]
1037Size=72
1038Context=Stock
1039Type=Threshold
1040
1041[72x72/stock/code]
1042Size=72
1043Context=Stock
1044Type=Threshold
1045
1046[72x72/stock/data]
1047Size=72
1048Context=Stock
1049Type=Threshold
1050
1051[72x72/stock/form]
1052Size=72
1053Context=Stock
1054Type=Threshold
1055
1056[72x72/stock/image]
1057Size=72
1058Context=Stock
1059Type=Threshold
1060
1061[72x72/stock/io]
1062Size=72
1063Context=Stock
1064Type=Threshold
1065
1066[72x72/stock/media]
1067Size=72
1068Context=Stock
1069Type=Threshold
1070
1071[72x72/stock/navigation]
1072Size=72
1073Context=Stock
1074Type=Threshold
1075
1076[72x72/stock/net]
1077Size=72
1078Context=Stock
1079Type=Threshold
1080
1081[72x72/stock/object]
1082Size=72
1083Context=Stock
1084Type=Threshold
1085
1086[72x72/stock/table]
1087Size=72
1088Context=Stock
1089Type=Threshold
1090
1091[72x72/stock/text]
1092Size=72
1093Context=Stock
1094Type=Threshold
1095
1096[96x96/actions]
1097Size=96
1098Context=Actions
1099Type=Threshold
1100
1101[96x96/animations]
1102Size=96
1103Context=Animations
1104Type=Threshold
1105
1106[96x96/apps]
1107Size=96
1108Context=Applications
1109Type=Threshold
1110
1111[96x96/categories]
1112Size=96
1113Context=Categories
1114Type=Threshold
1115
1116[96x96/devices]
1117Size=96
1118Context=Devices
1119Type=Threshold
1120
1121[96x96/emblems]
1122Size=96
1123Context=Emblems
1124Type=Threshold
1125
1126[96x96/emotes]
1127Size=96
1128Context=Emotes
1129Type=Threshold
1130
1131[96x96/filesystems]
1132Size=96
1133Context=FileSystems
1134Type=Threshold
1135
1136[96x96/intl]
1137Size=96
1138Context=International
1139Type=Threshold
1140
1141[96x96/mimetypes]
1142Size=96
1143Context=MimeTypes
1144Type=Threshold
1145
1146[96x96/places]
1147Size=96
1148Context=Places
1149Type=Threshold
1150
1151[96x96/status]
1152Size=96
1153Context=Status
1154Type=Threshold
1155
1156[96x96/stock/chart]
1157Size=96
1158Context=Stock
1159Type=Threshold
1160
1161[96x96/stock/code]
1162Size=96
1163Context=Stock
1164Type=Threshold
1165
1166[96x96/stock/data]
1167Size=96
1168Context=Stock
1169Type=Threshold
1170
1171[96x96/stock/form]
1172Size=96
1173Context=Stock
1174Type=Threshold
1175
1176[96x96/stock/image]
1177Size=96
1178Context=Stock
1179Type=Threshold
1180
1181[96x96/stock/io]
1182Size=96
1183Context=Stock
1184Type=Threshold
1185
1186[96x96/stock/media]
1187Size=96
1188Context=Stock
1189Type=Threshold
1190
1191[96x96/stock/navigation]
1192Size=96
1193Context=Stock
1194Type=Threshold
1195
1196[96x96/stock/net]
1197Size=96
1198Context=Stock
1199Type=Threshold
1200
1201[96x96/stock/object]
1202Size=96
1203Context=Stock
1204Type=Threshold
1205
1206[96x96/stock/table]
1207Size=96
1208Context=Stock
1209Type=Threshold
1210
1211[96x96/stock/text]
1212Size=96
1213Context=Stock
1214Type=Threshold
1215
1216[128x128/actions]
1217Size=128
1218Context=Actions
1219Type=Threshold
1220
1221[128x128/animations]
1222Size=128
1223Context=Animations
1224Type=Threshold
1225
1226[128x128/apps]
1227Size=128
1228Context=Applications
1229Type=Threshold
1230
1231[128x128/categories]
1232Size=128
1233Context=Categories
1234Type=Threshold
1235
1236[128x128/devices]
1237Size=128
1238Context=Devices
1239Type=Threshold
1240
1241[128x128/emblems]
1242Size=128
1243Context=Emblems
1244Type=Threshold
1245
1246[128x128/emotes]
1247Size=128
1248Context=Emotes
1249Type=Threshold
1250
1251[128x128/filesystems]
1252Size=128
1253Context=FileSystems
1254Type=Threshold
1255
1256[128x128/intl]
1257Size=128
1258Context=International
1259Type=Threshold
1260
1261[128x128/mimetypes]
1262Size=128
1263Context=MimeTypes
1264Type=Threshold
1265
1266[128x128/places]
1267Size=128
1268Context=Places
1269Type=Threshold
1270
1271[128x128/status]
1272Size=128
1273Context=Status
1274Type=Threshold
1275
1276[128x128/stock/chart]
1277Size=128
1278Context=Stock
1279Type=Threshold
1280
1281[128x128/stock/code]
1282Size=128
1283Context=Stock
1284Type=Threshold
1285
1286[128x128/stock/data]
1287Size=128
1288Context=Stock
1289Type=Threshold
1290
1291[128x128/stock/form]
1292Size=128
1293Context=Stock
1294Type=Threshold
1295
1296[128x128/stock/image]
1297Size=128
1298Context=Stock
1299Type=Threshold
1300
1301[128x128/stock/io]
1302Size=128
1303Context=Stock
1304Type=Threshold
1305
1306[128x128/stock/media]
1307Size=128
1308Context=Stock
1309Type=Threshold
1310
1311[128x128/stock/navigation]
1312Size=128
1313Context=Stock
1314Type=Threshold
1315
1316[128x128/stock/net]
1317Size=128
1318Context=Stock
1319Type=Threshold
1320
1321[128x128/stock/object]
1322Size=128
1323Context=Stock
1324Type=Threshold
1325
1326[128x128/stock/table]
1327Size=128
1328Context=Stock
1329Type=Threshold
1330
1331[128x128/stock/text]
1332Size=128
1333Context=Stock
1334Type=Threshold
1335
1336[192x192/actions]
1337Size=192
1338Context=Actions
1339Type=Threshold
1340
1341[192x192/animations]
1342Size=192
1343Context=Animations
1344Type=Threshold
1345
1346[192x192/apps]
1347Size=192
1348Context=Applications
1349Type=Threshold
1350
1351[192x192/categories]
1352Size=192
1353Context=Categories
1354Type=Threshold
1355
1356[192x192/devices]
1357Size=192
1358Context=Devices
1359Type=Threshold
1360
1361[192x192/emblems]
1362Size=192
1363Context=Emblems
1364Type=Threshold
1365
1366[192x192/emotes]
1367Size=192
1368Context=Emotes
1369Type=Threshold
1370
1371[192x192/filesystems]
1372Size=192
1373Context=FileSystems
1374Type=Threshold
1375
1376[192x192/intl]
1377Size=192
1378Context=International
1379Type=Threshold
1380
1381[192x192/mimetypes]
1382Size=192
1383Context=MimeTypes
1384Type=Threshold
1385
1386[192x192/places]
1387Size=192
1388Context=Places
1389Type=Threshold
1390
1391[192x192/status]
1392Size=192
1393Context=Status
1394Type=Threshold
1395
1396[192x192/stock/chart]
1397Size=192
1398Context=Stock
1399Type=Threshold
1400
1401[192x192/stock/code]
1402Size=192
1403Context=Stock
1404Type=Threshold
1405
1406[192x192/stock/data]
1407Size=192
1408Context=Stock
1409Type=Threshold
1410
1411[192x192/stock/form]
1412Size=192
1413Context=Stock
1414Type=Threshold
1415
1416[192x192/stock/image]
1417Size=192
1418Context=Stock
1419Type=Threshold
1420
1421[192x192/stock/io]
1422Size=192
1423Context=Stock
1424Type=Threshold
1425
1426[192x192/stock/media]
1427Size=192
1428Context=Stock
1429Type=Threshold
1430
1431[192x192/stock/navigation]
1432Size=192
1433Context=Stock
1434Type=Threshold
1435
1436[192x192/stock/net]
1437Size=192
1438Context=Stock
1439Type=Threshold
1440
1441[192x192/stock/object]
1442Size=192
1443Context=Stock
1444Type=Threshold
1445
1446[192x192/stock/table]
1447Size=192
1448Context=Stock
1449Type=Threshold
1450
1451[192x192/stock/text]
1452Size=192
1453Context=Stock
1454Type=Threshold
1455
1456[250x250/apps]
1457Size=250
1458Context=Applications
1459Type=Threshold
1460
1461[250x250/devices]
1462Size=250
1463Context=Devices
1464Type=Threshold
1465
1466[250x250/filesystems]
1467Size=250
1468Context=FileSystems
1469Type=Threshold
1470
1471[250x250/hildon]
1472Size=250
1473Context=hildon
1474Type=Threshold
1475
1476[250x250/mimetypes]
1477Size=250
1478Context=MimeTypes
1479Type=Threshold
1480
1481[scalable/actions]
1482MinSize=1
1483Size=128
1484MaxSize=256
1485Context=Actions
1486Type=Scalable
1487
1488[scalable/animations]
1489MinSize=1
1490Size=128
1491MaxSize=256
1492Context=Animations
1493Type=Scalable
1494
1495[scalable/apps]
1496MinSize=1
1497Size=128
1498MaxSize=256
1499Context=Applications
1500Type=Scalable
1501
1502[scalable/categories]
1503MinSize=1
1504Size=128
1505MaxSize=256
1506Context=Categories
1507Type=Scalable
1508
1509[scalable/devices]
1510MinSize=1
1511Size=128
1512MaxSize=256
1513Context=Devices
1514Type=Scalable
1515
1516[scalable/emblems]
1517MinSize=1
1518Size=128
1519MaxSize=256
1520Context=Emblems
1521Type=Scalable
1522
1523[scalable/emotes]
1524MinSize=1
1525Size=128
1526MaxSize=256
1527Context=Emotes
1528Type=Scalable
1529
1530[scalable/filesystems]
1531MinSize=1
1532Size=128
1533MaxSize=256
1534Context=FileSystems
1535Type=Scalable
1536
1537[scalable/hildon]
1538MinSize=1
1539Size=128
1540MaxSize=256
1541Context=hildon
1542Type=Scalable
1543
1544[scalable/intl]
1545MinSize=1
1546Size=128
1547MaxSize=256
1548Context=International
1549Type=Scalable
1550
1551[scalable/mimetypes]
1552MinSize=1
1553Size=128
1554MaxSize=256
1555Context=MimeTypes
1556Type=Scalable
1557
1558[scalable/places]
1559MinSize=1
1560Size=128
1561MaxSize=256
1562Context=Places
1563Type=Scalable
1564
1565[scalable/status]
1566MinSize=1
1567Size=128
1568MaxSize=256
1569Context=Status
1570Type=Scalable
1571
1572[scalable/stock/chart]
1573MinSize=1
1574Size=128
1575MaxSize=256
1576Context=Stock
1577Type=Scalable
1578
1579[scalable/stock/code]
1580MinSize=1
1581Size=128
1582MaxSize=256
1583Context=Stock
1584Type=Scalable
1585
1586[scalable/stock/data]
1587MinSize=1
1588Size=128
1589MaxSize=256
1590Context=Stock
1591Type=Scalable
1592
1593[scalable/stock/form]
1594MinSize=1
1595Size=128
1596MaxSize=256
1597Context=Stock
1598Type=Scalable
1599
1600[scalable/stock/image]
1601MinSize=1
1602Size=128
1603MaxSize=256
1604Context=Stock
1605Type=Scalable
1606
1607[scalable/stock/io]
1608MinSize=1
1609Size=128
1610MaxSize=256
1611Context=Stock
1612Type=Scalable
1613
1614[scalable/stock/media]
1615MinSize=1
1616Size=128
1617MaxSize=256
1618Context=Stock
1619Type=Scalable
1620
1621[scalable/stock/navigation]
1622MinSize=1
1623Size=128
1624MaxSize=256
1625Context=Stock
1626Type=Scalable
1627
1628[scalable/stock/net]
1629MinSize=1
1630Size=128
1631MaxSize=256
1632Context=Stock
1633Type=Scalable
1634
1635[scalable/stock/object]
1636MinSize=1
1637Size=128
1638MaxSize=256
1639Context=Stock
1640Type=Scalable
1641
1642[scalable/stock/table]
1643MinSize=1
1644Size=128
1645MaxSize=256
1646Context=Stock
1647Type=Scalable
1648
1649[scalable/stock/text]
1650MinSize=1
1651Size=128
1652MaxSize=256
1653Context=Stock
1654Type=Scalable
1655
1656[12x12/stock]
1657Size=12
1658Context=Stock
1659Type=Threshold
1660
1661[16x16/stock]
1662Size=16
1663Context=Stock
1664Type=Threshold
1665
1666[22x22/stock]
1667Size=22
1668Context=Stock
1669Type=Threshold
1670
1671[24x24/stock]
1672Size=24
1673Context=Stock
1674Type=Threshold
1675
1676[26x26/stock]
1677Size=26
1678Context=Stock
1679Type=Threshold
1680
1681[32x32/stock]
1682Size=32
1683Context=Stock
1684Type=Threshold
1685
1686[34x34/stock]
1687Size=34
1688Context=Stock
1689Type=Threshold
1690
1691[36x36/stock]
1692Size=36
1693Context=Stock
1694Type=Threshold
1695
1696[48x48/stock]
1697Size=48
1698Context=Stock
1699Type=Threshold
1700
1701[64x64/stock]
1702Size=64
1703Context=Stock
1704Type=Threshold
1705
1706[72x72/stock]
1707Size=72
1708Context=Stock
1709Type=Threshold
1710
1711[96x96/stock]
1712Size=96
1713Context=Stock
1714Type=Threshold
1715
1716[128x128/stock]
1717Size=128
1718Context=Stock
1719Type=Threshold
1720
1721[192x192/stock]
1722Size=192
1723Context=Stock
1724Type=Threshold
1725
1726[scalable/stock]
1727MinSize=1
1728Size=128
1729MaxSize=256
1730Context=Stock
1731Type=Scalable
diff --git a/meta-oe/recipes-gnome/hicolor-icon-theme/hicolor-icon-theme_0.12.bb b/meta-oe/recipes-gnome/hicolor-icon-theme/hicolor-icon-theme_0.12.bb
deleted file mode 100644
index 1934cdb50..000000000
--- a/meta-oe/recipes-gnome/hicolor-icon-theme/hicolor-icon-theme_0.12.bb
+++ /dev/null
@@ -1,22 +0,0 @@
1DESCRIPTION = "default icon theme that all icon themes automatically inherit from."
2HOMEPAGE = "http://icon-theme.freedesktop.org/wiki/HicolorTheme"
3BUGTRACKER = "https://bugs.freedesktop.org/"
4
5LICENSE = "GPLv2"
6LIC_FILES_CHKSUM = "file://COPYING;md5=f08a446809913fc9b3c718f0eaea0426"
7
8SECTION = "unknown"
9inherit gnome
10
11PR = "r0"
12
13SRC_URI = "http://icon-theme.freedesktop.org/releases/${BPN}-${PV}.tar.gz \
14 file://index.theme"
15
16PACKAGE_ARCH = "all"
17
18FILES_${PN} += "${datadir}/icons"
19
20do_install_append () {
21 install -m 0644 ${WORKDIR}/index.theme ${D}/${datadir}/icons/hicolor
22}
diff --git a/meta-oe/recipes-gnome/libidl/libidl-native_0.8.13.bb b/meta-oe/recipes-gnome/libidl/libidl-native_0.8.13.bb
deleted file mode 100644
index 834f4af42..000000000
--- a/meta-oe/recipes-gnome/libidl/libidl-native_0.8.13.bb
+++ /dev/null
@@ -1,10 +0,0 @@
1SECTION = "libs"
2require libidl_${PV}.bb
3inherit native
4
5PR = "r1"
6
7DEPENDS = "bison-native glib-2.0-native"
8
9SRC_URI[md5sum] = "b43b289a859eb38a710f70622c46e571"
10SRC_URI[sha256sum] = "bccc7e10dae979518ff012f8464e47ec4b3558a5456a94c8679653aa0b262b71"
diff --git a/meta-oe/recipes-gnome/libidl/libidl.inc b/meta-oe/recipes-gnome/libidl/libidl.inc
deleted file mode 100644
index 7a90a7044..000000000
--- a/meta-oe/recipes-gnome/libidl/libidl.inc
+++ /dev/null
@@ -1,12 +0,0 @@
1DESCRIPTION = "Library for parsing CORBA IDL files"
2SECTION = "x11/gnome/libs"
3LICENSE = "LGPL"
4
5inherit autotools pkgconfig
6
7SRC_URI = "http://ftp.gnome.org/pub/GNOME/sources/libIDL/0.8/libIDL-${PV}.tar.bz2"
8
9S = "${WORKDIR}/libIDL-${PV}"
10
11FILES_${PN} = "${libdir}/*.so.*"
12FILES_${PN}-dev += " ${bindir}"
diff --git a/meta-oe/recipes-gnome/libidl/libidl_0.8.13.bb b/meta-oe/recipes-gnome/libidl/libidl_0.8.13.bb
deleted file mode 100644
index 732178d03..000000000
--- a/meta-oe/recipes-gnome/libidl/libidl_0.8.13.bb
+++ /dev/null
@@ -1,13 +0,0 @@
1require libidl.inc
2
3LIC_FILES_CHKSUM = "file://COPYING;md5=55ca817ccb7d5b5b66355690e9abc605"
4
5DEPENDS = "glib-2.0 flex-native libidl-native"
6
7PR = "r0"
8
9BINCONFIG_GLOB = "*-config-2"
10inherit autotools pkgconfig binconfig
11
12SRC_URI[md5sum] = "b43b289a859eb38a710f70622c46e571"
13SRC_URI[sha256sum] = "bccc7e10dae979518ff012f8464e47ec4b3558a5456a94c8679653aa0b262b71"
diff --git a/meta-oe/recipes-gnome/librsvg/librsvg_2.32.1.bbappend b/meta-oe/recipes-gnome/librsvg/librsvg_2.32.1.bbappend
deleted file mode 100644
index daea68c01..000000000
--- a/meta-oe/recipes-gnome/librsvg/librsvg_2.32.1.bbappend
+++ /dev/null
@@ -1,2 +0,0 @@
1DEPENDS_virtclass-native = "cairo-native pango-native gdk-pixbuf-native"
2BBCLASSEXTEND = "native"