1SUMMARY = "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 xorgproto util-macros"
11
12SRC_URI = "${XORG_MIRROR}/individual/driver/${BPN}-${PV}.tar.bz2"
13
14FILES_${PN} += " ${libdir}/xorg/modules/drivers/*.so"
15
16inherit autotools pkgconfig 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') or ''
37    abi = "%sxorg-abi-%s-%s" % (mlprefix, name, output.split(".")[0])
38
39    pn = d.getVar("PN")
40    d.appendVar('RDEPENDS_' + pn, ' ' + abi)
41
42SECURITY_LDFLAGS = "${SECURITY_X_LDFLAGS}"
43