diff options
-rw-r--r-- | meta-oe/recipes-graphics/xserver-common/xserver-common_1.34.bb | 38 |
1 files changed, 19 insertions, 19 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 index b994dfb4e6..0d59ab7dae 100644 --- a/meta-oe/recipes-graphics/xserver-common/xserver-common_1.34.bb +++ b/meta-oe/recipes-graphics/xserver-common/xserver-common_1.34.bb | |||
@@ -1,14 +1,8 @@ | |||
1 | DESCRIPTION = "Common X11 scripts and support files" | 1 | DESCRIPTION = "Common X11 scripts and support files" |
2 | LICENSE = "GPL" | ||
3 | LICENSE = "GPLv2" | 2 | LICENSE = "GPLv2" |
4 | LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe" | 3 | LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe" |
5 | RDEPENDS_${PN} = "xmodmap xrandr xdpyinfo fbset" | ||
6 | PR = "r1" | ||
7 | 4 | ||
8 | PACKAGE_ARCH = "all" | 5 | PR = "r2" |
9 | |||
10 | RCONFLICTS_${PN} = "xserver-kdrive-common" | ||
11 | RREPLACES_${PN} = "xserver-kdrive-common" | ||
12 | 6 | ||
13 | # we are using a gpe-style Makefile | 7 | # we are using a gpe-style Makefile |
14 | inherit gpe | 8 | inherit gpe |
@@ -19,20 +13,26 @@ SRC_URI[sha256sum] = "cd04c33418f776b1e13fcc7af3d6bd0c7cccd03fbabd7dbcd97f88166c | |||
19 | SRC_URI_append = " \ | 13 | SRC_URI_append = " \ |
20 | file://gplv2-license.patch \ | 14 | file://gplv2-license.patch \ |
21 | file://setDPI.sh \ | 15 | file://setDPI.sh \ |
22 | file://89xdgautostart.sh" | 16 | file://89xdgautostart.sh \ |
17 | file://89xTs_Calibrate.xinput_calibrator.patch \ | ||
18 | file://90xXWindowManager.patch \ | ||
19 | file://Xserver.add.xserver-system.patch \ | ||
20 | file://Xserver.add.nocursor.for.gta.patch \ | ||
21 | file://Xserver.add.dpi.for.gta.patch \ | ||
22 | file://Xserver.n900.patch \ | ||
23 | " | ||
23 | 24 | ||
24 | RDEPENDS_${PN}_append_shr = " xinput-calibrator " | ||
25 | |||
26 | SRC_URI_append_shr = " file://89xTs_Calibrate.xinput_calibrator.patch \ | ||
27 | file://90xXWindowManager.patch \ | ||
28 | file://Xserver.add.nocursor.for.gta.patch \ | ||
29 | file://Xserver.add.xserver-system.patch \ | ||
30 | file://Xserver.add.dpi.for.gta.patch \ | ||
31 | file://Xserver.n900.patch" | ||
32 | 25 | ||
33 | do_install_append() { | 26 | do_install_append() { |
34 | install -m 0755 "${WORKDIR}/setDPI.sh" "${D}/etc/X11/Xinit.d/50setdpi" | 27 | install -m 0755 "${WORKDIR}/setDPI.sh" "${D}/etc/X11/Xinit.d/50setdpi" |
35 | install -m 0755 "${WORKDIR}/89xdgautostart.sh" "${D}/etc/X11/Xsession.d/89xdgautostart" | 28 | install -m 0755 "${WORKDIR}/89xdgautostart.sh" "${D}/etc/X11/Xsession.d/89xdgautostart" |
36 | sed -i 's:^BINDIR=.*$:BINDIR=${bindir}:' ${D}/etc/X11/xserver-common | 29 | sed -i 's:^BINDIR=.*$:BINDIR=${bindir}:' ${D}/etc/X11/xserver-common |
37 | } | 30 | } |
38 | 31 | ||
32 | PACKAGE_ARCH = "all" | ||
33 | |||
34 | RDEPENDS_${PN} = "xmodmap xrandr xdpyinfo fbset xinput-calibrator" | ||
35 | |||
36 | RCONFLICTS_${PN} = "xserver-kdrive-common x11-common" | ||
37 | RREPLACES_${PN} = "xserver-kdrive-common x11-common" | ||
38 | |||