diff options
author | Stefan Schmidt <stefan@datenfreihafen.org> | 2009-08-04 22:59:04 +0000 |
---|---|---|
committer | Stefan Schmidt <stefan@datenfreihafen.org> | 2009-08-04 22:59:04 +0000 |
commit | 8466838635bbb50ecc61cde0e8fe11942bf3d93f (patch) | |
tree | 954b05cf6da7d78a7233edbf06fdcbc3ac2aa3d9 /recipes/xserver-common/xserver-common_1.30.bb | |
parent | a90e9a08275bf5cdad4f439c66beca928e453cad (diff) | |
parent | 2880b3877d38bfaa4056af6df7f122a64e955292 (diff) |
Merge branch 'org.openembedded.dev' of git@git.openembedded.net:openembedded into org.openembedded.dev
Diffstat (limited to 'recipes/xserver-common/xserver-common_1.30.bb')
-rw-r--r-- | recipes/xserver-common/xserver-common_1.30.bb | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/recipes/xserver-common/xserver-common_1.30.bb b/recipes/xserver-common/xserver-common_1.30.bb new file mode 100644 index 0000000000..3f3e7f889f --- /dev/null +++ b/recipes/xserver-common/xserver-common_1.30.bb @@ -0,0 +1,26 @@ +DESCRIPTION = "Common X11 scripts and support files" +LICENSE = "GPL" +SECTION = "x11" +RDEPENDS_${PN} = "xmodmap xrandr xdpyinfo" +PR = "r2" + +PACKAGE_ARCH = "all" +DEFAULT_PREFERENCE = "-1" + +# we are using a gpe-style Makefile +inherit gpe + +SRC_URI_append = " file://setDPI.sh \ + file://89xdgautostart.sh \ +file://0018-zaurus-fixed-machine-names.patch;patch=1 \ +file://0019-keymap-fixed-machine-names.patch;patch=1 \ +file://0020-keymap-fixed-machine-names-again.patch;patch=1 \ +file://0021-xserver-introduced-MOUSE-variable-for-mouse-argument.patch;patch=1 \ +file://0022-xserver-fix-syntax-error.patch;patch=1 \ +" + +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 +} |