abefa5a54a
This will fix the following build failure when enabling introspection on libgtk2: Couldn't find include 'Pango-1.0.gir' (search path: '['/home/fabrice/buildroot/output/host/bin/../mipsel-buildroot-linux-gnu/sysroot/usr/bin/../share/gir-1.0', '../gdk', '/home/fabrice/buildroot/output/host/share', '/usr/share/gnome/gir-1.0', '/usr/local/share/gir-1.0', '/usr/share/gir-1.0', '/home/fabrice/buildroot/output/host/share/gir-1.0', '/usr/share/gir-1.0']') Fixes: - http://autobuild.buildroot.org/results//86c6f55e0bd1a0fe3b70c9e97193aaad94d72a7f Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
53 lines
1.3 KiB
Makefile
53 lines
1.3 KiB
Makefile
################################################################################
|
|
#
|
|
# pango
|
|
#
|
|
################################################################################
|
|
|
|
PANGO_VERSION_MAJOR = 1.44
|
|
PANGO_VERSION = $(PANGO_VERSION_MAJOR).6
|
|
PANGO_SOURCE = pango-$(PANGO_VERSION).tar.xz
|
|
PANGO_SITE = http://ftp.gnome.org/pub/GNOME/sources/pango/$(PANGO_VERSION_MAJOR)
|
|
PANGO_INSTALL_STAGING = YES
|
|
PANGO_LICENSE = LGPL-2.0+
|
|
PANGO_LICENSE_FILES = COPYING
|
|
|
|
PANGO_CONF_OPTS = -Duse_fontconfig=true
|
|
HOST_PANGO_CONF_OPTS = -Duse_fontconfig=true -Dintrospection=false
|
|
|
|
PANGO_DEPENDENCIES = \
|
|
$(TARGET_NLS_DEPENDENCIES) \
|
|
host-pkgconf \
|
|
libglib2 \
|
|
libfribidi \
|
|
cairo \
|
|
harfbuzz \
|
|
fontconfig \
|
|
freetype
|
|
HOST_PANGO_DEPENDENCIES = \
|
|
host-pkgconf \
|
|
host-libglib2 \
|
|
host-libfribidi \
|
|
host-cairo \
|
|
host-harfbuzz \
|
|
host-fontconfig \
|
|
host-freetype
|
|
|
|
ifeq ($(BR2_PACKAGE_GOBJECT_INTROSPECTION),y)
|
|
PANGO_CONF_OPTS += -Dintrospection=true
|
|
PANGO_DEPENDENCIES += gobject-introspection
|
|
else
|
|
PANGO_CONF_OPTS += -Dintrospection=false
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_XORG7),y)
|
|
PANGO_DEPENDENCIES += xlib_libX11
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_XLIB_LIBXFT)$(BR2_PACKAGE_XLIB_LIBXRENDER),yy)
|
|
PANGO_DEPENDENCIES += xlib_libXft xlib_libXrender
|
|
endif
|
|
|
|
$(eval $(meson-package))
|
|
$(eval $(host-meson-package))
|