diff options
author | Koen Kooi <koen@openembedded.org> | 2005-11-08 16:24:07 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2005-11-08 16:24:07 +0000 |
commit | 50d382f5c31cbfa36ea9982088e0fe2734bee36c (patch) | |
tree | 1a09d0110992004a57c86d463e7d8f9baacc9aa1 /packages/gpe-login | |
parent | 750e6ba2065a44f09667a66e49fd487264179d66 (diff) |
gpe-login 0.83: add conditional patch for high dpi machines
* sets font size to 5
* sets login theme to Industrial
* kills the smashed smurf look
Diffstat (limited to 'packages/gpe-login')
-rw-r--r-- | packages/gpe-login/files/highdpifontfix.patch | 14 | ||||
-rw-r--r-- | packages/gpe-login/gpe-login_0.83.bb | 11 |
2 files changed, 24 insertions, 1 deletions
diff --git a/packages/gpe-login/files/highdpifontfix.patch b/packages/gpe-login/files/highdpifontfix.patch new file mode 100644 index 0000000000..cc5a42dcfc --- /dev/null +++ b/packages/gpe-login/files/highdpifontfix.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 5" ++include "/usr/share/themes/Industrial/gtk-2.0/gtkrc" diff --git a/packages/gpe-login/gpe-login_0.83.bb b/packages/gpe-login/gpe-login_0.83.bb index ec936f85df..b81145997e 100644 --- a/packages/gpe-login/gpe-login_0.83.bb +++ b/packages/gpe-login/gpe-login_0.83.bb @@ -8,6 +8,15 @@ MAINTAINER = "Philip Blundell <pb@handhelds.org>" DEPENDS = "gtk+ libgpewidget gpe-ownerinfo xkbd" RDEPENDS = "xkbd" RPROVIDES = "gpe-session-starter" -PR = "r0" +PR = "r1" SRC_URI += "file://busybox-bad-perms.patch;patch=1" + +#apply a patch to set the fontsize for bigdpi (200+) devices to 5 +SRC_URI_append_ipaq-pxa270 = " file://highdpifontfix.patch;patch=1" +SRC_URI_append_spitz = " file://highdpifontfix.patch;patch=1" +SRC_URI_append_akita = " file://highdpifontfix.patch;patch=1" +SRC_URI_append_borzoi = " file://highdpifontfix.patch;patch=1" +SRC_URI_append_c7x0 = " file://highdpifontfix.patch;patch=1" +SRC_URI_append_nokia770 = " file://highdpifontfix.patch;patch=1" + |