diff options
| author | Koen Kooi <koen@dominion.thruhere.net> | 2011-06-09 17:17:57 +0200 |
|---|---|---|
| committer | Koen Kooi <koen@dominion.thruhere.net> | 2011-06-09 17:21:09 +0200 |
| commit | c35f42970ffe9f49dd1480c8ab279d68e443d000 (patch) | |
| tree | 09b379f84a3845bde50b3bf7f58ca2f5d68eaf01 /meta-gnome | |
| parent | ed365c1c4d3f2f43ccc074b4c9440f0ddd145615 (diff) | |
| download | meta-openembedded-c35f42970ffe9f49dd1480c8ab279d68e443d000.tar.gz | |
move various GNOME recipes to meta-gnome
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
Diffstat (limited to 'meta-gnome')
19 files changed, 2306 insertions, 0 deletions
diff --git a/meta-gnome/recipes-gnome/gconf/gconf-native_2.6.1.bb b/meta-gnome/recipes-gnome/gconf/gconf-native_2.6.1.bb new file mode 100644 index 0000000000..2ca2dada1e --- /dev/null +++ b/meta-gnome/recipes-gnome/gconf/gconf-native_2.6.1.bb | |||
| @@ -0,0 +1,17 @@ | |||
| 1 | NOTE = "This is just a dummy package to get packages stop complaining about gconftool-2 \ | ||
| 2 | which they are not using anyway... :D" | ||
| 3 | |||
| 4 | LICENSE = "MIT" | ||
| 5 | LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58" | ||
| 6 | |||
| 7 | PR = "r1" | ||
| 8 | |||
| 9 | inherit native | ||
| 10 | |||
| 11 | do_install() { | ||
| 12 | install -d ${D}${bindir} | ||
| 13 | echo "#!/bin/sh" >${D}${bindir}/gconftool-2 | ||
| 14 | chmod a+rx ${D}${bindir}/gconftool-2 | ||
| 15 | } | ||
| 16 | |||
| 17 | NATIVE_INSTALL_WORKS = "1" | ||
diff --git a/meta-gnome/recipes-gnome/gconf/gconf_2.28.0.bb b/meta-gnome/recipes-gnome/gconf/gconf_2.28.0.bb new file mode 100644 index 0000000000..defb5fe2f9 --- /dev/null +++ b/meta-gnome/recipes-gnome/gconf/gconf_2.28.0.bb | |||
| @@ -0,0 +1,40 @@ | |||
| 1 | DESCRIPTION = "GNOME configuration database system" | ||
| 2 | SECTION = "x11/gnome" | ||
| 3 | DEPENDS = "gtk+ orbit2 glib-2.0 libxml2 polkit" | ||
| 4 | ORBIT_IDL_SRC = "${STAGING_BINDIR_NATIVE}/orbit-idl-2" | ||
| 5 | |||
| 6 | LICENSE = "LGPLv2+" | ||
| 7 | LIC_FILES_CHKSUM = "file://COPYING;md5=55ca817ccb7d5b5b66355690e9abc605" | ||
| 8 | |||
| 9 | S = "${WORKDIR}/GConf-${PV}" | ||
| 10 | |||
| 11 | SRC_URI = "http://ftp.gnome.org/pub/GNOME/sources/GConf/2.28/GConf-${PV}.tar.bz2;name=archive" | ||
| 12 | SRC_URI[archive.md5sum] = "ad2aeb9c7d906b274954c51a615caeac" | ||
| 13 | SRC_URI[archive.sha256sum] = "d057dcfe2bfb2a80e592349c2a78d7dce12d19542aeced466c64fb701c806ac8" | ||
| 14 | |||
| 15 | PR = "r3" | ||
| 16 | |||
| 17 | RDEPENDS_${PN} += "dbus-x11" | ||
| 18 | |||
| 19 | EXTRA_OECONF = " --without-openldap --disable-gtk-doc --enable-gtk POLKIT_POLICY_FILE_VALIDATE=true" | ||
| 20 | |||
| 21 | inherit autotools gettext | ||
| 22 | |||
| 23 | EXTRA_OEMAKE = 'ORBIT_IDL="${ORBIT_IDL_SRC}"' | ||
| 24 | |||
| 25 | do_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 | |||
| 33 | FILES_${PN} += "${libdir}/GConf/* \ | ||
| 34 | ${datadir}/polkit* \ | ||
| 35 | ${datadir}/dbus-1/services/*.service \ | ||
| 36 | ${datadir}/dbus-1/system-services/*.service \ | ||
| 37 | " | ||
| 38 | |||
| 39 | FILES_${PN}-dbg += "${libdir}/*/*/.debug" | ||
| 40 | FILES_${PN}-dev += "${datadir}/sgml/gconf/gconf-1.0.dtd" | ||
diff --git a/meta-gnome/recipes-gnome/gobject-introspection/gobject-introspection/use-usr-bin-env-for-python.patch b/meta-gnome/recipes-gnome/gobject-introspection/gobject-introspection/use-usr-bin-env-for-python.patch new file mode 100644 index 0000000000..67b85470d3 --- /dev/null +++ b/meta-gnome/recipes-gnome/gobject-introspection/gobject-introspection/use-usr-bin-env-for-python.patch | |||
| @@ -0,0 +1,20 @@ | |||
| 1 | Index: 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 | ||
| 11 | Index: 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-gnome/recipes-gnome/gobject-introspection/gobject-introspection_0.9.10.bb b/meta-gnome/recipes-gnome/gobject-introspection/gobject-introspection_0.9.10.bb new file mode 100644 index 0000000000..f1a46a10b2 --- /dev/null +++ b/meta-gnome/recipes-gnome/gobject-introspection/gobject-introspection_0.9.10.bb | |||
| @@ -0,0 +1,32 @@ | |||
| 1 | # NOTE: WIP! This recipe does not cross-compile atm., only -native | ||
| 2 | SECTION = "libs" | ||
| 3 | DEPENDS = "glib-2.0 libffi bison-native" | ||
| 4 | BBCLASSEXTEND = "native" | ||
| 5 | PR = "r1" | ||
| 6 | |||
| 7 | LICENSE = "GPLv2+ & LGPLv2+" | ||
| 8 | LIC_FILES_CHKSUM = "file://COPYING;md5=90d577535a3898e1ae5dbf0ae3509a8c \ | ||
| 9 | file://COPYING.GPL;md5=94d55d512a9ba36caa9b7df079bae19f \ | ||
| 10 | file://COPYING.LGPL;md5=3bf50002aefd002f49e7bb854063f7e7" | ||
| 11 | |||
| 12 | SRC_URI[md5sum] = "e5cd63d6bcc5c105e898e7c33cf42175" | ||
| 13 | SRC_URI[sha256sum] = "4bf244db75df04499dea704e7734376c0fc5a3a17fb59be2123c8d76111e6fb8" | ||
| 14 | |||
| 15 | SRC_URI = "\ | ||
| 16 | ${GNOME_MIRROR}/gobject-introspection/0.9/${BPN}-${PV}.tar.bz2 \ | ||
| 17 | file://use-usr-bin-env-for-python.patch \ | ||
| 18 | " | ||
| 19 | S = "${WORKDIR}/${BPN}-${PV}" | ||
| 20 | |||
| 21 | inherit autotools | ||
| 22 | |||
| 23 | do_configure_prepend() { | ||
| 24 | touch -f gtk-doc.make | ||
| 25 | } | ||
| 26 | |||
| 27 | EXTRA_OECONF = "\ | ||
| 28 | --disable-gtk-doc \ | ||
| 29 | --disable-gtk-doc-html \ | ||
| 30 | --disable-gtk-doc-pdf \ | ||
| 31 | --disable-tests \ | ||
| 32 | " | ||
diff --git a/meta-gnome/recipes-gnome/gobject-introspection/gobject-introspection_git.bb b/meta-gnome/recipes-gnome/gobject-introspection/gobject-introspection_git.bb new file mode 100644 index 0000000000..2a7f30c11c --- /dev/null +++ b/meta-gnome/recipes-gnome/gobject-introspection/gobject-introspection_git.bb | |||
| @@ -0,0 +1,33 @@ | |||
| 1 | # NOTE: WIP! This recipe does not cross-compile atm., only -native | ||
| 2 | DEPENDS = "glib-2.0 libffi python-native gobject-introspection-native" | ||
| 3 | DEPENDS_virtclass-native = "libffi-native python-native bison-native flex-native" | ||
| 4 | BBCLASSEXTEND = "native" | ||
| 5 | |||
| 6 | SRC_URI = "git://git.gnome.org/gobject-introspection;protocol=git \ | ||
| 7 | file://use-usr-bin-env-for-python.patch \ | ||
| 8 | " | ||
| 9 | |||
| 10 | LICENSE = "GPLv2+ & LGPLv2+" | ||
| 11 | LIC_FILES_CHKSUM = "file://COPYING.tools;md5=94d55d512a9ba36caa9b7df079bae19f \ | ||
| 12 | file://COPYING.lib;md5=3bf50002aefd002f49e7bb854063f7e7" | ||
| 13 | |||
| 14 | SRCREV = "8d64bc23d2b837421ecf9c7b0e4b8d5d95ca0d21" | ||
| 15 | PV = "1.29.0+gitr${SRCPV}" | ||
| 16 | DEFAULT_PREFERENCE = "-1" | ||
| 17 | |||
| 18 | S = "${WORKDIR}/git" | ||
| 19 | |||
| 20 | inherit autotools | ||
| 21 | |||
| 22 | BBCLASSEXTEND = "native" | ||
| 23 | |||
| 24 | do_configure_prepend () { | ||
| 25 | echo "EXTRA_DIST = " > ${S}/gtk-doc.make | ||
| 26 | } | ||
| 27 | |||
| 28 | EXTRA_OECONF = "\ | ||
| 29 | --disable-gtk-doc \ | ||
| 30 | --disable-gtk-doc-html \ | ||
| 31 | --disable-gtk-doc-pdf \ | ||
| 32 | --disable-tests \ | ||
| 33 | " | ||
diff --git a/meta-gnome/recipes-gnome/hicolor-icon-theme/files/index.theme b/meta-gnome/recipes-gnome/hicolor-icon-theme/files/index.theme new file mode 100644 index 0000000000..0471bd53f2 --- /dev/null +++ b/meta-gnome/recipes-gnome/hicolor-icon-theme/files/index.theme | |||
| @@ -0,0 +1,1731 @@ | |||
| 1 | [Icon Theme] | ||
| 2 | Name=Hicolor | ||
| 3 | Comment=Fallback icon theme | ||
| 4 | Hidden=true | ||
| 5 | Directories=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] | ||
| 8 | Size=12 | ||
| 9 | Context=Applications | ||
| 10 | Type=Threshold | ||
| 11 | |||
| 12 | [12x12/devices] | ||
| 13 | Size=12 | ||
| 14 | Context=Devices | ||
| 15 | Type=Threshold | ||
| 16 | |||
| 17 | [12x12/filesystems] | ||
| 18 | Size=12 | ||
| 19 | Context=FileSystems | ||
| 20 | Type=Threshold | ||
| 21 | |||
| 22 | [12x12/hildon] | ||
| 23 | Size=12 | ||
| 24 | Context=hildon | ||
| 25 | Type=Threshold | ||
| 26 | |||
| 27 | [12x12/mimetypes] | ||
| 28 | Size=12 | ||
| 29 | Context=MimeTypes | ||
| 30 | Type=Threshold | ||
| 31 | |||
| 32 | [16x16/actions] | ||
| 33 | Size=16 | ||
| 34 | Context=Actions | ||
| 35 | Type=Threshold | ||
| 36 | |||
| 37 | [16x16/animations] | ||
| 38 | Size=16 | ||
| 39 | Context=Animations | ||
| 40 | Type=Threshold | ||
| 41 | |||
| 42 | [16x16/apps] | ||
| 43 | Size=16 | ||
| 44 | Context=Applications | ||
| 45 | Type=Threshold | ||
| 46 | |||
| 47 | [16x16/categories] | ||
| 48 | Size=16 | ||
| 49 | Context=Categories | ||
| 50 | Type=Threshold | ||
| 51 | |||
| 52 | [16x16/devices] | ||
| 53 | Size=16 | ||
| 54 | Context=Devices | ||
| 55 | Type=Threshold | ||
| 56 | |||
| 57 | [16x16/emblems] | ||
| 58 | Size=16 | ||
| 59 | Context=Emblems | ||
| 60 | Type=Threshold | ||
| 61 | |||
| 62 | [16x16/emotes] | ||
| 63 | Size=16 | ||
| 64 | Context=Emotes | ||
| 65 | Type=Threshold | ||
| 66 | |||
| 67 | [16x16/filesystems] | ||
| 68 | Size=16 | ||
| 69 | Context=FileSystems | ||
| 70 | Type=Threshold | ||
| 71 | |||
| 72 | [16x16/hildon] | ||
| 73 | Size=16 | ||
| 74 | Context=hildon | ||
| 75 | Type=Threshold | ||
| 76 | |||
| 77 | [16x16/intl] | ||
| 78 | Size=16 | ||
| 79 | Context=International | ||
| 80 | Type=Threshold | ||
| 81 | |||
| 82 | [16x16/mimetypes] | ||
| 83 | Size=16 | ||
| 84 | Context=MimeTypes | ||
| 85 | Type=Threshold | ||
| 86 | |||
| 87 | [16x16/places] | ||
| 88 | Size=16 | ||
| 89 | Context=Places | ||
| 90 | Type=Threshold | ||
| 91 | |||
| 92 | [16x16/status] | ||
| 93 | Size=16 | ||
| 94 | Context=Status | ||
| 95 | Type=Threshold | ||
| 96 | |||
| 97 | [16x16/stock/chart] | ||
| 98 | Size=16 | ||
| 99 | Context=Stock | ||
| 100 | Type=Threshold | ||
| 101 | |||
| 102 | [16x16/stock/code] | ||
| 103 | Size=16 | ||
| 104 | Context=Stock | ||
| 105 | Type=Threshold | ||
| 106 | |||
| 107 | [16x16/stock/data] | ||
| 108 | Size=16 | ||
| 109 | Context=Stock | ||
| 110 | Type=Threshold | ||
| 111 | |||
| 112 | [16x16/stock/form] | ||
| 113 | Size=16 | ||
| 114 | Context=Stock | ||
| 115 | Type=Threshold | ||
| 116 | |||
| 117 | [16x16/stock/image] | ||
| 118 | Size=16 | ||
| 119 | Context=Stock | ||
| 120 | Type=Threshold | ||
| 121 | |||
| 122 | [16x16/stock/io] | ||
| 123 | Size=16 | ||
| 124 | Context=Stock | ||
| 125 | Type=Threshold | ||
| 126 | |||
| 127 | [16x16/stock/media] | ||
| 128 | Size=16 | ||
| 129 | Context=Stock | ||
| 130 | Type=Threshold | ||
| 131 | |||
| 132 | [16x16/stock/navigation] | ||
| 133 | Size=16 | ||
| 134 | Context=Stock | ||
| 135 | Type=Threshold | ||
| 136 | |||
| 137 | [16x16/stock/net] | ||
| 138 | Size=16 | ||
| 139 | Context=Stock | ||
| 140 | Type=Threshold | ||
| 141 | |||
| 142 | [16x16/stock/object] | ||
| 143 | Size=16 | ||
| 144 | Context=Stock | ||
| 145 | Type=Threshold | ||
| 146 | |||
| 147 | [16x16/stock/table] | ||
| 148 | Size=16 | ||
| 149 | Context=Stock | ||
| 150 | Type=Threshold | ||
| 151 | |||
| 152 | [16x16/stock/text] | ||
| 153 | Size=16 | ||
| 154 | Context=Stock | ||
| 155 | Type=Threshold | ||
| 156 | |||
| 157 | [22x22/actions] | ||
| 158 | Size=22 | ||
| 159 | Context=Actions | ||
| 160 | Type=Threshold | ||
| 161 | |||
| 162 | [22x22/animations] | ||
| 163 | Size=22 | ||
| 164 | Context=Animations | ||
| 165 | Type=Threshold | ||
| 166 | |||
| 167 | [22x22/apps] | ||
| 168 | Size=22 | ||
| 169 | Context=Applications | ||
| 170 | Type=Fixed | ||
| 171 | |||
| 172 | [22x22/categories] | ||
| 173 | Size=22 | ||
| 174 | Context=Categories | ||
| 175 | Type=Threshold | ||
| 176 | |||
| 177 | [22x22/devices] | ||
| 178 | Size=22 | ||
| 179 | Context=Devices | ||
| 180 | Type=Threshold | ||
| 181 | |||
| 182 | [22x22/emblems] | ||
| 183 | Size=22 | ||
| 184 | Context=Emblems | ||
| 185 | Type=Threshold | ||
| 186 | |||
| 187 | [22x22/emotes] | ||
| 188 | Size=22 | ||
| 189 | Context=Emotes | ||
| 190 | Type=Threshold | ||
| 191 | |||
| 192 | [22x22/filesystems] | ||
| 193 | Size=22 | ||
| 194 | Context=FileSystems | ||
| 195 | Type=Threshold | ||
| 196 | |||
| 197 | [22x22/intl] | ||
| 198 | Size=22 | ||
| 199 | Context=International | ||
| 200 | Type=Threshold | ||
| 201 | |||
| 202 | [22x22/mimetypes] | ||
| 203 | Size=22 | ||
| 204 | Context=MimeTypes | ||
| 205 | Type=Threshold | ||
| 206 | |||
| 207 | [22x22/places] | ||
| 208 | Size=22 | ||
| 209 | Context=Places | ||
| 210 | Type=Threshold | ||
| 211 | |||
| 212 | [22x22/status] | ||
| 213 | Size=22 | ||
| 214 | Context=Status | ||
| 215 | Type=Threshold | ||
| 216 | |||
| 217 | [22x22/stock/chart] | ||
| 218 | Size=22 | ||
| 219 | Context=Stock | ||
| 220 | Type=Threshold | ||
| 221 | |||
| 222 | [22x22/stock/code] | ||
| 223 | Size=22 | ||
| 224 | Context=Stock | ||
| 225 | Type=Threshold | ||
| 226 | |||
| 227 | [22x22/stock/data] | ||
| 228 | Size=22 | ||
| 229 | Context=Stock | ||
| 230 | Type=Threshold | ||
| 231 | |||
| 232 | [22x22/stock/form] | ||
| 233 | Size=22 | ||
| 234 | Context=Stock | ||
| 235 | Type=Threshold | ||
| 236 | |||
| 237 | [22x22/stock/image] | ||
| 238 | Size=22 | ||
| 239 | Context=Stock | ||
| 240 | Type=Threshold | ||
| 241 | |||
| 242 | [22x22/stock/io] | ||
| 243 | Size=22 | ||
| 244 | Context=Stock | ||
| 245 | Type=Threshold | ||
| 246 | |||
| 247 | [22x22/stock/media] | ||
| 248 | Size=22 | ||
| 249 | Context=Stock | ||
| 250 | Type=Threshold | ||
| 251 | |||
| 252 | [22x22/stock/navigation] | ||
| 253 | Size=22 | ||
| 254 | Context=Stock | ||
| 255 | Type=Threshold | ||
| 256 | |||
| 257 | [22x22/stock/net] | ||
| 258 | Size=22 | ||
| 259 | Context=Stock | ||
| 260 | Type=Threshold | ||
| 261 | |||
| 262 | [22x22/stock/object] | ||
| 263 | Size=22 | ||
| 264 | Context=Stock | ||
| 265 | Type=Threshold | ||
| 266 | |||
| 267 | [22x22/stock/table] | ||
| 268 | Size=22 | ||
| 269 | Context=Stock | ||
| 270 | Type=Threshold | ||
| 271 | |||
| 272 | [22x22/stock/text] | ||
| 273 | Size=22 | ||
| 274 | Context=Stock | ||
| 275 | Type=Threshold | ||
| 276 | |||
| 277 | [24x24/actions] | ||
| 278 | Size=24 | ||
| 279 | Context=Actions | ||
| 280 | Type=Threshold | ||
| 281 | |||
| 282 | [24x24/animations] | ||
| 283 | Size=24 | ||
| 284 | Context=Animations | ||
| 285 | Type=Threshold | ||
| 286 | |||
| 287 | [24x24/apps] | ||
| 288 | Size=24 | ||
| 289 | Context=Applications | ||
| 290 | Type=Threshold | ||
| 291 | |||
| 292 | [24x24/categories] | ||
| 293 | Size=24 | ||
| 294 | Context=Categories | ||
| 295 | Type=Threshold | ||
| 296 | |||
| 297 | [24x24/devices] | ||
| 298 | Size=24 | ||
| 299 | Context=Devices | ||
| 300 | Type=Threshold | ||
| 301 | |||
| 302 | [24x24/emblems] | ||
| 303 | Size=24 | ||
| 304 | Context=Emblems | ||
| 305 | Type=Threshold | ||
| 306 | |||
| 307 | [24x24/emotes] | ||
| 308 | Size=24 | ||
| 309 | Context=Emotes | ||
| 310 | Type=Threshold | ||
| 311 | |||
| 312 | [24x24/filesystems] | ||
| 313 | Size=24 | ||
| 314 | Context=FileSystems | ||
| 315 | Type=Threshold | ||
| 316 | |||
| 317 | [24x24/intl] | ||
| 318 | Size=24 | ||
| 319 | Context=International | ||
| 320 | Type=Threshold | ||
| 321 | |||
| 322 | [24x24/mimetypes] | ||
| 323 | Size=24 | ||
| 324 | Context=MimeTypes | ||
| 325 | Type=Threshold | ||
| 326 | |||
| 327 | [24x24/places] | ||
| 328 | Size=24 | ||
| 329 | Context=Places | ||
| 330 | Type=Threshold | ||
| 331 | |||
| 332 | [24x24/status] | ||
| 333 | Size=24 | ||
| 334 | Context=Status | ||
| 335 | Type=Threshold | ||
| 336 | |||
| 337 | [24x24/stock/chart] | ||
| 338 | Size=24 | ||
| 339 | Context=Stock | ||
| 340 | Type=Threshold | ||
| 341 | |||
| 342 | [24x24/stock/code] | ||
| 343 | Size=24 | ||
| 344 | Context=Stock | ||
| 345 | Type=Threshold | ||
| 346 | |||
| 347 | [24x24/stock/data] | ||
| 348 | Size=24 | ||
| 349 | Context=Stock | ||
| 350 | Type=Threshold | ||
| 351 | |||
| 352 | [24x24/stock/form] | ||
| 353 | Size=24 | ||
| 354 | Context=Stock | ||
| 355 | Type=Threshold | ||
| 356 | |||
| 357 | [24x24/stock/image] | ||
| 358 | Size=24 | ||
| 359 | Context=Stock | ||
| 360 | Type=Threshold | ||
| 361 | |||
| 362 | [24x24/stock/io] | ||
| 363 | Size=24 | ||
| 364 | Context=Stock | ||
| 365 | Type=Threshold | ||
| 366 | |||
| 367 | [24x24/stock/media] | ||
| 368 | Size=24 | ||
| 369 | Context=Stock | ||
| 370 | Type=Threshold | ||
| 371 | |||
| 372 | [24x24/stock/navigation] | ||
| 373 | Size=24 | ||
| 374 | Context=Stock | ||
| 375 | Type=Threshold | ||
| 376 | |||
| 377 | [24x24/stock/net] | ||
| 378 | Size=24 | ||
| 379 | Context=Stock | ||
| 380 | Type=Threshold | ||
| 381 | |||
| 382 | [24x24/stock/object] | ||
| 383 | Size=24 | ||
| 384 | Context=Stock | ||
| 385 | Type=Threshold | ||
| 386 | |||
| 387 | [24x24/stock/table] | ||
| 388 | Size=24 | ||
| 389 | Context=Stock | ||
| 390 | Type=Threshold | ||
| 391 | |||
| 392 | [24x24/stock/text] | ||
| 393 | Size=24 | ||
| 394 | Context=Stock | ||
| 395 | Type=Threshold | ||
| 396 | |||
| 397 | [26x26/apps] | ||
| 398 | Size=26 | ||
| 399 | Context=Applications | ||
| 400 | Type=Threshold | ||
| 401 | |||
| 402 | [26x26/devices] | ||
| 403 | Size=26 | ||
| 404 | Context=Devices | ||
| 405 | Type=Threshold | ||
| 406 | |||
| 407 | [26x26/filesystems] | ||
| 408 | Size=26 | ||
| 409 | Context=FileSystems | ||
| 410 | Type=Threshold | ||
| 411 | |||
| 412 | [26x26/hildon] | ||
| 413 | Size=26 | ||
| 414 | Context=hildon | ||
| 415 | Type=Threshold | ||
| 416 | |||
| 417 | [26x26/mimetypes] | ||
| 418 | Size=26 | ||
| 419 | Context=MimeTypes | ||
| 420 | Type=Threshold | ||
| 421 | |||
| 422 | [32x32/actions] | ||
| 423 | Size=32 | ||
| 424 | Context=Actions | ||
| 425 | Type=Threshold | ||
| 426 | |||
| 427 | [32x32/animations] | ||
| 428 | Size=32 | ||
| 429 | Context=Animations | ||
| 430 | Type=Threshold | ||
| 431 | |||
| 432 | [32x32/apps] | ||
| 433 | Size=32 | ||
| 434 | Context=Applications | ||
| 435 | Type=Threshold | ||
| 436 | |||
| 437 | [32x32/categories] | ||
| 438 | Size=32 | ||
| 439 | Context=Categories | ||
| 440 | Type=Threshold | ||
| 441 | |||
| 442 | [32x32/devices] | ||
| 443 | Size=32 | ||
| 444 | Context=Devices | ||
| 445 | Type=Threshold | ||
| 446 | |||
| 447 | [32x32/emblems] | ||
| 448 | Size=32 | ||
| 449 | Context=Emblems | ||
| 450 | Type=Threshold | ||
| 451 | |||
| 452 | [32x32/emotes] | ||
| 453 | Size=32 | ||
| 454 | Context=Emotes | ||
| 455 | Type=Threshold | ||
| 456 | |||
| 457 | [32x32/filesystems] | ||
| 458 | Size=32 | ||
| 459 | Context=FileSystems | ||
| 460 | Type=Threshold | ||
| 461 | |||
| 462 | [32x32/intl] | ||
| 463 | Size=32 | ||
| 464 | Context=International | ||
| 465 | Type=Threshold | ||
| 466 | |||
| 467 | [32x32/mimetypes] | ||
| 468 | Size=32 | ||
| 469 | Context=MimeTypes | ||
| 470 | Type=Threshold | ||
| 471 | |||
| 472 | [32x32/places] | ||
| 473 | Size=32 | ||
| 474 | Context=Places | ||
| 475 | Type=Threshold | ||
| 476 | |||
| 477 | [32x32/status] | ||
| 478 | Size=32 | ||
| 479 | Context=Status | ||
| 480 | Type=Threshold | ||
| 481 | |||
| 482 | [32x32/stock/chart] | ||
| 483 | Size=32 | ||
| 484 | Context=Stock | ||
| 485 | Type=Threshold | ||
| 486 | |||
| 487 | [32x32/stock/code] | ||
| 488 | Size=32 | ||
| 489 | Context=Stock | ||
| 490 | Type=Threshold | ||
| 491 | |||
| 492 | [32x32/stock/data] | ||
| 493 | Size=32 | ||
| 494 | Context=Stock | ||
| 495 | Type=Threshold | ||
| 496 | |||
| 497 | [32x32/stock/form] | ||
| 498 | Size=32 | ||
| 499 | Context=Stock | ||
| 500 | Type=Threshold | ||
| 501 | |||
| 502 | [32x32/stock/image] | ||
| 503 | Size=32 | ||
| 504 | Context=Stock | ||
| 505 | Type=Threshold | ||
| 506 | |||
| 507 | [32x32/stock/io] | ||
| 508 | Size=32 | ||
| 509 | Context=Stock | ||
| 510 | Type=Threshold | ||
| 511 | |||
| 512 | [32x32/stock/media] | ||
| 513 | Size=32 | ||
| 514 | Context=Stock | ||
| 515 | Type=Threshold | ||
| 516 | |||
| 517 | [32x32/stock/navigation] | ||
| 518 | Size=32 | ||
| 519 | Context=Stock | ||
| 520 | Type=Threshold | ||
| 521 | |||
| 522 | [32x32/stock/net] | ||
| 523 | Size=32 | ||
| 524 | Context=Stock | ||
| 525 | Type=Threshold | ||
| 526 | |||
| 527 | [32x32/stock/object] | ||
| 528 | Size=32 | ||
| 529 | Context=Stock | ||
| 530 | Type=Threshold | ||
| 531 | |||
| 532 | [32x32/stock/table] | ||
| 533 | Size=32 | ||
| 534 | Context=Stock | ||
| 535 | Type=Threshold | ||
| 536 | |||
| 537 | [32x32/stock/text] | ||
| 538 | Size=32 | ||
| 539 | Context=Stock | ||
| 540 | Type=Threshold | ||
| 541 | |||
| 542 | [34x34/apps] | ||
| 543 | Size=34 | ||
| 544 | Context=Applications | ||
| 545 | Type=Threshold | ||
| 546 | |||
| 547 | [34x34/devices] | ||
| 548 | Size=34 | ||
| 549 | Context=Devices | ||
| 550 | Type=Threshold | ||
| 551 | |||
| 552 | [34x34/filesystems] | ||
| 553 | Size=34 | ||
| 554 | Context=FileSystems | ||
| 555 | Type=Threshold | ||
| 556 | |||
| 557 | [34x34/hildon] | ||
| 558 | Size=34 | ||
| 559 | Context=hildon | ||
| 560 | Type=Threshold | ||
| 561 | |||
| 562 | [34x34/mimetypes] | ||
| 563 | Size=34 | ||
| 564 | Context=MimeTypes | ||
| 565 | Type=Threshold | ||
| 566 | |||
| 567 | [36x36/actions] | ||
| 568 | Size=36 | ||
| 569 | Context=Actions | ||
| 570 | Type=Threshold | ||
| 571 | |||
| 572 | [36x36/animations] | ||
| 573 | Size=36 | ||
| 574 | Context=Animations | ||
| 575 | Type=Threshold | ||
| 576 | |||
| 577 | [36x36/apps] | ||
| 578 | Size=36 | ||
| 579 | Context=Applications | ||
| 580 | Type=Threshold | ||
| 581 | |||
| 582 | [36x36/categories] | ||
| 583 | Size=36 | ||
| 584 | Context=Categories | ||
| 585 | Type=Threshold | ||
| 586 | |||
| 587 | [36x36/devices] | ||
| 588 | Size=36 | ||
| 589 | Context=Devices | ||
| 590 | Type=Threshold | ||
| 591 | |||
| 592 | [36x36/emblems] | ||
| 593 | Size=36 | ||
| 594 | Context=Emblems | ||
| 595 | Type=Threshold | ||
| 596 | |||
| 597 | [36x36/emotes] | ||
| 598 | Size=36 | ||
| 599 | Context=Emotes | ||
| 600 | Type=Threshold | ||
| 601 | |||
| 602 | [36x36/filesystems] | ||
| 603 | Size=36 | ||
| 604 | Context=FileSystems | ||
| 605 | Type=Threshold | ||
| 606 | |||
| 607 | [36x36/intl] | ||
| 608 | Size=36 | ||
| 609 | Context=International | ||
| 610 | Type=Threshold | ||
| 611 | |||
| 612 | [36x36/mimetypes] | ||
| 613 | Size=36 | ||
| 614 | Context=MimeTypes | ||
| 615 | Type=Threshold | ||
| 616 | |||
| 617 | [36x36/places] | ||
| 618 | Size=36 | ||
| 619 | Context=Places | ||
| 620 | Type=Threshold | ||
| 621 | |||
| 622 | [36x36/status] | ||
| 623 | Size=36 | ||
| 624 | Context=Status | ||
| 625 | Type=Threshold | ||
| 626 | |||
| 627 | [36x36/stock/chart] | ||
| 628 | Size=36 | ||
| 629 | Context=Stock | ||
| 630 | Type=Threshold | ||
| 631 | |||
| 632 | [36x36/stock/code] | ||
| 633 | Size=36 | ||
| 634 | Context=Stock | ||
| 635 | Type=Threshold | ||
| 636 | |||
| 637 | [36x36/stock/data] | ||
| 638 | Size=36 | ||
| 639 | Context=Stock | ||
| 640 | Type=Threshold | ||
| 641 | |||
| 642 | [36x36/stock/form] | ||
| 643 | Size=36 | ||
| 644 | Context=Stock | ||
| 645 | Type=Threshold | ||
| 646 | |||
| 647 | [36x36/stock/image] | ||
| 648 | Size=36 | ||
| 649 | Context=Stock | ||
| 650 | Type=Threshold | ||
| 651 | |||
| 652 | [36x36/stock/io] | ||
| 653 | Size=36 | ||
| 654 | Context=Stock | ||
| 655 | Type=Threshold | ||
| 656 | |||
| 657 | [36x36/stock/media] | ||
| 658 | Size=36 | ||
| 659 | Context=Stock | ||
| 660 | Type=Threshold | ||
| 661 | |||
| 662 | [36x36/stock/navigation] | ||
| 663 | Size=36 | ||
| 664 | Context=Stock | ||
| 665 | Type=Threshold | ||
| 666 | |||
| 667 | [36x36/stock/net] | ||
| 668 | Size=36 | ||
| 669 | Context=Stock | ||
| 670 | Type=Threshold | ||
| 671 | |||
| 672 | [36x36/stock/object] | ||
| 673 | Size=36 | ||
| 674 | Context=Stock | ||
| 675 | Type=Threshold | ||
| 676 | |||
| 677 | [36x36/stock/table] | ||
| 678 | Size=36 | ||
| 679 | Context=Stock | ||
| 680 | Type=Threshold | ||
| 681 | |||
| 682 | [36x36/stock/text] | ||
| 683 | Size=36 | ||
| 684 | Context=Stock | ||
| 685 | Type=Threshold | ||
| 686 | |||
| 687 | [40x40/apps] | ||
| 688 | Size=40 | ||
| 689 | Context=Applications | ||
| 690 | Type=Threshold | ||
| 691 | |||
| 692 | [40x40/devices] | ||
| 693 | Size=40 | ||
| 694 | Context=Devices | ||
| 695 | Type=Threshold | ||
| 696 | |||
| 697 | [40x40/filesystems] | ||
| 698 | Size=40 | ||
| 699 | Context=FileSystems | ||
| 700 | Type=Threshold | ||
| 701 | |||
| 702 | [40x40/hildon] | ||
| 703 | Size=40 | ||
| 704 | Context=hildon | ||
| 705 | Type=Threshold | ||
| 706 | |||
| 707 | [40x40/mimetypes] | ||
| 708 | Size=40 | ||
| 709 | Context=MimeTypes | ||
| 710 | Type=Threshold | ||
| 711 | |||
| 712 | [48x48/actions] | ||
| 713 | Size=48 | ||
| 714 | Context=Actions | ||
| 715 | Type=Threshold | ||
| 716 | |||
| 717 | [48x48/animations] | ||
| 718 | Size=48 | ||
| 719 | Context=Animations | ||
| 720 | Type=Threshold | ||
| 721 | |||
| 722 | [48x48/apps] | ||
| 723 | Size=48 | ||
| 724 | Context=Applications | ||
| 725 | Type=Threshold | ||
| 726 | |||
| 727 | [48x48/categories] | ||
| 728 | Size=48 | ||
| 729 | Context=Categories | ||
| 730 | Type=Threshold | ||
| 731 | |||
| 732 | [48x48/devices] | ||
| 733 | Size=48 | ||
| 734 | Context=Devices | ||
| 735 | Type=Threshold | ||
| 736 | |||
| 737 | [48x48/emblems] | ||
| 738 | Size=48 | ||
| 739 | Context=Emblems | ||
| 740 | Type=Threshold | ||
| 741 | |||
| 742 | [48x48/emotes] | ||
| 743 | Size=48 | ||
| 744 | Context=Emotes | ||
| 745 | Type=Threshold | ||
| 746 | |||
| 747 | [48x48/filesystems] | ||
| 748 | Size=48 | ||
| 749 | Context=FileSystems | ||
| 750 | Type=Threshold | ||
| 751 | |||
| 752 | [48x48/intl] | ||
| 753 | Size=48 | ||
| 754 | Context=International | ||
| 755 | Type=Threshold | ||
| 756 | |||
| 757 | [48x48/mimetypes] | ||
| 758 | Size=48 | ||
| 759 | Context=MimeTypes | ||
| 760 | Type=Threshold | ||
| 761 | |||
| 762 | [48x48/places] | ||
| 763 | Size=48 | ||
| 764 | Context=Places | ||
| 765 | Type=Threshold | ||
| 766 | |||
| 767 | [48x48/status] | ||
| 768 | Size=48 | ||
| 769 | Context=Status | ||
| 770 | Type=Threshold | ||
| 771 | |||
| 772 | [48x48/stock/chart] | ||
| 773 | Size=48 | ||
| 774 | Context=Stock | ||
| 775 | Type=Threshold | ||
| 776 | |||
| 777 | [48x48/stock/code] | ||
| 778 | Size=48 | ||
| 779 | Context=Stock | ||
| 780 | Type=Threshold | ||
| 781 | |||
| 782 | [48x48/stock/data] | ||
| 783 | Size=48 | ||
| 784 | Context=Stock | ||
| 785 | Type=Threshold | ||
| 786 | |||
| 787 | [48x48/stock/form] | ||
| 788 | Size=48 | ||
| 789 | Context=Stock | ||
| 790 | Type=Threshold | ||
| 791 | |||
| 792 | [48x48/stock/image] | ||
| 793 | Size=48 | ||
| 794 | Context=Stock | ||
| 795 | Type=Threshold | ||
| 796 | |||
| 797 | [48x48/stock/io] | ||
| 798 | Size=48 | ||
| 799 | Context=Stock | ||
| 800 | Type=Threshold | ||
| 801 | |||
| 802 | [48x48/stock/media] | ||
| 803 | Size=48 | ||
| 804 | Context=Stock | ||
| 805 | Type=Threshold | ||
| 806 | |||
| 807 | [48x48/stock/navigation] | ||
| 808 | Size=48 | ||
| 809 | Context=Stock | ||
| 810 | Type=Threshold | ||
| 811 | |||
| 812 | [48x48/stock/net] | ||
| 813 | Size=48 | ||
| 814 | Context=Stock | ||
| 815 | Type=Threshold | ||
| 816 | |||
| 817 | [48x48/stock/object] | ||
| 818 | Size=48 | ||
| 819 | Context=Stock | ||
| 820 | Type=Threshold | ||
| 821 | |||
| 822 | [48x48/stock/table] | ||
| 823 | Size=48 | ||
| 824 | Context=Stock | ||
| 825 | Type=Threshold | ||
| 826 | |||
| 827 | [48x48/stock/text] | ||
| 828 | Size=48 | ||
| 829 | Context=Stock | ||
| 830 | Type=Threshold | ||
| 831 | |||
| 832 | [50x50/apps] | ||
| 833 | Size=50 | ||
| 834 | Context=Applications | ||
| 835 | Type=Threshold | ||
| 836 | |||
| 837 | [50x50/devices] | ||
| 838 | Size=50 | ||
| 839 | Context=Devices | ||
| 840 | Type=Threshold | ||
| 841 | |||
| 842 | [50x50/filesystems] | ||
| 843 | Size=50 | ||
| 844 | Context=FileSystems | ||
| 845 | Type=Threshold | ||
| 846 | |||
| 847 | [50x50/hildon] | ||
| 848 | Size=50 | ||
| 849 | Context=hildon | ||
| 850 | Type=Threshold | ||
| 851 | |||
| 852 | [50x50/mimetypes] | ||
| 853 | Size=50 | ||
| 854 | Context=MimeTypes | ||
| 855 | Type=Threshold | ||
| 856 | |||
| 857 | [64x64/actions] | ||
| 858 | Size=64 | ||
| 859 | Context=Actions | ||
| 860 | Type=Threshold | ||
| 861 | |||
| 862 | [64x64/animations] | ||
| 863 | Size=64 | ||
| 864 | Context=Animations | ||
| 865 | Type=Threshold | ||
| 866 | |||
| 867 | [64x64/apps] | ||
| 868 | Size=64 | ||
| 869 | Context=Applications | ||
| 870 | Type=Threshold | ||
| 871 | |||
| 872 | [64x64/categories] | ||
| 873 | Size=64 | ||
| 874 | Context=Categories | ||
| 875 | Type=Threshold | ||
| 876 | |||
| 877 | [64x64/devices] | ||
| 878 | Size=64 | ||
| 879 | Context=Devices | ||
| 880 | Type=Threshold | ||
| 881 | |||
| 882 | [64x64/emblems] | ||
| 883 | Size=64 | ||
| 884 | Context=Emblems | ||
| 885 | Type=Threshold | ||
| 886 | |||
| 887 | [64x64/emotes] | ||
| 888 | Size=64 | ||
| 889 | Context=Emotes | ||
| 890 | Type=Threshold | ||
| 891 | |||
| 892 | [64x64/filesystems] | ||
| 893 | Size=64 | ||
| 894 | Context=FileSystems | ||
| 895 | Type=Threshold | ||
| 896 | |||
| 897 | [64x64/intl] | ||
| 898 | Size=64 | ||
| 899 | Context=International | ||
| 900 | Type=Threshold | ||
| 901 | |||
| 902 | [64x64/mimetypes] | ||
| 903 | Size=64 | ||
| 904 | Context=MimeTypes | ||
| 905 | Type=Threshold | ||
| 906 | |||
| 907 | [64x64/places] | ||
| 908 | Size=64 | ||
| 909 | Context=Places | ||
| 910 | Type=Threshold | ||
| 911 | |||
| 912 | [64x64/status] | ||
| 913 | Size=64 | ||
| 914 | Context=Status | ||
| 915 | Type=Threshold | ||
| 916 | |||
| 917 | [64x64/stock/chart] | ||
| 918 | Size=64 | ||
| 919 | Context=Stock | ||
| 920 | Type=Threshold | ||
| 921 | |||
| 922 | [64x64/stock/code] | ||
| 923 | Size=64 | ||
| 924 | Context=Stock | ||
| 925 | Type=Threshold | ||
| 926 | |||
| 927 | [64x64/stock/data] | ||
| 928 | Size=64 | ||
| 929 | Context=Stock | ||
| 930 | Type=Threshold | ||
| 931 | |||
| 932 | [64x64/stock/form] | ||
| 933 | Size=64 | ||
| 934 | Context=Stock | ||
| 935 | Type=Threshold | ||
| 936 | |||
| 937 | [64x64/stock/image] | ||
| 938 | Size=64 | ||
| 939 | Context=Stock | ||
| 940 | Type=Threshold | ||
| 941 | |||
| 942 | [64x64/stock/io] | ||
| 943 | Size=64 | ||
| 944 | Context=Stock | ||
| 945 | Type=Threshold | ||
| 946 | |||
| 947 | [64x64/stock/media] | ||
| 948 | Size=64 | ||
| 949 | Context=Stock | ||
| 950 | Type=Threshold | ||
| 951 | |||
| 952 | [64x64/stock/navigation] | ||
| 953 | Size=64 | ||
| 954 | Context=Stock | ||
| 955 | Type=Threshold | ||
| 956 | |||
| 957 | [64x64/stock/net] | ||
| 958 | Size=64 | ||
| 959 | Context=Stock | ||
| 960 | Type=Threshold | ||
| 961 | |||
| 962 | [64x64/stock/object] | ||
| 963 | Size=64 | ||
| 964 | Context=Stock | ||
| 965 | Type=Threshold | ||
| 966 | |||
| 967 | [64x64/stock/table] | ||
| 968 | Size=64 | ||
| 969 | Context=Stock | ||
| 970 | Type=Threshold | ||
| 971 | |||
| 972 | [64x64/stock/text] | ||
| 973 | Size=64 | ||
| 974 | Context=Stock | ||
| 975 | Type=Threshold | ||
| 976 | [72x72/actions] | ||
| 977 | Size=72 | ||
| 978 | Context=Actions | ||
| 979 | Type=Threshold | ||
| 980 | |||
| 981 | [72x72/animations] | ||
| 982 | Size=72 | ||
| 983 | Context=Animations | ||
| 984 | Type=Threshold | ||
| 985 | |||
| 986 | [72x72/apps] | ||
| 987 | Size=72 | ||
| 988 | Context=Applications | ||
| 989 | Type=Threshold | ||
| 990 | |||
| 991 | [72x72/categories] | ||
| 992 | Size=72 | ||
| 993 | Context=Categories | ||
| 994 | Type=Threshold | ||
| 995 | |||
| 996 | [72x72/devices] | ||
| 997 | Size=72 | ||
| 998 | Context=Devices | ||
| 999 | Type=Threshold | ||
| 1000 | |||
| 1001 | [72x72/emblems] | ||
| 1002 | Size=72 | ||
| 1003 | Context=Emblems | ||
| 1004 | Type=Threshold | ||
| 1005 | |||
| 1006 | [72x72/emotes] | ||
| 1007 | Size=72 | ||
| 1008 | Context=Emotes | ||
| 1009 | Type=Threshold | ||
| 1010 | |||
| 1011 | [72x72/filesystems] | ||
| 1012 | Size=72 | ||
| 1013 | Context=FileSystems | ||
| 1014 | Type=Threshold | ||
| 1015 | |||
| 1016 | [72x72/intl] | ||
| 1017 | Size=72 | ||
| 1018 | Context=International | ||
| 1019 | Type=Threshold | ||
| 1020 | |||
| 1021 | [72x72/mimetypes] | ||
| 1022 | Size=72 | ||
| 1023 | Context=MimeTypes | ||
| 1024 | Type=Threshold | ||
| 1025 | |||
| 1026 | [72x72/places] | ||
| 1027 | Size=72 | ||
| 1028 | Context=Places | ||
| 1029 | Type=Threshold | ||
| 1030 | |||
| 1031 | [72x72/status] | ||
| 1032 | Size=72 | ||
| 1033 | Context=Status | ||
| 1034 | Type=Threshold | ||
| 1035 | |||
| 1036 | [72x72/stock/chart] | ||
| 1037 | Size=72 | ||
| 1038 | Context=Stock | ||
| 1039 | Type=Threshold | ||
| 1040 | |||
| 1041 | [72x72/stock/code] | ||
| 1042 | Size=72 | ||
| 1043 | Context=Stock | ||
| 1044 | Type=Threshold | ||
| 1045 | |||
| 1046 | [72x72/stock/data] | ||
| 1047 | Size=72 | ||
| 1048 | Context=Stock | ||
| 1049 | Type=Threshold | ||
| 1050 | |||
| 1051 | [72x72/stock/form] | ||
| 1052 | Size=72 | ||
| 1053 | Context=Stock | ||
| 1054 | Type=Threshold | ||
| 1055 | |||
| 1056 | [72x72/stock/image] | ||
| 1057 | Size=72 | ||
| 1058 | Context=Stock | ||
| 1059 | Type=Threshold | ||
| 1060 | |||
| 1061 | [72x72/stock/io] | ||
| 1062 | Size=72 | ||
| 1063 | Context=Stock | ||
| 1064 | Type=Threshold | ||
| 1065 | |||
| 1066 | [72x72/stock/media] | ||
| 1067 | Size=72 | ||
| 1068 | Context=Stock | ||
| 1069 | Type=Threshold | ||
| 1070 | |||
| 1071 | [72x72/stock/navigation] | ||
| 1072 | Size=72 | ||
| 1073 | Context=Stock | ||
| 1074 | Type=Threshold | ||
| 1075 | |||
| 1076 | [72x72/stock/net] | ||
| 1077 | Size=72 | ||
| 1078 | Context=Stock | ||
| 1079 | Type=Threshold | ||
| 1080 | |||
| 1081 | [72x72/stock/object] | ||
| 1082 | Size=72 | ||
| 1083 | Context=Stock | ||
| 1084 | Type=Threshold | ||
| 1085 | |||
| 1086 | [72x72/stock/table] | ||
| 1087 | Size=72 | ||
| 1088 | Context=Stock | ||
| 1089 | Type=Threshold | ||
| 1090 | |||
| 1091 | [72x72/stock/text] | ||
| 1092 | Size=72 | ||
| 1093 | Context=Stock | ||
| 1094 | Type=Threshold | ||
| 1095 | |||
| 1096 | [96x96/actions] | ||
| 1097 | Size=96 | ||
| 1098 | Context=Actions | ||
| 1099 | Type=Threshold | ||
| 1100 | |||
| 1101 | [96x96/animations] | ||
| 1102 | Size=96 | ||
| 1103 | Context=Animations | ||
| 1104 | Type=Threshold | ||
| 1105 | |||
| 1106 | [96x96/apps] | ||
| 1107 | Size=96 | ||
| 1108 | Context=Applications | ||
| 1109 | Type=Threshold | ||
| 1110 | |||
| 1111 | [96x96/categories] | ||
| 1112 | Size=96 | ||
| 1113 | Context=Categories | ||
| 1114 | Type=Threshold | ||
| 1115 | |||
| 1116 | [96x96/devices] | ||
| 1117 | Size=96 | ||
| 1118 | Context=Devices | ||
| 1119 | Type=Threshold | ||
| 1120 | |||
| 1121 | [96x96/emblems] | ||
| 1122 | Size=96 | ||
| 1123 | Context=Emblems | ||
| 1124 | Type=Threshold | ||
| 1125 | |||
| 1126 | [96x96/emotes] | ||
| 1127 | Size=96 | ||
| 1128 | Context=Emotes | ||
| 1129 | Type=Threshold | ||
| 1130 | |||
| 1131 | [96x96/filesystems] | ||
| 1132 | Size=96 | ||
| 1133 | Context=FileSystems | ||
| 1134 | Type=Threshold | ||
| 1135 | |||
| 1136 | [96x96/intl] | ||
| 1137 | Size=96 | ||
| 1138 | Context=International | ||
| 1139 | Type=Threshold | ||
| 1140 | |||
| 1141 | [96x96/mimetypes] | ||
| 1142 | Size=96 | ||
| 1143 | Context=MimeTypes | ||
| 1144 | Type=Threshold | ||
| 1145 | |||
| 1146 | [96x96/places] | ||
| 1147 | Size=96 | ||
| 1148 | Context=Places | ||
| 1149 | Type=Threshold | ||
| 1150 | |||
| 1151 | [96x96/status] | ||
| 1152 | Size=96 | ||
| 1153 | Context=Status | ||
| 1154 | Type=Threshold | ||
| 1155 | |||
| 1156 | [96x96/stock/chart] | ||
| 1157 | Size=96 | ||
| 1158 | Context=Stock | ||
| 1159 | Type=Threshold | ||
| 1160 | |||
| 1161 | [96x96/stock/code] | ||
| 1162 | Size=96 | ||
| 1163 | Context=Stock | ||
| 1164 | Type=Threshold | ||
| 1165 | |||
| 1166 | [96x96/stock/data] | ||
| 1167 | Size=96 | ||
| 1168 | Context=Stock | ||
| 1169 | Type=Threshold | ||
| 1170 | |||
| 1171 | [96x96/stock/form] | ||
| 1172 | Size=96 | ||
| 1173 | Context=Stock | ||
| 1174 | Type=Threshold | ||
| 1175 | |||
| 1176 | [96x96/stock/image] | ||
| 1177 | Size=96 | ||
| 1178 | Context=Stock | ||
| 1179 | Type=Threshold | ||
| 1180 | |||
| 1181 | [96x96/stock/io] | ||
| 1182 | Size=96 | ||
| 1183 | Context=Stock | ||
| 1184 | Type=Threshold | ||
| 1185 | |||
| 1186 | [96x96/stock/media] | ||
| 1187 | Size=96 | ||
| 1188 | Context=Stock | ||
| 1189 | Type=Threshold | ||
| 1190 | |||
| 1191 | [96x96/stock/navigation] | ||
| 1192 | Size=96 | ||
| 1193 | Context=Stock | ||
| 1194 | Type=Threshold | ||
| 1195 | |||
| 1196 | [96x96/stock/net] | ||
| 1197 | Size=96 | ||
| 1198 | Context=Stock | ||
| 1199 | Type=Threshold | ||
| 1200 | |||
| 1201 | [96x96/stock/object] | ||
| 1202 | Size=96 | ||
| 1203 | Context=Stock | ||
| 1204 | Type=Threshold | ||
| 1205 | |||
| 1206 | [96x96/stock/table] | ||
| 1207 | Size=96 | ||
| 1208 | Context=Stock | ||
| 1209 | Type=Threshold | ||
| 1210 | |||
| 1211 | [96x96/stock/text] | ||
| 1212 | Size=96 | ||
| 1213 | Context=Stock | ||
| 1214 | Type=Threshold | ||
| 1215 | |||
| 1216 | [128x128/actions] | ||
| 1217 | Size=128 | ||
| 1218 | Context=Actions | ||
| 1219 | Type=Threshold | ||
| 1220 | |||
| 1221 | [128x128/animations] | ||
| 1222 | Size=128 | ||
| 1223 | Context=Animations | ||
| 1224 | Type=Threshold | ||
| 1225 | |||
| 1226 | [128x128/apps] | ||
| 1227 | Size=128 | ||
| 1228 | Context=Applications | ||
| 1229 | Type=Threshold | ||
| 1230 | |||
| 1231 | [128x128/categories] | ||
| 1232 | Size=128 | ||
| 1233 | Context=Categories | ||
| 1234 | Type=Threshold | ||
| 1235 | |||
| 1236 | [128x128/devices] | ||
| 1237 | Size=128 | ||
| 1238 | Context=Devices | ||
| 1239 | Type=Threshold | ||
| 1240 | |||
| 1241 | [128x128/emblems] | ||
| 1242 | Size=128 | ||
| 1243 | Context=Emblems | ||
| 1244 | Type=Threshold | ||
| 1245 | |||
| 1246 | [128x128/emotes] | ||
| 1247 | Size=128 | ||
| 1248 | Context=Emotes | ||
| 1249 | Type=Threshold | ||
| 1250 | |||
| 1251 | [128x128/filesystems] | ||
| 1252 | Size=128 | ||
| 1253 | Context=FileSystems | ||
| 1254 | Type=Threshold | ||
| 1255 | |||
| 1256 | [128x128/intl] | ||
| 1257 | Size=128 | ||
| 1258 | Context=International | ||
| 1259 | Type=Threshold | ||
| 1260 | |||
| 1261 | [128x128/mimetypes] | ||
| 1262 | Size=128 | ||
| 1263 | Context=MimeTypes | ||
| 1264 | Type=Threshold | ||
| 1265 | |||
| 1266 | [128x128/places] | ||
| 1267 | Size=128 | ||
| 1268 | Context=Places | ||
| 1269 | Type=Threshold | ||
| 1270 | |||
| 1271 | [128x128/status] | ||
| 1272 | Size=128 | ||
| 1273 | Context=Status | ||
| 1274 | Type=Threshold | ||
| 1275 | |||
| 1276 | [128x128/stock/chart] | ||
| 1277 | Size=128 | ||
| 1278 | Context=Stock | ||
| 1279 | Type=Threshold | ||
| 1280 | |||
| 1281 | [128x128/stock/code] | ||
| 1282 | Size=128 | ||
| 1283 | Context=Stock | ||
| 1284 | Type=Threshold | ||
| 1285 | |||
| 1286 | [128x128/stock/data] | ||
| 1287 | Size=128 | ||
| 1288 | Context=Stock | ||
| 1289 | Type=Threshold | ||
| 1290 | |||
| 1291 | [128x128/stock/form] | ||
| 1292 | Size=128 | ||
| 1293 | Context=Stock | ||
| 1294 | Type=Threshold | ||
| 1295 | |||
| 1296 | [128x128/stock/image] | ||
| 1297 | Size=128 | ||
| 1298 | Context=Stock | ||
| 1299 | Type=Threshold | ||
| 1300 | |||
| 1301 | [128x128/stock/io] | ||
| 1302 | Size=128 | ||
| 1303 | Context=Stock | ||
| 1304 | Type=Threshold | ||
| 1305 | |||
| 1306 | [128x128/stock/media] | ||
| 1307 | Size=128 | ||
| 1308 | Context=Stock | ||
| 1309 | Type=Threshold | ||
| 1310 | |||
| 1311 | [128x128/stock/navigation] | ||
| 1312 | Size=128 | ||
| 1313 | Context=Stock | ||
| 1314 | Type=Threshold | ||
| 1315 | |||
| 1316 | [128x128/stock/net] | ||
| 1317 | Size=128 | ||
| 1318 | Context=Stock | ||
| 1319 | Type=Threshold | ||
| 1320 | |||
| 1321 | [128x128/stock/object] | ||
| 1322 | Size=128 | ||
| 1323 | Context=Stock | ||
| 1324 | Type=Threshold | ||
| 1325 | |||
| 1326 | [128x128/stock/table] | ||
| 1327 | Size=128 | ||
| 1328 | Context=Stock | ||
| 1329 | Type=Threshold | ||
| 1330 | |||
| 1331 | [128x128/stock/text] | ||
| 1332 | Size=128 | ||
| 1333 | Context=Stock | ||
| 1334 | Type=Threshold | ||
| 1335 | |||
| 1336 | [192x192/actions] | ||
| 1337 | Size=192 | ||
| 1338 | Context=Actions | ||
| 1339 | Type=Threshold | ||
| 1340 | |||
| 1341 | [192x192/animations] | ||
| 1342 | Size=192 | ||
| 1343 | Context=Animations | ||
| 1344 | Type=Threshold | ||
| 1345 | |||
| 1346 | [192x192/apps] | ||
| 1347 | Size=192 | ||
| 1348 | Context=Applications | ||
| 1349 | Type=Threshold | ||
| 1350 | |||
| 1351 | [192x192/categories] | ||
| 1352 | Size=192 | ||
| 1353 | Context=Categories | ||
| 1354 | Type=Threshold | ||
| 1355 | |||
| 1356 | [192x192/devices] | ||
| 1357 | Size=192 | ||
| 1358 | Context=Devices | ||
| 1359 | Type=Threshold | ||
| 1360 | |||
| 1361 | [192x192/emblems] | ||
| 1362 | Size=192 | ||
| 1363 | Context=Emblems | ||
| 1364 | Type=Threshold | ||
| 1365 | |||
| 1366 | [192x192/emotes] | ||
| 1367 | Size=192 | ||
| 1368 | Context=Emotes | ||
| 1369 | Type=Threshold | ||
| 1370 | |||
| 1371 | [192x192/filesystems] | ||
| 1372 | Size=192 | ||
| 1373 | Context=FileSystems | ||
| 1374 | Type=Threshold | ||
| 1375 | |||
| 1376 | [192x192/intl] | ||
| 1377 | Size=192 | ||
| 1378 | Context=International | ||
| 1379 | Type=Threshold | ||
| 1380 | |||
| 1381 | [192x192/mimetypes] | ||
| 1382 | Size=192 | ||
| 1383 | Context=MimeTypes | ||
| 1384 | Type=Threshold | ||
| 1385 | |||
| 1386 | [192x192/places] | ||
| 1387 | Size=192 | ||
| 1388 | Context=Places | ||
| 1389 | Type=Threshold | ||
| 1390 | |||
| 1391 | [192x192/status] | ||
| 1392 | Size=192 | ||
| 1393 | Context=Status | ||
| 1394 | Type=Threshold | ||
| 1395 | |||
| 1396 | [192x192/stock/chart] | ||
| 1397 | Size=192 | ||
| 1398 | Context=Stock | ||
| 1399 | Type=Threshold | ||
| 1400 | |||
| 1401 | [192x192/stock/code] | ||
| 1402 | Size=192 | ||
| 1403 | Context=Stock | ||
| 1404 | Type=Threshold | ||
| 1405 | |||
| 1406 | [192x192/stock/data] | ||
| 1407 | Size=192 | ||
| 1408 | Context=Stock | ||
| 1409 | Type=Threshold | ||
| 1410 | |||
| 1411 | [192x192/stock/form] | ||
| 1412 | Size=192 | ||
| 1413 | Context=Stock | ||
| 1414 | Type=Threshold | ||
| 1415 | |||
| 1416 | [192x192/stock/image] | ||
| 1417 | Size=192 | ||
| 1418 | Context=Stock | ||
| 1419 | Type=Threshold | ||
| 1420 | |||
| 1421 | [192x192/stock/io] | ||
| 1422 | Size=192 | ||
| 1423 | Context=Stock | ||
| 1424 | Type=Threshold | ||
| 1425 | |||
| 1426 | [192x192/stock/media] | ||
| 1427 | Size=192 | ||
| 1428 | Context=Stock | ||
| 1429 | Type=Threshold | ||
| 1430 | |||
| 1431 | [192x192/stock/navigation] | ||
| 1432 | Size=192 | ||
| 1433 | Context=Stock | ||
| 1434 | Type=Threshold | ||
| 1435 | |||
| 1436 | [192x192/stock/net] | ||
| 1437 | Size=192 | ||
| 1438 | Context=Stock | ||
| 1439 | Type=Threshold | ||
| 1440 | |||
| 1441 | [192x192/stock/object] | ||
| 1442 | Size=192 | ||
| 1443 | Context=Stock | ||
| 1444 | Type=Threshold | ||
| 1445 | |||
| 1446 | [192x192/stock/table] | ||
| 1447 | Size=192 | ||
| 1448 | Context=Stock | ||
| 1449 | Type=Threshold | ||
| 1450 | |||
| 1451 | [192x192/stock/text] | ||
| 1452 | Size=192 | ||
| 1453 | Context=Stock | ||
| 1454 | Type=Threshold | ||
| 1455 | |||
| 1456 | [250x250/apps] | ||
| 1457 | Size=250 | ||
| 1458 | Context=Applications | ||
| 1459 | Type=Threshold | ||
| 1460 | |||
| 1461 | [250x250/devices] | ||
| 1462 | Size=250 | ||
| 1463 | Context=Devices | ||
| 1464 | Type=Threshold | ||
| 1465 | |||
| 1466 | [250x250/filesystems] | ||
| 1467 | Size=250 | ||
| 1468 | Context=FileSystems | ||
| 1469 | Type=Threshold | ||
| 1470 | |||
| 1471 | [250x250/hildon] | ||
| 1472 | Size=250 | ||
| 1473 | Context=hildon | ||
| 1474 | Type=Threshold | ||
| 1475 | |||
| 1476 | [250x250/mimetypes] | ||
| 1477 | Size=250 | ||
| 1478 | Context=MimeTypes | ||
| 1479 | Type=Threshold | ||
| 1480 | |||
| 1481 | [scalable/actions] | ||
| 1482 | MinSize=1 | ||
| 1483 | Size=128 | ||
| 1484 | MaxSize=256 | ||
| 1485 | Context=Actions | ||
| 1486 | Type=Scalable | ||
| 1487 | |||
| 1488 | [scalable/animations] | ||
| 1489 | MinSize=1 | ||
| 1490 | Size=128 | ||
| 1491 | MaxSize=256 | ||
| 1492 | Context=Animations | ||
| 1493 | Type=Scalable | ||
| 1494 | |||
| 1495 | [scalable/apps] | ||
| 1496 | MinSize=1 | ||
| 1497 | Size=128 | ||
| 1498 | MaxSize=256 | ||
| 1499 | Context=Applications | ||
| 1500 | Type=Scalable | ||
| 1501 | |||
| 1502 | [scalable/categories] | ||
| 1503 | MinSize=1 | ||
| 1504 | Size=128 | ||
| 1505 | MaxSize=256 | ||
| 1506 | Context=Categories | ||
| 1507 | Type=Scalable | ||
| 1508 | |||
| 1509 | [scalable/devices] | ||
| 1510 | MinSize=1 | ||
| 1511 | Size=128 | ||
| 1512 | MaxSize=256 | ||
| 1513 | Context=Devices | ||
| 1514 | Type=Scalable | ||
| 1515 | |||
| 1516 | [scalable/emblems] | ||
| 1517 | MinSize=1 | ||
| 1518 | Size=128 | ||
| 1519 | MaxSize=256 | ||
| 1520 | Context=Emblems | ||
| 1521 | Type=Scalable | ||
| 1522 | |||
| 1523 | [scalable/emotes] | ||
| 1524 | MinSize=1 | ||
| 1525 | Size=128 | ||
| 1526 | MaxSize=256 | ||
| 1527 | Context=Emotes | ||
| 1528 | Type=Scalable | ||
| 1529 | |||
| 1530 | [scalable/filesystems] | ||
| 1531 | MinSize=1 | ||
| 1532 | Size=128 | ||
| 1533 | MaxSize=256 | ||
| 1534 | Context=FileSystems | ||
| 1535 | Type=Scalable | ||
| 1536 | |||
| 1537 | [scalable/hildon] | ||
| 1538 | MinSize=1 | ||
| 1539 | Size=128 | ||
| 1540 | MaxSize=256 | ||
| 1541 | Context=hildon | ||
| 1542 | Type=Scalable | ||
| 1543 | |||
| 1544 | [scalable/intl] | ||
| 1545 | MinSize=1 | ||
| 1546 | Size=128 | ||
| 1547 | MaxSize=256 | ||
| 1548 | Context=International | ||
| 1549 | Type=Scalable | ||
| 1550 | |||
| 1551 | [scalable/mimetypes] | ||
| 1552 | MinSize=1 | ||
| 1553 | Size=128 | ||
| 1554 | MaxSize=256 | ||
| 1555 | Context=MimeTypes | ||
| 1556 | Type=Scalable | ||
| 1557 | |||
| 1558 | [scalable/places] | ||
| 1559 | MinSize=1 | ||
| 1560 | Size=128 | ||
| 1561 | MaxSize=256 | ||
| 1562 | Context=Places | ||
| 1563 | Type=Scalable | ||
| 1564 | |||
| 1565 | [scalable/status] | ||
| 1566 | MinSize=1 | ||
| 1567 | Size=128 | ||
| 1568 | MaxSize=256 | ||
| 1569 | Context=Status | ||
| 1570 | Type=Scalable | ||
| 1571 | |||
| 1572 | [scalable/stock/chart] | ||
| 1573 | MinSize=1 | ||
| 1574 | Size=128 | ||
| 1575 | MaxSize=256 | ||
| 1576 | Context=Stock | ||
| 1577 | Type=Scalable | ||
| 1578 | |||
| 1579 | [scalable/stock/code] | ||
| 1580 | MinSize=1 | ||
| 1581 | Size=128 | ||
| 1582 | MaxSize=256 | ||
| 1583 | Context=Stock | ||
| 1584 | Type=Scalable | ||
| 1585 | |||
| 1586 | [scalable/stock/data] | ||
| 1587 | MinSize=1 | ||
| 1588 | Size=128 | ||
| 1589 | MaxSize=256 | ||
| 1590 | Context=Stock | ||
| 1591 | Type=Scalable | ||
| 1592 | |||
| 1593 | [scalable/stock/form] | ||
| 1594 | MinSize=1 | ||
| 1595 | Size=128 | ||
| 1596 | MaxSize=256 | ||
| 1597 | Context=Stock | ||
| 1598 | Type=Scalable | ||
| 1599 | |||
| 1600 | [scalable/stock/image] | ||
| 1601 | MinSize=1 | ||
| 1602 | Size=128 | ||
| 1603 | MaxSize=256 | ||
| 1604 | Context=Stock | ||
| 1605 | Type=Scalable | ||
| 1606 | |||
| 1607 | [scalable/stock/io] | ||
| 1608 | MinSize=1 | ||
| 1609 | Size=128 | ||
| 1610 | MaxSize=256 | ||
| 1611 | Context=Stock | ||
| 1612 | Type=Scalable | ||
| 1613 | |||
| 1614 | [scalable/stock/media] | ||
| 1615 | MinSize=1 | ||
| 1616 | Size=128 | ||
| 1617 | MaxSize=256 | ||
| 1618 | Context=Stock | ||
| 1619 | Type=Scalable | ||
| 1620 | |||
| 1621 | [scalable/stock/navigation] | ||
| 1622 | MinSize=1 | ||
| 1623 | Size=128 | ||
| 1624 | MaxSize=256 | ||
| 1625 | Context=Stock | ||
| 1626 | Type=Scalable | ||
| 1627 | |||
| 1628 | [scalable/stock/net] | ||
| 1629 | MinSize=1 | ||
| 1630 | Size=128 | ||
| 1631 | MaxSize=256 | ||
| 1632 | Context=Stock | ||
| 1633 | Type=Scalable | ||
| 1634 | |||
| 1635 | [scalable/stock/object] | ||
| 1636 | MinSize=1 | ||
| 1637 | Size=128 | ||
| 1638 | MaxSize=256 | ||
| 1639 | Context=Stock | ||
| 1640 | Type=Scalable | ||
| 1641 | |||
| 1642 | [scalable/stock/table] | ||
| 1643 | MinSize=1 | ||
| 1644 | Size=128 | ||
| 1645 | MaxSize=256 | ||
| 1646 | Context=Stock | ||
| 1647 | Type=Scalable | ||
| 1648 | |||
| 1649 | [scalable/stock/text] | ||
| 1650 | MinSize=1 | ||
| 1651 | Size=128 | ||
| 1652 | MaxSize=256 | ||
| 1653 | Context=Stock | ||
| 1654 | Type=Scalable | ||
| 1655 | |||
| 1656 | [12x12/stock] | ||
| 1657 | Size=12 | ||
| 1658 | Context=Stock | ||
| 1659 | Type=Threshold | ||
| 1660 | |||
| 1661 | [16x16/stock] | ||
| 1662 | Size=16 | ||
| 1663 | Context=Stock | ||
| 1664 | Type=Threshold | ||
| 1665 | |||
| 1666 | [22x22/stock] | ||
| 1667 | Size=22 | ||
| 1668 | Context=Stock | ||
| 1669 | Type=Threshold | ||
| 1670 | |||
| 1671 | [24x24/stock] | ||
| 1672 | Size=24 | ||
| 1673 | Context=Stock | ||
| 1674 | Type=Threshold | ||
| 1675 | |||
| 1676 | [26x26/stock] | ||
| 1677 | Size=26 | ||
| 1678 | Context=Stock | ||
| 1679 | Type=Threshold | ||
| 1680 | |||
| 1681 | [32x32/stock] | ||
| 1682 | Size=32 | ||
| 1683 | Context=Stock | ||
| 1684 | Type=Threshold | ||
| 1685 | |||
| 1686 | [34x34/stock] | ||
| 1687 | Size=34 | ||
| 1688 | Context=Stock | ||
| 1689 | Type=Threshold | ||
| 1690 | |||
| 1691 | [36x36/stock] | ||
| 1692 | Size=36 | ||
| 1693 | Context=Stock | ||
| 1694 | Type=Threshold | ||
| 1695 | |||
| 1696 | [48x48/stock] | ||
| 1697 | Size=48 | ||
| 1698 | Context=Stock | ||
| 1699 | Type=Threshold | ||
| 1700 | |||
| 1701 | [64x64/stock] | ||
| 1702 | Size=64 | ||
| 1703 | Context=Stock | ||
| 1704 | Type=Threshold | ||
| 1705 | |||
| 1706 | [72x72/stock] | ||
| 1707 | Size=72 | ||
| 1708 | Context=Stock | ||
| 1709 | Type=Threshold | ||
| 1710 | |||
| 1711 | [96x96/stock] | ||
| 1712 | Size=96 | ||
| 1713 | Context=Stock | ||
| 1714 | Type=Threshold | ||
| 1715 | |||
| 1716 | [128x128/stock] | ||
| 1717 | Size=128 | ||
| 1718 | Context=Stock | ||
| 1719 | Type=Threshold | ||
| 1720 | |||
| 1721 | [192x192/stock] | ||
| 1722 | Size=192 | ||
| 1723 | Context=Stock | ||
| 1724 | Type=Threshold | ||
| 1725 | |||
| 1726 | [scalable/stock] | ||
| 1727 | MinSize=1 | ||
| 1728 | Size=128 | ||
| 1729 | MaxSize=256 | ||
| 1730 | Context=Stock | ||
| 1731 | Type=Scalable | ||
diff --git a/meta-gnome/recipes-gnome/hicolor-icon-theme/hicolor-icon-theme_0.12.bb b/meta-gnome/recipes-gnome/hicolor-icon-theme/hicolor-icon-theme_0.12.bb new file mode 100644 index 0000000000..1934cdb503 --- /dev/null +++ b/meta-gnome/recipes-gnome/hicolor-icon-theme/hicolor-icon-theme_0.12.bb | |||
| @@ -0,0 +1,22 @@ | |||
| 1 | DESCRIPTION = "default icon theme that all icon themes automatically inherit from." | ||
| 2 | HOMEPAGE = "http://icon-theme.freedesktop.org/wiki/HicolorTheme" | ||
| 3 | BUGTRACKER = "https://bugs.freedesktop.org/" | ||
| 4 | |||
| 5 | LICENSE = "GPLv2" | ||
| 6 | LIC_FILES_CHKSUM = "file://COPYING;md5=f08a446809913fc9b3c718f0eaea0426" | ||
| 7 | |||
| 8 | SECTION = "unknown" | ||
| 9 | inherit gnome | ||
| 10 | |||
| 11 | PR = "r0" | ||
| 12 | |||
| 13 | SRC_URI = "http://icon-theme.freedesktop.org/releases/${BPN}-${PV}.tar.gz \ | ||
| 14 | file://index.theme" | ||
| 15 | |||
| 16 | PACKAGE_ARCH = "all" | ||
| 17 | |||
| 18 | FILES_${PN} += "${datadir}/icons" | ||
| 19 | |||
| 20 | do_install_append () { | ||
| 21 | install -m 0644 ${WORKDIR}/index.theme ${D}/${datadir}/icons/hicolor | ||
| 22 | } | ||
diff --git a/meta-gnome/recipes-gnome/libidl/libidl-native_0.8.13.bb b/meta-gnome/recipes-gnome/libidl/libidl-native_0.8.13.bb new file mode 100644 index 0000000000..834f4af426 --- /dev/null +++ b/meta-gnome/recipes-gnome/libidl/libidl-native_0.8.13.bb | |||
| @@ -0,0 +1,10 @@ | |||
| 1 | SECTION = "libs" | ||
| 2 | require libidl_${PV}.bb | ||
| 3 | inherit native | ||
| 4 | |||
| 5 | PR = "r1" | ||
| 6 | |||
| 7 | DEPENDS = "bison-native glib-2.0-native" | ||
| 8 | |||
| 9 | SRC_URI[md5sum] = "b43b289a859eb38a710f70622c46e571" | ||
| 10 | SRC_URI[sha256sum] = "bccc7e10dae979518ff012f8464e47ec4b3558a5456a94c8679653aa0b262b71" | ||
diff --git a/meta-gnome/recipes-gnome/libidl/libidl.inc b/meta-gnome/recipes-gnome/libidl/libidl.inc new file mode 100644 index 0000000000..7a90a7044d --- /dev/null +++ b/meta-gnome/recipes-gnome/libidl/libidl.inc | |||
| @@ -0,0 +1,12 @@ | |||
| 1 | DESCRIPTION = "Library for parsing CORBA IDL files" | ||
| 2 | SECTION = "x11/gnome/libs" | ||
| 3 | LICENSE = "LGPL" | ||
| 4 | |||
| 5 | inherit autotools pkgconfig | ||
| 6 | |||
| 7 | SRC_URI = "http://ftp.gnome.org/pub/GNOME/sources/libIDL/0.8/libIDL-${PV}.tar.bz2" | ||
| 8 | |||
| 9 | S = "${WORKDIR}/libIDL-${PV}" | ||
| 10 | |||
| 11 | FILES_${PN} = "${libdir}/*.so.*" | ||
| 12 | FILES_${PN}-dev += " ${bindir}" | ||
diff --git a/meta-gnome/recipes-gnome/libidl/libidl_0.8.13.bb b/meta-gnome/recipes-gnome/libidl/libidl_0.8.13.bb new file mode 100644 index 0000000000..732178d037 --- /dev/null +++ b/meta-gnome/recipes-gnome/libidl/libidl_0.8.13.bb | |||
| @@ -0,0 +1,13 @@ | |||
| 1 | require libidl.inc | ||
| 2 | |||
| 3 | LIC_FILES_CHKSUM = "file://COPYING;md5=55ca817ccb7d5b5b66355690e9abc605" | ||
| 4 | |||
| 5 | DEPENDS = "glib-2.0 flex-native libidl-native" | ||
| 6 | |||
| 7 | PR = "r0" | ||
| 8 | |||
| 9 | BINCONFIG_GLOB = "*-config-2" | ||
| 10 | inherit autotools pkgconfig binconfig | ||
| 11 | |||
| 12 | SRC_URI[md5sum] = "b43b289a859eb38a710f70622c46e571" | ||
| 13 | SRC_URI[sha256sum] = "bccc7e10dae979518ff012f8464e47ec4b3558a5456a94c8679653aa0b262b71" | ||
diff --git a/meta-gnome/recipes-gnome/librsvg/librsvg_2.32.1.bbappend b/meta-gnome/recipes-gnome/librsvg/librsvg_2.32.1.bbappend new file mode 100644 index 0000000000..daea68c012 --- /dev/null +++ b/meta-gnome/recipes-gnome/librsvg/librsvg_2.32.1.bbappend | |||
| @@ -0,0 +1,2 @@ | |||
| 1 | DEPENDS_virtclass-native = "cairo-native pango-native gdk-pixbuf-native" | ||
| 2 | BBCLASSEXTEND = "native" | ||
diff --git a/meta-gnome/recipes-gnome/orbit2/orbit2-2.14.17/configure-lossage.patch b/meta-gnome/recipes-gnome/orbit2/orbit2-2.14.17/configure-lossage.patch new file mode 100644 index 0000000000..5fc1de5610 --- /dev/null +++ b/meta-gnome/recipes-gnome/orbit2/orbit2-2.14.17/configure-lossage.patch | |||
| @@ -0,0 +1,37 @@ | |||
| 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-gnome/recipes-gnome/orbit2/orbit2-native_2.14.12.bb b/meta-gnome/recipes-gnome/orbit2/orbit2-native_2.14.12.bb new file mode 100644 index 0000000000..1db2496c35 --- /dev/null +++ b/meta-gnome/recipes-gnome/orbit2/orbit2-native_2.14.12.bb | |||
| @@ -0,0 +1,27 @@ | |||
| 1 | DESCRIPTION = "CORBA ORB" | ||
| 2 | PR = "r0" | ||
| 3 | LICENSE = "LGPL GPL" | ||
| 4 | LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f" | ||
| 5 | SECTION = "x11/gnome/libs" | ||
| 6 | SRC_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" | ||
| 10 | DEPENDS = "libidl-native popt-native gtk-doc" | ||
| 11 | |||
| 12 | S = "${WORKDIR}/ORBit2-${PV}" | ||
| 13 | FILESDIR = "${@os.path.dirname(bb.data.getVar('FILE',d,1))}/orbit2" | ||
| 14 | |||
| 15 | PARALLEL_MAKE = "" | ||
| 16 | inherit autotools native pkgconfig | ||
| 17 | |||
| 18 | EXTRA_OECONF = "--disable-gtk-doc" | ||
| 19 | |||
| 20 | do_configure_prepend() { | ||
| 21 | mkdir -p m4 | ||
| 22 | install ${WORKDIR}/gtk-doc.m4 ./m4/ | ||
| 23 | install ${WORKDIR}/gtk-doc.make ./ | ||
| 24 | } | ||
| 25 | |||
| 26 | SRC_URI[md5sum] = "6f4bf7d803d442e9d093a0daa203d506" | ||
| 27 | SRC_URI[sha256sum] = "d60027a4a36e64d02723d00b76c08e8d92850cab6269b2edcda4a1bb30cc7723" | ||
diff --git a/meta-gnome/recipes-gnome/orbit2/orbit2.inc b/meta-gnome/recipes-gnome/orbit2/orbit2.inc new file mode 100644 index 0000000000..51978909be --- /dev/null +++ b/meta-gnome/recipes-gnome/orbit2/orbit2.inc | |||
| @@ -0,0 +1,32 @@ | |||
| 1 | LICENSE = "GPL" | ||
| 2 | DESCRIPTION = "CORBA ORB" | ||
| 3 | SECTION = "x11/gnome/libs" | ||
| 4 | SRC_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" | ||
| 9 | DEPENDS = "libidl popt orbit2-native gtk-doc" | ||
| 10 | PARALLEL_MAKE = "" | ||
| 11 | |||
| 12 | LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f" | ||
| 13 | |||
| 14 | FILES_${PN} += "${libdir}/orbit-2.0/*.so" | ||
| 15 | FILES_${PN}-dev += "${libdir}/orbit-2.0/*.a ${libdir}/orbit-2.0/*.la" | ||
| 16 | FILES_${PN}-dbg += "${libdir}/orbit-2.0/.debug" | ||
| 17 | |||
| 18 | S = "${WORKDIR}/ORBit2-${PV}" | ||
| 19 | |||
| 20 | LEAD_SONAME = "libORBit-2.so" | ||
| 21 | |||
| 22 | inherit autotools pkgconfig | ||
| 23 | |||
| 24 | EXTRA_OECONF = "--disable-gtk-doc" | ||
| 25 | EXTRA_OEMAKE = "IDL_COMPILER='${STAGING_BINDIR_NATIVE}/orbit-idl-2'" | ||
| 26 | |||
| 27 | do_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-gnome/recipes-gnome/orbit2/orbit2/configure-lossage.patch b/meta-gnome/recipes-gnome/orbit2/orbit2/configure-lossage.patch new file mode 100644 index 0000000000..7485a0ce0c --- /dev/null +++ b/meta-gnome/recipes-gnome/orbit2/orbit2/configure-lossage.patch | |||
| @@ -0,0 +1,35 @@ | |||
| 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-gnome/recipes-gnome/orbit2/orbit2/gtk-doc.m4 b/meta-gnome/recipes-gnome/orbit2/orbit2/gtk-doc.m4 new file mode 100644 index 0000000000..3ec41666b2 --- /dev/null +++ b/meta-gnome/recipes-gnome/orbit2/orbit2/gtk-doc.m4 | |||
| @@ -0,0 +1,53 @@ | |||
| 1 | dnl -*- mode: autoconf -*- | ||
| 2 | |||
| 3 | # serial 1 | ||
| 4 | |||
| 5 | dnl Usage: | ||
| 6 | dnl GTK_DOC_CHECK([minimum-gtk-doc-version]) | ||
| 7 | AC_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? | ||
| 33 | ifelse([$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-gnome/recipes-gnome/orbit2/orbit2/gtk-doc.make b/meta-gnome/recipes-gnome/orbit2/orbit2/gtk-doc.make new file mode 100644 index 0000000000..354ffb7c66 --- /dev/null +++ b/meta-gnome/recipes-gnome/orbit2/orbit2/gtk-doc.make | |||
| @@ -0,0 +1,173 @@ | |||
| 1 | # -*- mode: makefile -*- | ||
| 2 | |||
| 3 | #################################### | ||
| 4 | # Everything below here is generic # | ||
| 5 | #################################### | ||
| 6 | |||
| 7 | if GTK_DOC_USE_LIBTOOL | ||
| 8 | GTKDOC_CC = $(LIBTOOL) --mode=compile $(CC) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) | ||
| 9 | GTKDOC_LD = $(LIBTOOL) --mode=link $(CC) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) | ||
| 10 | else | ||
| 11 | GTKDOC_CC = $(CC) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) | ||
| 12 | GTKDOC_LD = $(CC) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) | ||
| 13 | endif | ||
| 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 | # | ||
| 20 | GPATH = $(srcdir) | ||
| 21 | |||
| 22 | TARGET_DIR=$(HTML_DIR)/$(DOC_MODULE) | ||
| 23 | |||
| 24 | EXTRA_DIST = \ | ||
| 25 | $(content_files) \ | ||
| 26 | $(HTML_IMAGES) \ | ||
| 27 | $(DOC_MAIN_SGML_FILE) \ | ||
| 28 | $(DOC_MODULE)-sections.txt \ | ||
| 29 | $(DOC_MODULE)-overrides.txt | ||
| 30 | |||
| 31 | DOC_STAMPS=scan-build.stamp tmpl-build.stamp sgml-build.stamp html-build.stamp \ | ||
| 32 | $(srcdir)/tmpl.stamp $(srcdir)/sgml.stamp $(srcdir)/html.stamp | ||
| 33 | |||
| 34 | SCANOBJ_FILES = \ | ||
| 35 | $(DOC_MODULE).args \ | ||
| 36 | $(DOC_MODULE).hierarchy \ | ||
| 37 | $(DOC_MODULE).interfaces \ | ||
| 38 | $(DOC_MODULE).prerequisites \ | ||
| 39 | $(DOC_MODULE).signals | ||
| 40 | |||
| 41 | REPORT_FILES = \ | ||
| 42 | $(DOC_MODULE)-undocumented.txt \ | ||
| 43 | $(DOC_MODULE)-undeclared.txt \ | ||
| 44 | $(DOC_MODULE)-unused.txt | ||
| 45 | |||
| 46 | CLEANFILES = $(SCANOBJ_FILES) $(REPORT_FILES) $(DOC_STAMPS) | ||
| 47 | |||
| 48 | if ENABLE_GTK_DOC | ||
| 49 | all-local: html-build.stamp | ||
| 50 | else | ||
| 51 | all-local: | ||
| 52 | endif | ||
| 53 | |||
| 54 | docs: html-build.stamp | ||
| 55 | |||
| 56 | #### scan #### | ||
| 57 | |||
| 58 | scan-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 | |||
| 78 | tmpl-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 | |||
| 84 | tmpl.stamp: tmpl-build.stamp | ||
| 85 | @true | ||
| 86 | |||
| 87 | tmpl/*.sgml: | ||
| 88 | @true | ||
| 89 | |||
| 90 | |||
| 91 | #### xml #### | ||
| 92 | |||
| 93 | sgml-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 | |||
| 100 | sgml.stamp: sgml-build.stamp | ||
| 101 | @true | ||
| 102 | |||
| 103 | #### html #### | ||
| 104 | |||
| 105 | html-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 | |||
| 118 | clean-local: | ||
| 119 | rm -f *~ *.bak | ||
| 120 | rm -rf .libs | ||
| 121 | |||
| 122 | distclean-local: | ||
| 123 | cd $(srcdir) && \ | ||
| 124 | rm -rf xml $(REPORT_FILES) \ | ||
| 125 | $(DOC_MODULE)-decl-list.txt $(DOC_MODULE)-decl.txt | ||
| 126 | |||
| 127 | maintainer-clean-local: clean | ||
| 128 | cd $(srcdir) && rm -rf xml html | ||
| 129 | |||
| 130 | install-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 | |||
| 147 | uninstall-local: | ||
| 148 | rm -f $(DESTDIR)$(TARGET_DIR)/* | ||
| 149 | |||
| 150 | # | ||
| 151 | # Require gtk-doc when making dist | ||
| 152 | # | ||
| 153 | if ENABLE_GTK_DOC | ||
| 154 | dist-check-gtkdoc: | ||
| 155 | else | ||
| 156 | dist-check-gtkdoc: | ||
| 157 | @echo "*** gtk-doc must be installed and enabled in order to make dist" | ||
| 158 | @false | ||
| 159 | endif | ||
| 160 | |||
| 161 | dist-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-gnome/recipes-gnome/orbit2/orbit2/pkgconfig-fix.patch b/meta-gnome/recipes-gnome/orbit2/orbit2/pkgconfig-fix.patch new file mode 100644 index 0000000000..f629e506dd --- /dev/null +++ b/meta-gnome/recipes-gnome/orbit2/orbit2/pkgconfig-fix.patch | |||
| @@ -0,0 +1,12 @@ | |||
| 1 | diff -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-gnome/recipes-gnome/orbit2/orbit2_2.14.17.bb b/meta-gnome/recipes-gnome/orbit2/orbit2_2.14.17.bb new file mode 100644 index 0000000000..47f632793c --- /dev/null +++ b/meta-gnome/recipes-gnome/orbit2/orbit2_2.14.17.bb | |||
| @@ -0,0 +1,5 @@ | |||
| 1 | require orbit2.inc | ||
| 2 | |||
| 3 | |||
| 4 | SRC_URI[md5sum] = "10bfb957fa4a8935a0b4afaee7d71df7" | ||
| 5 | SRC_URI[sha256sum] = "62bfce3f678f9347a19c766944e8aef7b89bc32b25ac23eb3e4c25929ce8974c" | ||
