1SUMMARY = "Xlib: Compose data files for libx11" 2DESCRIPTION = "This package provides the compose data files for libx11." 3 4python () { 5 if bb.utils.contains('DISTRO_FEATURES', 'x11', True, False, d): 6 raise bb.parse.SkipRecipe("libx11-compose-data is incompatible with x11 distro feature, use libx11 instead.") 7} 8 9require xorg-lib-common.inc 10 11LICENSE = "MIT & MIT & BSD-1-Clause & HPND & HPND-sell-variant" 12LIC_FILES_CHKSUM = "file://COPYING;md5=172255dee66bb0151435b2d5d709fcf7" 13 14SRC_URI[md5sum] = "c5fa5a86a20e3591bed6c046498d4b8f" 15SRC_URI[sha256sum] = "b289a845c189e251e0e884cc0f9269bbe97c238df3741e854ec4c17c21e473d5" 16 17SRC_URI += "file://0001-Drop-x11-dependencies.patch \ 18 " 19 20XORG_PN = "libX11" 21 22EXTRA_OECONF += "--disable-xkb" 23 24PACKAGES = "${PN}" 25 26FILES:${PN} = "${datadir}/X11/locale ${libdir}/X11/locale" 27 28do_compile() { 29 oe_runmake -C nls 30} 31 32do_install() { 33 oe_runmake DESTDIR=${D} -C nls install 34} 35 36REQUIRED_DISTRO_FEATURES = "" 37