52 lines
2.2 KiB
BlitzBasic
52 lines
2.2 KiB
BlitzBasic
SUMMARY = "Userspace interface to the kernel DRM services"
|
|
DESCRIPTION = "The runtime library for accessing the kernel DRM services. DRM \
|
|
stands for \"Direct Rendering Manager\", which is the kernel portion of the \
|
|
\"Direct Rendering Infrastructure\" (DRI). DRI is required for many hardware \
|
|
accelerated OpenGL drivers."
|
|
HOMEPAGE = "http://dri.freedesktop.org"
|
|
SECTION = "x11/base"
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://xf86drm.c;beginline=9;endline=32;md5=c8a3b961af7667c530816761e949dc71"
|
|
PROVIDES = "drm"
|
|
DEPENDS = "libpthread-stubs libpciaccess"
|
|
|
|
SRC_URI = "http://dri.freedesktop.org/libdrm/${BP}.tar.bz2 \
|
|
file://installtests.patch \
|
|
file://fix_O_CLOEXEC_undeclared.patch \
|
|
file://0001-configure.ac-Allow-explicit-enabling-of-cunit-tests.patch \
|
|
"
|
|
|
|
SRC_URI[md5sum] = "fe4d5c77f1468ee73d0bbb30d76945d7"
|
|
SRC_URI[sha256sum] = "b5e55dbac2124e742e639f5b8553e8b7395863bf73dab4f77e99fe2fc25572b5"
|
|
|
|
inherit autotools pkgconfig manpages
|
|
|
|
EXTRA_OECONF += "--disable-cairo-tests \
|
|
--without-cunit \
|
|
--enable-omap-experimental-api \
|
|
--enable-etnaviv-experimental-api \
|
|
--enable-install-test-programs \
|
|
--disable-valgrind \
|
|
"
|
|
PACKAGECONFIG[manpages] = "--enable-manpages, --disable-manpages, libxslt-native xmlto-native"
|
|
|
|
ALLOW_EMPTY_${PN}-drivers = "1"
|
|
PACKAGES =+ "${PN}-tests ${PN}-drivers ${PN}-radeon ${PN}-nouveau ${PN}-omap \
|
|
${PN}-intel ${PN}-exynos ${PN}-kms ${PN}-freedreno ${PN}-amdgpu \
|
|
${PN}-etnaviv"
|
|
|
|
RRECOMMENDS_${PN}-drivers = "${PN}-radeon ${PN}-nouveau ${PN}-omap ${PN}-intel \
|
|
${PN}-exynos ${PN}-freedreno ${PN}-amdgpu \
|
|
${PN}-etnaviv"
|
|
|
|
FILES_${PN}-tests = "${bindir}/*"
|
|
FILES_${PN}-radeon = "${libdir}/libdrm_radeon.so.*"
|
|
FILES_${PN}-nouveau = "${libdir}/libdrm_nouveau.so.*"
|
|
FILES_${PN}-omap = "${libdir}/libdrm_omap.so.*"
|
|
FILES_${PN}-intel = "${libdir}/libdrm_intel.so.*"
|
|
FILES_${PN}-exynos = "${libdir}/libdrm_exynos.so.*"
|
|
FILES_${PN}-kms = "${libdir}/libkms*.so.*"
|
|
FILES_${PN}-freedreno = "${libdir}/libdrm_freedreno.so.*"
|
|
FILES_${PN}-amdgpu = "${libdir}/libdrm_amdgpu.so.*"
|
|
FILES_${PN}-etnaviv = "${libdir}/libdrm_etnaviv.so.*"
|