diff options
author | Koen Kooi <koen@openembedded.org> | 2007-07-10 08:38:32 +0000 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2007-07-10 08:38:32 +0000 |
commit | bfebcd6cd76f2fb46bf72e26b42482f212c3d9fd (patch) | |
tree | 6a3ab97914d6682b5b4125558725b4abfe439b89 /packages/e17 | |
parent | 122e01826fd94667f612273ba17aceac9b03a568 (diff) |
e-wm: fix startup script, fix u-a and install xdg stuff (per http://wiki.enlightenment.org/index.php/E17_and_Efreet)
Diffstat (limited to 'packages/e17')
-rw-r--r-- | packages/e17/e-wm/Xsession.d/98enlightenment | 2 | ||||
-rw-r--r-- | packages/e17/e-wm/applications.menu | 93 | ||||
-rw-r--r-- | packages/e17/e-wm_0.16.999.038.bb | 11 |
3 files changed, 102 insertions, 4 deletions
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 @@ +<?xml version="1.0"?> +<!DOCTYPE Menu PUBLIC "-//freedesktop//DTD Menu 1.0//EN" "http://standards.freedesktop.org/menu-spec/menu-1.0.dtd"> +<Menu> + <Name>Applications</Name> + <!-- <Directory>Applications.directory</Directory> --> + + <!-- Read standard .directory and .desktop file locations --> + <DefaultAppDirs>/usr/share/applications</DefaultAppDirs> + <DefaultDirectoryDirs/> + + <Menu> + <Name>Office</Name> + <Directory>Office.directory</Directory> + <Include> + <And> + <Category>Office</Category> + </And> + </Include> + </Menu> + + <Menu> + <Name>Multimedia</Name> + <Directory>Multimedia.directory</Directory> + <Include> + <And> + <Category>AudioVideo</Category> + </And> + </Include> + </Menu> + + <Menu> + <Name>Graphics</Name> + <Directory>Graphics.directory</Directory> + <Include> + <And> + <Category>Graphics</Category> + </And> + </Include> + </Menu> + + <Menu> + <Name>Games</Name> + <Directory>Games.directory</Directory> + <Include> + <And> + <Category>Games</Category> + </And> + </Include> + </Menu> + + <Menu> + <Name>Internet</Name> + <Directory>Internet.directory</Directory> + <Include> + <And> + <Category>Network</Category> + </And> + </Include> + </Menu> + + <Menu> + <Name>Settings</Name> + <Directory>Settings.directory</Directory> + <Include> + <And> + <Category>SystemSettings</Category> + </And> + </Include> + </Menu> + + <Menu> + <Name>Accessories</Name> + <Directory>Accessories.directory</Directory> + <Include> + <And> + <Or> + <Category>Applications</Category> + <Category>Utility</Category> + </Or> + <Not> + <Category>System</Category> + <Category>Office</Category> + <Category>Internet</Category> + <Category>AudioVideo</Category> + <Category>Graphics</Category> + <Category>Games</Category> + </Not> + </And> + </Include> + </Menu> + +</Menu> + 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" |