3bdbe9abb9
The autobuilders are falling over building lcdproc, with failures like the following. http://autobuild.buildroot.net/results/622b7da10be751c725ba25eb40102269790b4b03/build-end.log As Thomas Petazzoni has pointed out, the compile command lines incorrectly contain host header and library search paths, such as the following. -I/home/peko/scratch/host/usr/include/freetype2 -L/home/peko/scratch/host/usr/lib -lfreetype This patch changes the lcdproc package to pass the freetype installation prefixes on the configure command line. Signed-off-by: Simon Dawson <spdawson@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
24 lines
704 B
Makefile
24 lines
704 B
Makefile
#############################################################
|
|
#
|
|
# lcdproc
|
|
#
|
|
#############################################################
|
|
LCDPROC_VERSION = 0.5.6
|
|
LCDPROC_SOURCE = lcdproc-$(LCDPROC_VERSION).tar.gz
|
|
LCDPROC_SITE = http://downloads.sourceforge.net/project/lcdproc/lcdproc/$(LCDPROC_VERSION)
|
|
LCDPROC_LICENSE = GPLv2+
|
|
LCDPROC_LICENSE_FILES = COPYING
|
|
LCDPROC_MAKE = $(MAKE1)
|
|
|
|
LCDPROC_CONF_OPT = --enable-drivers=$(BR2_PACKAGE_LCDPROC_DRIVERS) \
|
|
--with-ft-prefix="$(STAGING_DIR)/usr" \
|
|
--with-ft-exec-prefix="$(STAGING_DIR)/usr"
|
|
|
|
ifeq ($(BR2_PACKAGE_LCDPROC_MENUS),y)
|
|
LCDPROC_CONF_OPT += --enable-lcdproc-menus
|
|
endif
|
|
|
|
LCDPROC_DEPENDENCIES = freetype ncurses zlib
|
|
|
|
$(eval $(autotools-package))
|