- Remove /etc/gtk-2.0/gtkrc that forced Clearlooks

- Make matchbox themes without a corresponding gtk theme use Clearlooks
- Add settings-daemon, matchbox-config-gtk and leafpad to meta-oh
- Add settings-daemon
- Add matchbox-config-gtk
- Change Leafpad desktop shortcut from 'Leafpad' to 'Notes'


git-svn-id: https://svn.o-hand.com/repos/poky@120 311d38ba-8fff-0310-9ca6-ca027cbcb966
This commit is contained in:
Chris Lord 2005-10-04 17:01:36 +00:00
parent 9f6a0e0555
commit ebd747180e
10 changed files with 40 additions and 7 deletions

View File

@ -1,6 +1,6 @@
[Desktop Entry]
Encoding=UTF-8
Name=Leafpad
Name=Notes
Exec=/usr/bin/leafpad
Icon=leafpad.png
Terminal=false

View File

@ -3,6 +3,7 @@ DEPENDS = "gtk+"
SRC_URI = "http://savannah.nongnu.org/download/${PN}/${PN}-${PV}.tar.gz \
file://leafpad.desktop \
file://leafpad.png"
PR = "r1"
inherit autotools pkgconfig

View File

@ -0,0 +1,11 @@
DESCRIPTION = "Matchbox gtk theme configuration application."
LICENSE = "GPL"
DEPENDS = "gconf libglade gtk+"
RDEPENDS = "settings-daemon"
PV = "0.0cvs${CVSDATE}"
S = "${WORKDIR}/${PN}"
SRC_URI = "svn://svn.o-hand.com/repos/matchbox/trunk;module=${PN};proto=http"
inherit autotools pkgconfig

View File

@ -1,2 +0,0 @@
include "/usr/share/themes/Clearlooks/gtk-2.0/gtkrc"

View File

@ -2,7 +2,7 @@ DESCRIPTION = "Custom MB session files for poky"
LICENSE = "GPL"
SECTION = "x11"
RDEPENDS = "matchbox matchbox-applet-startup-monitor gtk-theme-clearlooks"
PR = "r8"
PR = "r9"
SRC_URI = "file://etc"
S = ${WORKDIR}

View File

@ -1 +1 @@
include "/usr/share/themes/Angelistic/gtk-2.0/gtkrc"
include "/usr/share/themes/Clearlooks/gtk-2.0/gtkrc"

View File

@ -3,7 +3,7 @@ LICENSE = "GPL"
DEPENDS = "matchbox-wm gtk-clearlooks-engine"
RDEPENDS = "matchbox-wm gtk-clearlooks-engine"
SECTION = "x11/base"
PR = "r1"
PR = "r2"
SRC_URI = "file://gtkrc"

View File

@ -2,7 +2,7 @@ PACKAGES = "oh-base-depends oh-task-base"
# oh-task-base
DESCRIPTION = "Meta-package for OpenHand Palmtop Environment"
MAINTAINER = "Richard Purdie <richard@openedhand.com>"
PR = "r16"
PR = "r17"
ALLOW_EMPTY = "1"
@ -18,6 +18,7 @@ oh-task-base = "\
matchbox-poky \
matchbox-keyboard \
matchbox-stroke \
matchbox-config-gtk \
matchbox-panel-manager \
matchbox-panel-hacks \
matchbox-themes-extra \
@ -29,6 +30,7 @@ oh-task-base = "\
xserver-nodm-init \
chkhinge26 \
usbinit \
settings-daemon \
minimo \
gtk+ \
gtk-clearlooks-engine \

View File

@ -0,0 +1,3 @@
#!/bin/sh
/usr/bin/settings-daemon &

View File

@ -0,0 +1,18 @@
DESCRIPTION = "Settings-daemon is a bridge between xst/gpe-confd and gconf"
LICENSE = "GPL"
DEPENDS = "gconf glib-2.0"
SRC_URI = "svn://svn.o-hand.com/repos/matchbox/trunk;module=${PN};proto=http \
file://70settings-daemon"
S = "${WORKDIR}/${PN}"
inherit autotools pkgconfig gettext
FILES_${PN} = "${bindir} ${sysconfdir}"
do_install_append () {
install -d ${D}/${sysconfdir}/X11/Xsession.d
install -m 755 ${WORKDIR}/70settings-daemon ${D}/${sysconfdir}/X11/Xsession.d/
}