mirror of
https://git.yoctoproject.org/poky
synced 2026-02-20 08:29:42 +01:00
Don't depend on matchbox-common, but matchbox-desktop-sato. Also ship /usr/bin/matchbox-session here
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@2112 311d38ba-8fff-0310-9ca6-ca027cbcb966
This commit is contained in:
24
meta/packages/matchbox-sato/matchbox-sato/matchbox-session
Normal file
24
meta/packages/matchbox-sato/matchbox-sato/matchbox-session
Normal file
@@ -0,0 +1,24 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# Very simple session manager for matchbox tools
|
||||
#
|
||||
|
||||
# Uncomment below to enable parsing of debian menu entrys
|
||||
# export MB_USE_DEB_MENUS=1
|
||||
|
||||
if [ -e $HOME/.matchbox/session ]
|
||||
then
|
||||
exec $HOME/.matchbox/session
|
||||
fi
|
||||
|
||||
if [ -e /etc/matchbox/session ]
|
||||
then
|
||||
exec /etc/matchbox/session
|
||||
fi
|
||||
|
||||
# Default files to run if $HOME/.matchbox/session or /etc/matchbox/session
|
||||
# dont exist.
|
||||
|
||||
matchbox-desktop &
|
||||
matchbox-panel --orientation south &
|
||||
exec matchbox-window-manager $@
|
||||
@@ -1,13 +1,16 @@
|
||||
DESCRIPTION = "Custom MB session files for poky"
|
||||
LICENSE = "GPL"
|
||||
SECTION = "x11"
|
||||
RDEPENDS = "matchbox-common matchbox-applet-startup-monitor gtk-sato-engine matchbox-theme-sato gtk-theme-sato matchbox-panel-2"
|
||||
PR = "r13"
|
||||
RDEPENDS = "matchbox-applet-startup-monitor gtk-sato-engine matchbox-theme-sato gtk-theme-sato matchbox-panel-2 matchbox-desktop-sato"
|
||||
RCONFLICTS = "matchbox-common"
|
||||
PR = "r14"
|
||||
|
||||
SRC_URI = "file://etc"
|
||||
SRC_URI = "file://etc file://matchbox-session"
|
||||
S = ${WORKDIR}
|
||||
|
||||
do_install() {
|
||||
install -d ${D}/${bindir}
|
||||
install -m 0755 ${S}/matchbox-session ${D}/${bindir}
|
||||
cp -R ${S}/etc ${D}/etc
|
||||
rm -fR ${D}/etc/.svn
|
||||
rm -fR ${D}/etc/matchbox/.svn
|
||||
|
||||
Reference in New Issue
Block a user