summaryrefslogtreecommitdiffstats
path: root/meta/recipes-graphics/xorg-driver/xf86-driver-common.inc
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-graphics/xorg-driver/xf86-driver-common.inc')
-rw-r--r--meta/recipes-graphics/xorg-driver/xf86-driver-common.inc33
1 files changed, 0 insertions, 33 deletions
diff --git a/meta/recipes-graphics/xorg-driver/xf86-driver-common.inc b/meta/recipes-graphics/xorg-driver/xf86-driver-common.inc
deleted file mode 100644
index 34d03b2000..0000000000
--- a/meta/recipes-graphics/xorg-driver/xf86-driver-common.inc
+++ /dev/null
@@ -1,33 +0,0 @@
1DESCRIPTION = "X driver"
2HOMEPAGE = "http://www.x.org"
3BUGTRACKER = "https://bugs.freedesktop.org"
4SECTION = "x11/drivers"
5LICENSE = "MIT-X"
6
7PE = "1"
8PR = "r1"
9
10DEPENDS = "virtual/xserver-xf86 xproto randrproto util-macros"
11
12XORG_PN = "${BPN}"
13SRC_URI = "${XORG_MIRROR}/individual/driver/${XORG_PN}-${PV}.tar.bz2"
14
15S = "${WORKDIR}/${XORG_PN}-${PV}"
16
17FILES_${PN} += " ${libdir}/xorg/modules/drivers/*.so"
18FILES_${PN}-dbg += " ${libdir}/xorg/modules/drivers/.debug"
19
20inherit autotools pkgconfig
21
22# AC_CHECK_FILE doesn't work when cross compiling, so we create a replacement
23# macro that simply assumes the test succeeds.
24do_configure_prepend () {
25 echo 'AC_DEFUN(CC_AC_CHECK_FILE, $2)' > configure.ac.new
26 sed 's/AC_CHECK_FILE/CC_AC_CHECK_FILE/g' configure.ac >> configure.ac.new
27 mv configure.ac.new configure.ac
28}
29
30do_install_append () {
31 # driver's la files are not packaged
32 rm -f ${D}${libdir}/xorg/modules/drivers/*.la
33}