mirror of
https://git.yoctoproject.org/poky
synced 2026-03-12 18:29:42 +01:00
Upstream has switched some new releases from bz2 to xz compression. Add an XORG_EXT variable so recipes can set the file name extension needed for the compression type. Following the approach in oe-core/master: 6a8068e036b4b2a40b38896275b936916b4db76e xorg-lib-common: Add variable to set tarball type use a variable for the tarball suffix/compression format. (From OE-Core rev: 56ea2b625f81e397e911b3610130d3e838d10938) Signed-off-by: Robert Joslyn <robert.joslyn@redrectangle.org> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Yogita Urade <yogita.urade@windriver.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
28 lines
873 B
PHP
28 lines
873 B
PHP
HOMEPAGE = "http://www.x.org"
|
|
BUGTRACKER = "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg"
|
|
|
|
SECTION = "x11/libs"
|
|
LICENSE = "MIT"
|
|
DEPENDS = "util-macros"
|
|
|
|
XORG_PN = "${BPN}"
|
|
XORG_EXT ?= "tar.bz2"
|
|
|
|
SRC_URI = "${XORG_MIRROR}/individual/lib/${XORG_PN}-${PV}.${XORG_EXT}"
|
|
|
|
S = "${WORKDIR}/${XORG_PN}-${PV}"
|
|
|
|
inherit autotools features_check pkgconfig
|
|
|
|
EXTRA_OECONF = "--disable-specs --without-groff --without-ps2pdf --without-fop"
|
|
|
|
PACKAGECONFIG ??= ""
|
|
PACKAGECONFIG[xmlto] = "--with-xmlto, --without-xmlto, xmlto-native docbook-xml-dtd4-native docbook-xsl-stylesheets-native"
|
|
|
|
UNKNOWN_CONFIGURE_OPT_IGNORE += "--enable-malloc0returnsnull --disable-malloc0returnsnull \
|
|
--disable-specs --without-groff --without-ps2pdf --without-fop \
|
|
--without-xmlto --with-xmlto \
|
|
"
|
|
|
|
REQUIRED_DISTRO_FEATURES ?= "x11"
|