939e714393
harfbuzz is an optional dependency (enabled by default) since version 2.5.3 and https://git.savannah.gnu.org/cgit/freetype/freetype2.git/commit/?id=86026a47b345a8c254dd5e6be77bf116737cdafb Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
66 lines
1.8 KiB
Makefile
66 lines
1.8 KiB
Makefile
################################################################################
|
|
#
|
|
# freetype
|
|
#
|
|
################################################################################
|
|
|
|
FREETYPE_VERSION = 2.10.2
|
|
FREETYPE_SOURCE = freetype-$(FREETYPE_VERSION).tar.xz
|
|
FREETYPE_SITE = http://download.savannah.gnu.org/releases/freetype
|
|
FREETYPE_INSTALL_STAGING = YES
|
|
FREETYPE_MAKE_OPTS = CCexe="$(HOSTCC)"
|
|
FREETYPE_LICENSE = Dual FTL/GPL-2.0+
|
|
FREETYPE_LICENSE_FILES = docs/LICENSE.TXT docs/FTL.TXT docs/GPLv2.TXT
|
|
FREETYPE_DEPENDENCIES = host-pkgconf
|
|
FREETYPE_CONFIG_SCRIPTS = freetype-config
|
|
|
|
HOST_FREETYPE_DEPENDENCIES = host-pkgconf
|
|
HOST_FREETYPE_CONF_OPTS = \
|
|
--without-bzip2 \
|
|
--without-harfbuzz \
|
|
--without-png \
|
|
--without-zlib
|
|
|
|
# since 2.9.1 needed for freetype-config install
|
|
FREETYPE_CONF_OPTS += --enable-freetype-config
|
|
HOST_FREETYPE_CONF_OPTS += --enable-freetype-config
|
|
|
|
ifeq ($(BR2_PACKAGE_ZLIB),y)
|
|
FREETYPE_DEPENDENCIES += zlib
|
|
FREETYPE_CONF_OPTS += --with-zlib
|
|
else
|
|
FREETYPE_CONF_OPTS += --without-zlib
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_BZIP2),y)
|
|
FREETYPE_DEPENDENCIES += bzip2
|
|
FREETYPE_CONF_OPTS += --with-bzip2
|
|
else
|
|
FREETYPE_CONF_OPTS += --without-bzip2
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_HARFBUZZ),y)
|
|
FREETYPE_DEPENDENCIES += harfbuzz
|
|
FREETYPE_CONF_OPTS += --with-harbuzz
|
|
else
|
|
FREETYPE_CONF_OPTS += --without-harfbuzz
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBPNG),y)
|
|
FREETYPE_DEPENDENCIES += libpng
|
|
FREETYPE_CONF_OPTS += --with-png
|
|
else
|
|
FREETYPE_CONF_OPTS += --without-png
|
|
endif
|
|
|
|
# Extra fixing since includedir and libdir are expanded from configure values
|
|
define FREETYPE_FIX_CONFIG_FILE
|
|
$(SED) 's:^includedir=.*:includedir="$${prefix}/include":' \
|
|
-e 's:^libdir=.*:libdir="$${exec_prefix}/lib":' \
|
|
$(STAGING_DIR)/usr/bin/freetype-config
|
|
endef
|
|
FREETYPE_POST_INSTALL_STAGING_HOOKS += FREETYPE_FIX_CONFIG_FILE
|
|
|
|
$(eval $(autotools-package))
|
|
$(eval $(host-autotools-package))
|