e217efeeb2
freetype-config from the host system may be used when installed. Make sure that the one from STAGING_DIR is used. checking if freetype support has been enabled... yes checking for freetype-config... /usr/bin/freetype-config checking for FreeType -- version >= 7.0.1... cross compiling; assuming OK... yes Fixes: http://autobuild.buildroot.net/results/c7c/c7c52cd56b985fd73434d5997e9a6ab3f7d7e71e Signed-off-by: Romain Naour <romain.naour@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
31 lines
840 B
Makefile
31 lines
840 B
Makefile
################################################################################
|
|
#
|
|
# lcdproc
|
|
#
|
|
################################################################################
|
|
|
|
LCDPROC_VERSION = 0.5.7
|
|
LCDPROC_SITE = http://downloads.sourceforge.net/project/lcdproc/lcdproc/$(LCDPROC_VERSION)
|
|
LCDPROC_LICENSE = GPL-2.0+
|
|
LCDPROC_LICENSE_FILES = COPYING
|
|
LCDPROC_MAKE = $(MAKE1)
|
|
|
|
LCDPROC_CONF_OPTS = --enable-drivers=$(BR2_PACKAGE_LCDPROC_DRIVERS)
|
|
|
|
ifeq ($(BR2_PACKAGE_LCDPROC_MENUS),y)
|
|
LCDPROC_CONF_OPTS += --enable-lcdproc-menus
|
|
endif
|
|
|
|
LCDPROC_DEPENDENCIES = freetype ncurses zlib
|
|
|
|
LCDPROC_CONF_ENV += ac_cv_path_FT2_CONFIG=$(STAGING_DIR)/usr/bin/freetype-config
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBPNG),y)
|
|
LCDPROC_DEPENDENCIES += libpng
|
|
LCDPROC_CONF_OPTS += --enable-libpng
|
|
else
|
|
LCDPROC_CONF_OPTS += --disable-libpng
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|