summaryrefslogtreecommitdiffstats
path: root/meta/recipes-graphics/xorg-xserver/xserver-xf86-config_0.1.bb
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-graphics/xorg-xserver/xserver-xf86-config_0.1.bb')
-rw-r--r--meta/recipes-graphics/xorg-xserver/xserver-xf86-config_0.1.bb11
1 files changed, 5 insertions, 6 deletions
diff --git a/meta/recipes-graphics/xorg-xserver/xserver-xf86-config_0.1.bb b/meta/recipes-graphics/xorg-xserver/xserver-xf86-config_0.1.bb
index 5420b7d23e..a3a4733785 100644
--- a/meta/recipes-graphics/xorg-xserver/xserver-xf86-config_0.1.bb
+++ b/meta/recipes-graphics/xorg-xserver/xserver-xf86-config_0.1.bb
@@ -1,22 +1,21 @@
1SUMMARY = "X.Org X server configuration file" 1SUMMARY = "X.Org X server configuration file"
2HOMEPAGE = "http://www.x.org" 2HOMEPAGE = "http://www.x.org"
3SECTION = "x11/base" 3SECTION = "x11/base"
4LICENSE = "MIT-X" 4LICENSE = "MIT"
5LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420" 5LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
6PR = "r33"
7 6
8SRC_URI = "file://xorg.conf" 7SRC_URI = "file://xorg.conf"
9 8
10S = "${WORKDIR}" 9S = "${WORKDIR}"
11 10
12CONFFILES_${PN} = "${sysconfdir}/X11/xorg.conf" 11CONFFILES:${PN} = "${sysconfdir}/X11/xorg.conf"
13 12
14PACKAGE_ARCH = "${MACHINE_ARCH}" 13PACKAGE_ARCH = "${MACHINE_ARCH}"
15ALLOW_EMPTY_${PN} = "1" 14ALLOW_EMPTY:${PN} = "1"
16 15
17do_install () { 16do_install () {
18 if test -s ${WORKDIR}/xorg.conf; then 17 if test -s ${S}/xorg.conf; then
19 install -d ${D}/${sysconfdir}/X11 18 install -d ${D}/${sysconfdir}/X11
20 install -m 0644 ${WORKDIR}/xorg.conf ${D}/${sysconfdir}/X11/ 19 install -m 0644 ${S}/xorg.conf ${D}/${sysconfdir}/X11/
21 fi 20 fi
22} 21}