summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-graphics/xserver-common/xserver-common_1.34.bb
diff options
context:
space:
mode:
authorTudor Florea <tudor.florea@enea.com>2014-10-10 03:20:04 +0200
committerTudor Florea <tudor.florea@enea.com>2014-10-10 03:20:04 +0200
commit1b8dfe266937a37a4c642f96ceb2347bf4c00a17 (patch)
tree0c6aab146bb3c82efd9c7846a9a4e70dcb0ec84f /meta-oe/recipes-graphics/xserver-common/xserver-common_1.34.bb
downloadmeta-openembedded-daisy-140929.tar.gz
initial commit for Enea Linux 4.0-140929daisy-140929
Migrated from the internal git server on the daisy-enea-point-release branch Signed-off-by: Tudor Florea <tudor.florea@enea.com>
Diffstat (limited to 'meta-oe/recipes-graphics/xserver-common/xserver-common_1.34.bb')
-rw-r--r--meta-oe/recipes-graphics/xserver-common/xserver-common_1.34.bb46
1 files changed, 46 insertions, 0 deletions
diff --git a/meta-oe/recipes-graphics/xserver-common/xserver-common_1.34.bb b/meta-oe/recipes-graphics/xserver-common/xserver-common_1.34.bb
new file mode 100644
index 0000000000..12fff9ae9a
--- /dev/null
+++ b/meta-oe/recipes-graphics/xserver-common/xserver-common_1.34.bb
@@ -0,0 +1,46 @@
1SUMMARY = "Common X11 scripts and support files"
2LICENSE = "GPLv2"
3LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe"
4
5PR = "r8"
6
7# we are using a gpe-style Makefile
8inherit gpe
9
10SRC_URI[md5sum] = "82f2f84cd96610e8f7b92c700cd31c14"
11SRC_URI[sha256sum] = "cd04c33418f776b1e13fcc7af3d6bd0c7cccd03fbabd7dbcd97f88166cc34210"
12
13SRC_URI_append = " \
14 file://0001-COPYING-add-GPLv2-license-file.patch \
15 file://0002-add-setdpi-Xinit.d-script.patch \
16 file://0003-add-89xdgautostart-Xsession.d-script.patch \
17 file://0005-add-XWindowManager-Xsession.d-script.patch \
18 file://0006-add-support-for-etc-X11-xserver-system.patch \
19 file://0007-use-own-functions-file-instead-etc-init.d-functions.patch \
20 file://0008-xserver-common-add-dpi-and-nocursor-params-for-gta01.patch \
21 file://0009-xserver-common-add-support-for-n900-alias-nokia_rx-5.patch \
22 file://0010-xserver-common-add-support-for-nexus-S-alias-herring.patch \
23 file://0011-xserver-common-add-support-for-nexus-one-alias-mahim.patch \
24 file://0012-xserver-common-add-support-for-gta04-alias-OpenPhoen.patch \
25 file://0013-xserver-common-add-support-for-tuna-alias-Galaxy-Nex.patch \
26 file://0014-Xserver-Start-Xsession-like-x11-common-does.patch \
27"
28
29do_install_append() {
30 sed -i 's:^BINDIR=.*$:BINDIR=${bindir}:' ${D}/etc/X11/xserver-common
31 # Rename all Xsession files not ending with .sh
32 # Unfortunatelly when xinput-calibrator was moved to oe-core
33 # its Xsession file got name 30xinput_calibrate.sh and ls -X sorts it
34 # last, not respecting numbers for sorting them
35 for i in ${D}/${sysconfdir}/X11/Xsession.d/*; do
36 echo $i | grep '.sh$' || mv $i $i.sh
37 done
38}
39
40inherit allarch
41
42RDEPENDS_${PN} = "xmodmap xrandr xdpyinfo fbset xinput-calibrator"
43
44RCONFLICTS_${PN} = "xserver-kdrive-common x11-common"
45RREPLACES_${PN} = "xserver-kdrive-common x11-common"
46