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 /packages/otpcalc/otpcalc-0.97/otpcalc-0.97-gtk2-gentoo.patch | |
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 'packages/otpcalc/otpcalc-0.97/otpcalc-0.97-gtk2-gentoo.patch')
-rw-r--r-- | packages/otpcalc/otpcalc-0.97/otpcalc-0.97-gtk2-gentoo.patch | 74 |
1 files changed, 0 insertions, 74 deletions
diff --git a/packages/otpcalc/otpcalc-0.97/otpcalc-0.97-gtk2-gentoo.patch b/packages/otpcalc/otpcalc-0.97/otpcalc-0.97-gtk2-gentoo.patch deleted file mode 100644 index 4157374cd3..0000000000 --- a/packages/otpcalc/otpcalc-0.97/otpcalc-0.97-gtk2-gentoo.patch +++ /dev/null @@ -1,74 +0,0 @@ -upstream: all patches sent upstream to Anthony D. Urso <anthonyu@killa.net> by Yuri Bushmelev. -status: pending -origin: http://packages.gentoo.org/package/sys-auth/otpcalc?full_cat - ---- otpCalc-0.97-orig/Makefile.in 2004-11-24 07:44:12.000000000 +0100 -+++ otpCalc-0.97/Makefile.in 2007-12-26 00:38:52.000000000 +0100 -@@ -3,8 +3,8 @@ - - CC = @CC@ - DEFS = -DVERSION=\"$(VER)\" @DEFS@ --CFLAGS = -s -O3 -Wall -pipe `gtk-config --cflags` --LIBS = `gtk-config --libs` @LIBS@ -+CFLAGS += -Wall -pipe `pkg-config --cflags gtk+-2.0` -+LIBS = `pkg-config --libs gtk+-2.0` @LIBS@ - - prefix = @prefix@ - exec_prefix = @exec_prefix@ ---- otpCalc-0.97-orig/callbacks.c 2004-11-24 06:57:45.000000000 +0100 -+++ otpCalc-0.97/callbacks.c 2007-12-26 00:38:52.000000000 +0100 -@@ -236,7 +236,7 @@ - } - - --void focus(GtkWidget *widget, gpointer data) -+gboolean focus(GtkWidget *widget, GdkEvent *event, gpointer data) - { - - static GdkAtom targets; -@@ -244,12 +244,12 @@ - - - if (!autopaste) -- return; -+ return FALSE; - - targets = gdk_atom_intern("STRING", FALSE); - - gtk_selection_convert(widget, GDK_SELECTION_PRIMARY, targets, - GDK_CURRENT_TIME); - -- -+ return FALSE; - } ---- otpCalc-0.97-orig/gui.c 2004-11-24 07:46:53.000000000 +0100 -+++ otpCalc-0.97/gui.c 2007-12-26 00:38:52.000000000 +0100 -@@ -29,7 +29,7 @@ - GtkWidget *te_response; - - unsigned short hash; --unsigned short newline = 1; -+unsigned short newline = 0; - unsigned short autopaste = 1; - - int main(int argc, char *argv[]) -@@ -147,7 +147,7 @@ - - /* Setup the menu bar... */ - mb_top = gtk_menu_bar_new(); -- gtk_menu_bar_set_shadow_type(GTK_MENU_BAR(mb_top), GTK_SHADOW_NONE); -+ /*gtk_menu_bar_set_shadow_type(GTK_MENU_BAR(mb_top), GTK_SHADOW_NONE);*/ - gtk_table_attach(GTK_TABLE(ta_top), mb_top, 0, 3, 0, 1, - (GtkAttachOptions)(GTK_FILL), - (GtkAttachOptions)(0), 0, 0); ---- otpCalc-0.97-orig/utility.c 2004-11-24 06:59:09.000000000 +0100 -+++ otpCalc-0.97/utility.c 2007-12-26 00:38:52.000000000 +0100 -@@ -422,7 +422,7 @@ - words[extract(message, 33, 11)], - words[extract(message, 44, 11)], - words[extract(message, 55, 11)], -- (newline == 1) ? "\n" : NULL); -+ (newline == 1) ? "\n" : ""); - - return response; - |