diff options
Diffstat (limited to 'recipes')
-rw-r--r-- | recipes/gpe-dm/gpe-dm_0.52.bb | 13 | ||||
-rw-r--r-- | recipes/xserver-common/xserver-common_1.25.bb | 20 |
2 files changed, 33 insertions, 0 deletions
diff --git a/recipes/gpe-dm/gpe-dm_0.52.bb b/recipes/gpe-dm/gpe-dm_0.52.bb new file mode 100644 index 0000000000..6cf1f002a0 --- /dev/null +++ b/recipes/gpe-dm/gpe-dm_0.52.bb @@ -0,0 +1,13 @@ +DESCRIPTION = "GPE Display Manager" +SECTION = "gpe" +PRIORITY = "optional" +LICENSE = "GPL" +DEPENDS = "glib-2.0 xserver-common" +RDEPENDS_${PN} += " xserver-common" + +GPE_TARBALL_SUFFIX ?= "bz2" + +inherit gpe autotools update-rc.d + +INITSCRIPT_NAME = "gpe-dm" +INITSCRIPT_PARAMS = "start 99 5 2 . stop 20 0 1 6 ." diff --git a/recipes/xserver-common/xserver-common_1.25.bb b/recipes/xserver-common/xserver-common_1.25.bb new file mode 100644 index 0000000000..e0a12319b8 --- /dev/null +++ b/recipes/xserver-common/xserver-common_1.25.bb @@ -0,0 +1,20 @@ +DESCRIPTION = "Common X11 scripts and support files" +LICENSE = "GPL" +SECTION = "x11" +RDEPENDS_${PN} = "xmodmap xrandr xdpyinfo" +PR = "r0" + +PACKAGE_ARCH = "all" + +# we are using a gpe-style Makefile +inherit gpe + +SRC_URI_append = " file://setDPI.sh \ + file://89xdgautostart.sh \ +" + +do_install_append() { + install -m 0755 "${WORKDIR}/setDPI.sh" "${D}/etc/X11/Xinit.d/50setdpi" + install -m 0755 "${WORKDIR}/89xdgautostart.sh" "${D}/etc/X11/Xsession.d/89xdgautostart" + sed -i 's:^BINDIR=.*$:BINDIR=${bindir}:' ${D}/etc/X11/Xserver +} |