blob: 57a4c827dde5bc38dbec871cc9cac6dd8527f451 [file] [log] [blame]
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001SUMMARY = "X driver"
2HOMEPAGE = "http://www.x.org"
3BUGTRACKER = "https://bugs.freedesktop.org"
4SECTION = "x11/drivers"
5LICENSE = "MIT-X"
6
7PE = "2"
8INC_PR = "r21"
9
10DEPENDS = "virtual/xserver xproto randrproto util-macros"
11
12SRC_URI = "${XORG_MIRROR}/individual/driver/${BPN}-${PV}.tar.bz2"
13
14FILES_${PN} += " ${libdir}/xorg/modules/drivers/*.so"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050015
16inherit autotools pkgconfig distro_features_check
17# depends on virtual/xserver
18REQUIRED_DISTRO_FEATURES = "x11"
19
20# FIXME: We don't want to include the libtool archives (*.la) from modules
21# directory, as they serve no useful purpose. Upstream should fix Makefile.am
22do_install_append() {
23 find ${D}${libdir}/xorg/modules -regex ".*\.la$" | xargs rm -f --
24}
25
26# Function to add the relevant ABI dependency to drivers, which should be called
27# from a PACKAGEFUNC.
28def _add_xorg_abi_depends(d, name):
29 # Map of ABI names exposed in the dependencies to pkg-config variables
30 abis = {
31 "video": "abi_videodrv",
32 "input": "abi_xinput"
33 }
34
35 output = os.popen("pkg-config xorg-server --variable=%s" % abis[name]).read()
36 mlprefix = d.getVar('MLPREFIX', True) or ''
37 abi = "%sxorg-abi-%s-%s" % (mlprefix, name, output.split(".")[0])
38
39 pn = d.getVar("PN", True)
40 d.appendVar('RDEPENDS_' + pn, ' ' + abi)