blob: bca0aade6cb5ac8a8a912bb512d41e894632ec8d [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()
Brad Bishop6e60e8b2018-02-01 10:27:11 -050036 mlprefix = d.getVar('MLPREFIX') or ''
Patrick Williamsc124f4f2015-09-15 14:41:29 -050037 abi = "%sxorg-abi-%s-%s" % (mlprefix, name, output.split(".")[0])
38
Brad Bishop6e60e8b2018-02-01 10:27:11 -050039 pn = d.getVar("PN")
Patrick Williamsc124f4f2015-09-15 14:41:29 -050040 d.appendVar('RDEPENDS_' + pn, ' ' + abi)
Brad Bishop316dfdd2018-06-25 12:45:53 -040041
42SECURITY_LDFLAGS = "${SECURITY_X_LDFLAGS}"