summaryrefslogtreecommitdiffstats
path: root/meta/recipes-sato/matchbox-config-gtk
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-sato/matchbox-config-gtk')
-rw-r--r--meta/recipes-sato/matchbox-config-gtk/files/no-handed.patch33
-rw-r--r--meta/recipes-sato/matchbox-config-gtk/matchbox-config-gtk_svn.bb20
2 files changed, 53 insertions, 0 deletions
diff --git a/meta/recipes-sato/matchbox-config-gtk/files/no-handed.patch b/meta/recipes-sato/matchbox-config-gtk/files/no-handed.patch
new file mode 100644
index 0000000000..9ab51ecedc
--- /dev/null
+++ b/meta/recipes-sato/matchbox-config-gtk/files/no-handed.patch
@@ -0,0 +1,33 @@
1Index: appearance/mb-appearance.c
2===================================================================
3--- appearance/mb-appearance.c (revision 1614)
4+++ appearance/mb-appearance.c (working copy)
5@@ -300,11 +300,13 @@
6 gtk_font_button_set_font_name (GTK_FONT_BUTTON (font_button),
7 gconf_value_get_string (value));
8 } else if (strcmp (key, HANDED_KEY) == 0) {
9+#if 0
10 GEnumValue *e;
11 e = g_enum_get_value_by_name (g_type_class_ref (GTK_TYPE_CORNER_TYPE),
12 gconf_value_get_string (value));
13 gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (handed_check),
14 e->value == GTK_CORNER_TOP_RIGHT);
15+#endif
16 }
17 }
18
19@@ -395,12 +397,13 @@
20 gtk_container_add (GTK_CONTAINER (align), font_button);
21
22 /* Left/Right Handed */
23-
24+#if 0
25 frame = new_frame (_("Orientation"), &align);
26 gtk_box_pack_start (GTK_BOX (box), frame, TRUE, TRUE, 0);
27 handed_check = gtk_check_button_new_with_mnemonic (_("_Left-handed"));
28 g_signal_connect (handed_check, "toggled", G_CALLBACK (on_handed_set), NULL);
29 gtk_container_add (GTK_CONTAINER (align), handed_check);
30+#endif
31
32 gconf_client_add_dir (gconf, INTERFACE_DIR, GCONF_CLIENT_PRELOAD_ONELEVEL, NULL);
33 g_signal_connect (gconf, "value-changed", G_CALLBACK (on_gconf_value_changed), NULL);
diff --git a/meta/recipes-sato/matchbox-config-gtk/matchbox-config-gtk_svn.bb b/meta/recipes-sato/matchbox-config-gtk/matchbox-config-gtk_svn.bb
new file mode 100644
index 0000000000..af748f14ff
--- /dev/null
+++ b/meta/recipes-sato/matchbox-config-gtk/matchbox-config-gtk_svn.bb
@@ -0,0 +1,20 @@
1DESCRIPTION = "Matchbox GTK+ theme configuration application."
2HOMEPAGE = "http://matchbox-project.org"
3BUGTRACKER = "http://bugzilla.openedhand.com/"
4
5LICENSE = "GPLv2+"
6LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f \
7 file://appearance/mb-appearance.c;endline=25;md5=ea92333cf8a6802639d62d874c114a28"
8
9DEPENDS = "gconf gtk+"
10RDEPENDS = "settings-daemon"
11
12PV = "0.0+svnr${SRCREV}"
13
14S = "${WORKDIR}/${PN}"
15
16SRC_URI = "svn://svn.o-hand.com/repos/matchbox/trunk;module=${PN};proto=http \
17 file://no-handed.patch;patch=1;pnum=0"
18
19inherit autotools pkgconfig
20