From 709c4d66e0b107ca606941b988bad717c0b45d9b Mon Sep 17 00:00:00 2001 From: Denys Dmytriyenko Date: Tue, 17 Mar 2009 14:32:59 -0400 Subject: 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 Acked-by: Mike Westerhof Acked-by: Philip Balister Acked-by: Khem Raj Acked-by: Marcin Juszkiewicz Acked-by: Koen Kooi Acked-by: Frans Meulenbroeks --- .../files/brightness-adjust-keyluanchrc.patch | 10 ++++++ recipes/gpe-login/files/c-locale.patch | 11 +++++++ recipes/gpe-login/files/chvt-keylaunch.patch | 12 +++++++ .../files/gpe-xcalibrate-rises-from-dead.patch | 10 ++++++ recipes/gpe-login/files/lock-on-supend.patch | 17 ++++++++++ recipes/gpe-login/files/removeblue-fontsize8.patch | 14 ++++++++ .../gpe-login/files/size-autolock-properly.patch | 28 ++++++++++++++++ recipes/gpe-login/files/use-xtscal.patch | 11 +++++++ recipes/gpe-login/gpe-login_0.93.bb | 37 ++++++++++++++++++++++ recipes/gpe-login/gpe-login_0.95.bb | 37 ++++++++++++++++++++++ recipes/gpe-login/gpe-login_svn.bb | 33 +++++++++++++++++++ 11 files changed, 220 insertions(+) create mode 100644 recipes/gpe-login/files/brightness-adjust-keyluanchrc.patch create mode 100644 recipes/gpe-login/files/c-locale.patch create mode 100644 recipes/gpe-login/files/chvt-keylaunch.patch create mode 100644 recipes/gpe-login/files/gpe-xcalibrate-rises-from-dead.patch create mode 100644 recipes/gpe-login/files/lock-on-supend.patch create mode 100644 recipes/gpe-login/files/removeblue-fontsize8.patch create mode 100644 recipes/gpe-login/files/size-autolock-properly.patch create mode 100644 recipes/gpe-login/files/use-xtscal.patch create mode 100644 recipes/gpe-login/gpe-login_0.93.bb create mode 100644 recipes/gpe-login/gpe-login_0.95.bb create mode 100644 recipes/gpe-login/gpe-login_svn.bb (limited to 'recipes/gpe-login') diff --git a/recipes/gpe-login/files/brightness-adjust-keyluanchrc.patch b/recipes/gpe-login/files/brightness-adjust-keyluanchrc.patch new file mode 100644 index 0000000000..cfc73f4d56 --- /dev/null +++ b/recipes/gpe-login/files/brightness-adjust-keyluanchrc.patch @@ -0,0 +1,10 @@ +--- gpe-login-0.88/gpe-login.keylaunchrc.orig 2007-06-05 00:50:27.000000000 +0000 ++++ gpe-login-0.88/gpe-login.keylaunchrc 2007-06-05 00:52:03.000000000 +0000 +@@ -7,3 +7,7 @@ + key=...*Right:-:~chvt 3 + key=...*Escape:-:~/etc/init.d/gpe-dm stop + ++# Brightness control ++key=...*3:-:~display-brightness.sh down ++key=...*4:-:~display-brightness.sh up ++ diff --git a/recipes/gpe-login/files/c-locale.patch b/recipes/gpe-login/files/c-locale.patch new file mode 100644 index 0000000000..109825b53b --- /dev/null +++ b/recipes/gpe-login/files/c-locale.patch @@ -0,0 +1,11 @@ +--- a/gpe-login.c.org 2007-11-29 16:11:53.000000000 +0200 ++++ a/gpe-login.c 2008-01-02 20:13:27.000000000 +0200 +@@ -1180,7 +1180,7 @@ + language_menu = gtk_option_menu_new (); + + c_locale = g_malloc (sizeof (locale_item_t)); +- c_locale->name = "English"; ++ c_locale->name = "English(C locale)"; + c_locale->locale = "C"; + locale_system_list = g_slist_append (NULL, c_locale); + diff --git a/recipes/gpe-login/files/chvt-keylaunch.patch b/recipes/gpe-login/files/chvt-keylaunch.patch new file mode 100644 index 0000000000..798c059ccc --- /dev/null +++ b/recipes/gpe-login/files/chvt-keylaunch.patch @@ -0,0 +1,12 @@ +--- /tmp/gpe-login.keylaunchrc 2006-05-29 23:46:42.806081576 +0200 ++++ gpe-login-0.87/gpe-login.keylaunchrc 2006-05-29 23:48:18.476537456 +0200 +@@ -1,3 +1,9 @@ + key=????XF86AudioRecord:xcalibrate:/usr/bin/gpe-xcalibrate.sh + key=????XF86PowerDown:-:/usr/bin/apm --suspend + key=????Held XF86PowerDown:-:bl toggle ++ ++# VT changing ++key=...*Left:-:~chvt 1 ++key=...*Right:-:~chvt 3 ++key=...*Escape:-:~/etc/init.d/gpe-dm stop ++ diff --git a/recipes/gpe-login/files/gpe-xcalibrate-rises-from-dead.patch b/recipes/gpe-login/files/gpe-xcalibrate-rises-from-dead.patch new file mode 100644 index 0000000000..d1745f0897 --- /dev/null +++ b/recipes/gpe-login/files/gpe-xcalibrate-rises-from-dead.patch @@ -0,0 +1,10 @@ +upstream: http://bugs.linuxtogo.org/show_bug.cgi?id=124 + +diff -r 976c01632fea gpe-login.keylaunchrc +--- a/gpe-login.keylaunchrc Sun Nov 25 22:39:23 2007 +0200 ++++ b/gpe-login.keylaunchrc Mon Nov 26 01:12:14 2007 +0200 +@@ -1,3 +1,3 @@ key=????XF86AudioRecord:xcalibrate:/usr/ +-key=????XF86AudioRecord:xcalibrate:/usr/bin/gpe-xcalibrate.sh ++key=????XF86AudioRecord:xcalibrate:/usr/bin/xtscal + key=????XF86PowerDown:-:/usr/bin/apm --suspend + key=????Held XF86PowerDown:-:bl toggle diff --git a/recipes/gpe-login/files/lock-on-supend.patch b/recipes/gpe-login/files/lock-on-supend.patch new file mode 100644 index 0000000000..0b00a75ead --- /dev/null +++ b/recipes/gpe-login/files/lock-on-supend.patch @@ -0,0 +1,17 @@ +upstream: http://bugs.linuxtogo.org/show_bug.cgi?id=125 +status: accepted in 0.91 + +Lock screen when device goes to suspend, not after some time has passed +since resume and they stole your data from the unprotected screen. + +--- gpe-login-0.90/Makefile.am.org 2007-04-02 15:46:52.000000000 +0300 ++++ gpe-login-0.90/Makefile.am 2007-11-24 22:41:24.000000000 +0200 +@@ -17,7 +17,7 @@ + x11_SCRIPTS = gpe-login.setup X11/gpe-login.pre-session + x11_DATA = gpe-login.keylaunchrc X11/gpe-login.gtkrc + +-apmdir = $(sysconfdir)/apm/resume.d ++apmdir = $(sysconfdir)/apm/suspend.d + apm_SCRIPTS = gpe-login.suspend + + xsessiondir = $(sysconfdir)/X11/Xsession.d diff --git a/recipes/gpe-login/files/removeblue-fontsize8.patch b/recipes/gpe-login/files/removeblue-fontsize8.patch new file mode 100644 index 0000000000..d9db311a2c --- /dev/null +++ b/recipes/gpe-login/files/removeblue-fontsize8.patch @@ -0,0 +1,14 @@ +--- /tmp/gpe-login.gtkrc 2005-11-08 17:15:50.363302568 +0100 ++++ gpe-login-0.83/X11/gpe-login.gtkrc 2005-11-08 17:16:22.659392816 +0100 +@@ -1,9 +1,2 @@ +-gtk-font-name = "Sans 8" +-include "/usr/share/themes/Angelistic/gtk-2.0/gtkrc" +- +-style "default" +-{ +- bg[NORMAL] = "#90d8ff" +-} +- +-widget "*" style "default" ++gtk-font-name = "Sans 8" ++include "/usr/share/themes/Clearlooks/gtk-2.0/gtkrc" diff --git a/recipes/gpe-login/files/size-autolock-properly.patch b/recipes/gpe-login/files/size-autolock-properly.patch new file mode 100644 index 0000000000..cf2978f34d --- /dev/null +++ b/recipes/gpe-login/files/size-autolock-properly.patch @@ -0,0 +1,28 @@ +upstream: http://bugs.linuxtogo.org/show_bug.cgi?id=152 + +# HG changeset patch +# User "Paul Sokolovsky " +# Date 1196345352 -7200 +# Node ID ebe625e21708cb9257201a4dd6e536b99f1f0220 +# Parent 976c01632feacbcce2058a061a0b1f6faed2275a +When configuring autolock window, make sure to set not only the minimal +("requested") size, but also the actual one. This fixes issue that after +autolock screen have been shown in landscape mode, it no longer fits the +screen in portrait mode. + +Also, gtk_widget_set_usize() marked as deprecated, replace with +gtk_widget_set_size_request(). + +diff -r 976c01632fea -r ebe625e21708 gpe-login.c +--- a/gpe-login.c Sun Nov 25 22:39:23 2007 +0200 ++++ b/gpe-login.c Thu Nov 29 16:09:12 2007 +0200 +@@ -558,7 +558,8 @@ filter (GdkXEvent *xevp, GdkEvent *ev, g + { + spawn_xkbd (); + gtk_label_set_markup (GTK_LABEL (label_result), ""); +- gtk_widget_set_usize (window, gdk_screen_width (), gdk_screen_height ()); ++ gtk_widget_set_size_request (window, gdk_screen_width (), gdk_screen_height ()); ++ gtk_window_resize (window, gdk_screen_width (), gdk_screen_height ()); + gtk_widget_show_all (window); + if (ownerinfo) + { diff --git a/recipes/gpe-login/files/use-xtscal.patch b/recipes/gpe-login/files/use-xtscal.patch new file mode 100644 index 0000000000..dca1163505 --- /dev/null +++ b/recipes/gpe-login/files/use-xtscal.patch @@ -0,0 +1,11 @@ +--- /tmp/gpe-login.c 2007-04-01 11:40:29.000000000 +0200 ++++ gpe-login-0.88/gpe-login.c 2007-04-01 11:40:58.205251000 +0200 +@@ -59,7 +59,7 @@ + #define GPE_OWNERINFO_DONTSHOW_FILE "/etc/gpe/gpe-ownerinfo.dontshow" + /* Number of milliseconds to hold the stylus down before recalibration is called */ + #define RECALIBRATION_TIMEOUT 5000 +-#define XTSCAL_PATH "/usr/bin/gpe-xcalibrate.sh" ++#define XTSCAL_PATH "/usr/bin/xtscal" + #ifndef DEBUG + #define DEBUG 0 + #endif diff --git a/recipes/gpe-login/gpe-login_0.93.bb b/recipes/gpe-login/gpe-login_0.93.bb new file mode 100644 index 0000000000..4ea1cc235e --- /dev/null +++ b/recipes/gpe-login/gpe-login_0.93.bb @@ -0,0 +1,37 @@ +DESCRIPTION = "GPE user login screen" +SECTION = "gpe" +PRIORITY = "optional" +LICENSE = "GPL" +DEPENDS = "gtk+ libgpewidget gpe-ownerinfo xkbd" +RDEPENDS = "xkbd gpe-theme-clearlooks" +RPROVIDES_${PN} = "gpe-session-starter" +PR = "r1" + +SRC_URI_OVERRIDES_PACKAGE_ARCH = "1" + +GPE_TARBALL_SUFFIX = "bz2" + +inherit gpe autotools pkgconfig + + +SRC_URI += "file://removeblue-fontsize8.patch;patch=1" +SRC_URI += " file://chvt-keylaunch.patch;patch=1 " +SRC_URI += " file://c-locale.patch;patch=1 " + +SRC_URI_append_spitz = "file://brightness-adjust-keyluanchrc.patch;patch=1" +SRC_URI_append_akita = "file://brightness-adjust-keyluanchrc.patch;patch=1" +SRC_URI_append_c7x0 = "file://brightness-adjust-keyluanchrc.patch;patch=1" + + +CONFFILES_${PN} += " \ +${sysconfdir}/apm/suspend.d/S98lock-display \ +${sysconfdir}/gpe/gpe-login.conf \ +${sysconfdir}/gpe/locale.alias \ +${sysconfdir}/sysconfig/gpelogin \ +${sysconfdir}/X11/gpe-login.keylaunchrc \ +${sysconfdir}/X11/gpe-login.gtkrc \ +${sysconfdir}/X11/gpe-login.setup \ +${sysconfdir}/X11/gpe-login.pre-session \ +${sysconfdir}/X11/Xinit.d/99gpe-login \ +${sysconfdir}/X11/Xsession.d/50autolock \ +" diff --git a/recipes/gpe-login/gpe-login_0.95.bb b/recipes/gpe-login/gpe-login_0.95.bb new file mode 100644 index 0000000000..0b3f480e6e --- /dev/null +++ b/recipes/gpe-login/gpe-login_0.95.bb @@ -0,0 +1,37 @@ +DESCRIPTION = "GPE user login screen" +SECTION = "gpe" +PRIORITY = "optional" +LICENSE = "GPL" +DEPENDS = "gtk+ libgpewidget gpe-ownerinfo xkbd" +RDEPENDS = "xkbd gpe-theme-clearlooks" +RPROVIDES_${PN} = "gpe-session-starter" +PR = "r0" + +SRC_URI_OVERRIDES_PACKAGE_ARCH = "1" + +GPE_TARBALL_SUFFIX = "bz2" + +inherit gpe autotools pkgconfig + + +SRC_URI += "file://removeblue-fontsize8.patch;patch=1" +SRC_URI += " file://chvt-keylaunch.patch;patch=1 " +SRC_URI += " file://c-locale.patch;patch=1 " + +SRC_URI_append_spitz = "file://brightness-adjust-keyluanchrc.patch;patch=1" +SRC_URI_append_akita = "file://brightness-adjust-keyluanchrc.patch;patch=1" +SRC_URI_append_c7x0 = "file://brightness-adjust-keyluanchrc.patch;patch=1" + + +CONFFILES_${PN} += " \ +${sysconfdir}/apm/suspend.d/S98lock-display \ +${sysconfdir}/gpe/gpe-login.conf \ +${sysconfdir}/gpe/locale.alias \ +${sysconfdir}/sysconfig/gpelogin \ +${sysconfdir}/X11/gpe-login.keylaunchrc \ +${sysconfdir}/X11/gpe-login.gtkrc \ +${sysconfdir}/X11/gpe-login.setup \ +${sysconfdir}/X11/gpe-login.pre-session \ +${sysconfdir}/X11/Xinit.d/99gpe-login \ +${sysconfdir}/X11/Xsession.d/50autolock \ +" diff --git a/recipes/gpe-login/gpe-login_svn.bb b/recipes/gpe-login/gpe-login_svn.bb new file mode 100644 index 0000000000..f02e095698 --- /dev/null +++ b/recipes/gpe-login/gpe-login_svn.bb @@ -0,0 +1,33 @@ +DESCRIPTION = "GPE user login screen" +SECTION = "gpe" +PRIORITY = "optional" +LICENSE = "GPL" +DEPENDS = "gtk+ libgpewidget gpe-ownerinfo xkbd" +RDEPENDS = "xkbd" +RPROVIDES_${PN} = "gpe-session-starter" +PV = "0.93+svn${SRCDATE}" + +inherit autotools + +SRC_URI_OVERRIDES_PACKAGE_ARCH = "1" + +SRC_URI = "${GPE_SVN} \ + file://removeblue-fontsize8.patch;patch=1" + +S = "${WORKDIR}/${PN}" + +CONFFILES_${PN} += " \ +${sysconfdir}/apm/suspend.d/S98lock-display \ +${sysconfdir}/gpe/gpe-login.conf \ +${sysconfdir}/gpe/locale.alias \ +${sysconfdir}/sysconfig/gpelogin \ +${sysconfdir}/X11/gpe-login.keylaunchrc \ +${sysconfdir}/X11/gpe-login.gtkrc \ +${sysconfdir}/X11/gpe-login.setup \ +${sysconfdir}/X11/gpe-login.pre-session \ +${sysconfdir}/X11/Xinit.d/99gpe-login \ +${sysconfdir}/X11/Xsession.d/50autolock \ +" + + +DEFAULT_PREFERENCE = "-1" -- cgit 1.2.3-korg