diff options
author | Denys Dmytriyenko <denis@denix.org> | 2009-03-17 14:32:59 -0400 |
---|---|---|
committer | Denys Dmytriyenko <denis@denix.org> | 2009-03-17 14:32:59 -0400 |
commit | 709c4d66e0b107ca606941b988bad717c0b45d9b (patch) | |
tree | 37ee08b1eb308f3b2b6426d5793545c38396b838 /recipes/gpe-sketchbook/gpe-sketchbook-0.2.8 | |
parent | fa6cd5a3b993f16c27de4ff82b42684516d433ba (diff) |
rename packages/ to recipes/ per earlier agreement
See links below for more details:
http://thread.gmane.org/gmane.comp.handhelds.openembedded/21326
http://thread.gmane.org/gmane.comp.handhelds.openembedded/21816
Signed-off-by: Denys Dmytriyenko <denis@denix.org>
Acked-by: Mike Westerhof <mwester@dls.net>
Acked-by: Philip Balister <philip@balister.org>
Acked-by: Khem Raj <raj.khem@gmail.com>
Acked-by: Marcin Juszkiewicz <hrw@openembedded.org>
Acked-by: Koen Kooi <koen@openembedded.org>
Acked-by: Frans Meulenbroeks <fransmeulenbroeks@gmail.com>
Diffstat (limited to 'recipes/gpe-sketchbook/gpe-sketchbook-0.2.8')
-rw-r--r-- | recipes/gpe-sketchbook/gpe-sketchbook-0.2.8/remove-render.patch | 34 | ||||
-rw-r--r-- | recipes/gpe-sketchbook/gpe-sketchbook-0.2.8/sketchbook-size.patch | 17 |
2 files changed, 51 insertions, 0 deletions
diff --git a/recipes/gpe-sketchbook/gpe-sketchbook-0.2.8/remove-render.patch b/recipes/gpe-sketchbook/gpe-sketchbook-0.2.8/remove-render.patch new file mode 100644 index 0000000000..b7076bae0b --- /dev/null +++ b/recipes/gpe-sketchbook/gpe-sketchbook-0.2.8/remove-render.patch @@ -0,0 +1,34 @@ +diff -Nurd gpe-sketchbook-0.2.8.old/src/selector-gui.c gpe-sketchbook-0.2.8/src/selector-gui.c +--- gpe-sketchbook-0.2.8.old/src/selector-gui.c 2004-06-14 17:37:28.000000000 +0200 ++++ gpe-sketchbook-0.2.8/src/selector-gui.c 2005-04-20 22:13:13.442852960 +0200 +@@ -24,7 +24,6 @@ + + //gpe libs + #include "gpe/pixmaps.h" +-#include "gpe/render.h" + #include "gpe/gpeiconlistview.h" + + //--i18n +diff -Nurd gpe-sketchbook-0.2.8.old/src/sketchpad-cb.c gpe-sketchbook-0.2.8/src/sketchpad-cb.c +--- gpe-sketchbook-0.2.8.old/src/sketchpad-cb.c 2004-06-14 18:26:04.000000000 +0200 ++++ gpe-sketchbook-0.2.8/src/sketchpad-cb.c 2005-04-20 22:15:35.295288112 +0200 +@@ -30,7 +30,6 @@ + #include "dock.h" + #include "gpe/question.h" + #include "gpe/gpeiconlistview.h" +-#include "gpe/popup_menu.h" + + //--i18n + #include <libintl.h> +diff -Nurd gpe-sketchbook-0.2.8.old/src/sketchpad-gui.c gpe-sketchbook-0.2.8/src/sketchpad-gui.c +--- gpe-sketchbook-0.2.8.old/src/sketchpad-gui.c 2004-06-14 17:37:48.000000000 +0200 ++++ gpe-sketchbook-0.2.8/src/sketchpad-gui.c 2005-04-20 22:13:58.829953072 +0200 +@@ -25,8 +25,6 @@ + + #include "dock.h" + #include "gpe/pixmaps.h" +-#include "gpe/render.h" +-#include "gpe/popup_menu.h" + #include "gpe/picturebutton.h" + + //--i18n diff --git a/recipes/gpe-sketchbook/gpe-sketchbook-0.2.8/sketchbook-size.patch b/recipes/gpe-sketchbook/gpe-sketchbook-0.2.8/sketchbook-size.patch new file mode 100644 index 0000000000..aecf857e30 --- /dev/null +++ b/recipes/gpe-sketchbook/gpe-sketchbook-0.2.8/sketchbook-size.patch @@ -0,0 +1,17 @@ +Index: src/sketchpad.c +=================================================================== +RCS file: /cvs/gpe/base/gpe-sketchbook/src/sketchpad.c,v +retrieving revision 1.30 +diff -r1.30 sketchpad.c +74,75c74,75 +< drawing_area_width = SKETCH_WIDTH; +< drawing_area_height = SKETCH_HEIGHT; +--- +> drawing_area_width = gdk_screen_width() - 26; //SKETCH_WIDTH; +> drawing_area_height = gdk_screen_height() - 130; // SKETCH_HEIGHT; +202,203c202,203 +< drawing_area_width = SKETCH_WIDTH; +< drawing_area_height = SKETCH_HEIGHT; +--- +> drawing_area_width = gdk_screen_width() - 26; //SKETCH_WIDTH; +> drawing_area_height = gdk_screen_height() - 130; // SKETCH_HEIGHT; |