diff options
author | Florian Boor <florian@kernelconcepts.de> | 2009-09-28 11:00:57 +0200 |
---|---|---|
committer | Florian Boor <florian@kernelconcepts.de> | 2009-09-28 11:00:57 +0200 |
commit | 514979f141ca48b1b78b91ca3528262f812f4724 (patch) | |
tree | e86fa238aeed2bdf5e5cca6c90b74110105f470c /recipes/xserver-common/xserver-common_1.32.bb | |
parent | de576627a2b56ce347f7b58d0a784b9bd045b66a (diff) |
xserver-common: Add 1.32 - still with DEFAULT_PREFERENCE -1 but expexted to work.
Diffstat (limited to 'recipes/xserver-common/xserver-common_1.32.bb')
-rw-r--r-- | recipes/xserver-common/xserver-common_1.32.bb | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/recipes/xserver-common/xserver-common_1.32.bb b/recipes/xserver-common/xserver-common_1.32.bb new file mode 100644 index 0000000000..63368649c1 --- /dev/null +++ b/recipes/xserver-common/xserver-common_1.32.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" +DEFAULT_PREFERENCE = "-1" + +# 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 +} |