From: Koen Kooi Date: Tue, 10 Jul 2007 08:38:32 +0000 (+0000) Subject: e-wm: fix startup script, fix u-a and install xdg stuff (per http://wiki.enlightenmen... X-Git-Tag: Release-2010-05/1~8868^2~180 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bfebcd6cd76f2fb46bf72e26b42482f212c3d9fd;p=openembedded.git e-wm: fix startup script, fix u-a and install xdg stuff (per wiki.enlightenment.org/index.php/E17_and_Efreet) --- diff --git a/packages/e17/e-wm/Xsession.d/98enlightenment b/packages/e17/e-wm/Xsession.d/98enlightenment index 65f46284a9..7913888438 100644 --- a/packages/e17/e-wm/Xsession.d/98enlightenment +++ b/packages/e17/e-wm/Xsession.d/98enlightenment @@ -1,3 +1,3 @@ #!/bin/sh -exec enlightenment \ No newline at end of file +exec enlightenment_start diff --git a/packages/e17/e-wm/applications.menu b/packages/e17/e-wm/applications.menu new file mode 100644 index 0000000000..e163864acf --- /dev/null +++ b/packages/e17/e-wm/applications.menu @@ -0,0 +1,93 @@ + + + + Applications + + + + /usr/share/applications + + + + Office + Office.directory + + + Office + + + + + + Multimedia + Multimedia.directory + + + AudioVideo + + + + + + Graphics + Graphics.directory + + + Graphics + + + + + + Games + Games.directory + + + Games + + + + + + Internet + Internet.directory + + + Network + + + + + + Settings + Settings.directory + + + SystemSettings + + + + + + Accessories + Accessories.directory + + + + Applications + Utility + + + System + Office + Internet + AudioVideo + Graphics + Games + + + + + + + diff --git a/packages/e17/e-wm_0.16.999.038.bb b/packages/e17/e-wm_0.16.999.038.bb index 1204ed9ecc..12784ea18f 100644 --- a/packages/e17/e-wm_0.16.999.038.bb +++ b/packages/e17/e-wm_0.16.999.038.bb @@ -1,14 +1,16 @@ DESCRIPTION = "E17 - the Enlightenment Window Mananger" DEPENDS = "eet evas ecore edje efreet" LICENSE = "MIT" -PR = "r6" +PR = "r7" inherit e update-alternatives SRC_URI = "${E_URI}/enlightenment-${PV}.tar.gz \ file://fix-configure.patch;patch=1 \ file://set-autoscroll-defaults.patch;patch=1 \ - file://Xsession.d/98enlightenment" + file://Xsession.d/98enlightenment \ + file://applications.menu \ + " S = "${WORKDIR}/enlightenment-${PV}" @@ -35,9 +37,12 @@ do_compile_prepend() { do_install_append() { install -d ${D}/${sysconfdir}/X11/Xsession.d install -m 755 ${WORKDIR}/Xsession.d/98enlightenment ${D}/${sysconfdir}/X11/Xsession.d + + install -d ${D}/${sysconfdir}/xdg/menus + install -m 644 ${WORKDIR}/applications.menu ${D}/${sysconfdir}/xdg/menus/ } -ALTERNATIVE_PATH = "${bindir}/enlightenment" +ALTERNATIVE_PATH = "${bindir}/enlightenment_start" ALTERNATIVE_NAME = "x-window-manager" ALTERNATIVE_LINK = "${bindir}/x-window-manager" ALTERNATIVE_PRIORITY = "16"