822a757456
A lot of packages ignored BR2_ENABLE_DEBUG. This patch simplifies the handling of this option by adding the corresponding configure option to the global Makefile for target packages. For host packages --disable-debug is added to the global Makefile. Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
163 lines
4.3 KiB
Makefile
163 lines
4.3 KiB
Makefile
################################################################################
|
|
#
|
|
# directfb
|
|
#
|
|
################################################################################
|
|
|
|
DIRECTFB_VERSION_MAJOR = 1.6
|
|
DIRECTFB_VERSION = $(DIRECTFB_VERSION_MAJOR).3
|
|
DIRECTFB_SITE = http://www.directfb.org/downloads/Core/DirectFB-$(DIRECTFB_VERSION_MAJOR)
|
|
DIRECTFB_SOURCE = DirectFB-$(DIRECTFB_VERSION).tar.gz
|
|
DIRECTFB_LICENSE = LGPLv2.1+
|
|
DIRECTFB_LICENSE_FILES = COPYING
|
|
DIRECTFB_INSTALL_STAGING = YES
|
|
DIRECTFB_AUTORECONF = YES
|
|
|
|
DIRECTFB_CONF_OPTS = \
|
|
--disable-explicit-deps \
|
|
--enable-zlib \
|
|
--enable-freetype \
|
|
--enable-fbdev \
|
|
--disable-sysfs \
|
|
--disable-sdl \
|
|
--disable-vnc \
|
|
--disable-osx \
|
|
--disable-video4linux \
|
|
--disable-video4linux2 \
|
|
--without-tools
|
|
|
|
ifeq ($(BR2_PREFER_STATIC_LIB),y)
|
|
DIRECTFB_CONF_OPTS += --disable-dynload
|
|
endif
|
|
|
|
DIRECTFB_CONFIG_SCRIPTS = directfb-config
|
|
|
|
DIRECTFB_DEPENDENCIES = freetype zlib
|
|
|
|
ifeq ($(BR2_PACKAGE_DIRECTFB_MULTI),y)
|
|
DIRECTFB_CONF_OPTS += --enable-multi --enable-fusion
|
|
DIRECTFB_DEPENDENCIES += linux-fusion
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_DIRECTFB_DEBUG),y)
|
|
DIRECTFB_CONF_OPTS += --enable-debug
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_DIRECTFB_TRACE),y)
|
|
DIRECTFB_CONF_OPTS += --enable-trace
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_XSERVER),y)
|
|
DIRECTFB_CONF_OPTS += --enable-x11
|
|
else
|
|
DIRECTFB_CONF_OPTS += --disable-x11
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_DIRECTFB_UNIQUE),y)
|
|
DIRECTFB_CONF_OPTS += --enable-unique
|
|
else
|
|
DIRECTFB_CONF_OPTS += --disable-unique
|
|
endif
|
|
|
|
DIRECTFB_GFX = \
|
|
$(if $(BR2_PACKAGE_DIRECTFB_ATI128),ati128) \
|
|
$(if $(BR2_PACKAGE_DIRECTFB_CLE266),cle266) \
|
|
$(if $(BR2_PACKAGE_DIRECTFB_CYBER5K),cyber5k) \
|
|
$(if $(BR2_PACKAGE_DIRECTFB_MATROX),matrox) \
|
|
$(if $(BR2_PACKAGE_DIRECTFB_PXA3XX),pxa3xx) \
|
|
$(if $(BR2_PACKAGE_DIRECTFB_UNICHROME),unichrome) \
|
|
$(if $(BR2_PACKAGE_DIRECTFB_I830),i830) \
|
|
$(if $(BR2_PACKAGE_DIRECTFB_EP9X),ep9x)
|
|
|
|
ifeq ($(strip $(DIRECTFB_GFX)),)
|
|
DIRECTFB_CONF_OPTS += --with-gfxdrivers=none
|
|
else
|
|
DIRECTFB_CONF_OPTS += \
|
|
--with-gfxdrivers=$(subst $(space),$(comma),$(strip $(DIRECTFB_GFX)))
|
|
endif
|
|
|
|
DIRECTFB_INPUT = \
|
|
$(if $(BR2_PACKAGE_DIRECTFB_LINUXINPUT),linuxinput) \
|
|
$(if $(BR2_PACKAGE_DIRECTFB_KEYBOARD),keyboard) \
|
|
$(if $(BR2_PACKAGE_DIRECTFB_PS2MOUSE),ps2mouse) \
|
|
$(if $(BR2_PACKAGE_DIRECTFB_SERIALMOUSE),serialmouse) \
|
|
$(if $(BR2_PACKAGE_DIRECTFB_TSLIB),tslib)
|
|
|
|
ifeq ($(BR2_PACKAGE_DIRECTFB_TSLIB),y)
|
|
DIRECTFB_DEPENDENCIES += tslib
|
|
endif
|
|
|
|
ifeq ($(strip $(DIRECTFB_INPUT)),)
|
|
DIRECTFB_CONF_OPTS += --with-inputdrivers=none
|
|
else
|
|
DIRECTFB_CONF_OPTS += \
|
|
--with-inputdrivers=$(subst $(space),$(comma),$(strip $(DIRECTFB_INPUT)))
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_DIRECTFB_GIF),y)
|
|
DIRECTFB_CONF_OPTS += --enable-gif
|
|
else
|
|
DIRECTFB_CONF_OPTS += --disable-gif
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_DIRECTFB_PNG),y)
|
|
DIRECTFB_CONF_OPTS += --enable-png
|
|
DIRECTFB_DEPENDENCIES += libpng
|
|
DIRECTFB_CONF_ENV += ac_cv_path_LIBPNG_CONFIG=$(STAGING_DIR)/usr/bin/libpng-config
|
|
else
|
|
DIRECTFB_CONF_OPTS += --disable-png
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_DIRECTFB_JPEG),y)
|
|
DIRECTFB_CONF_OPTS += --enable-jpeg
|
|
DIRECTFB_DEPENDENCIES += jpeg
|
|
else
|
|
DIRECTFB_CONF_OPTS += --disable-jpeg
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_DIRECTFB_SVG),y)
|
|
DIRECTFB_CONF_OPTS += --enable-svg
|
|
# needs some help to find cairo includes
|
|
DIRECTFB_CONF_ENV += CPPFLAGS="$(TARGET_CPPFLAGS) -I$(STAGING_DIR)/usr/include/cairo"
|
|
DIRECTFB_DEPENDENCIES += libsvg-cairo
|
|
else
|
|
DIRECTFB_CONF_OPTS += --disable-svg
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_DIRECTFB_IMLIB2),y)
|
|
DIRECTFB_CONF_OPTS += --enable-imlib2
|
|
DIRECTFB_DEPENDENCIES += imlib2
|
|
DIRECTFB_CONF_ENV += ac_cv_path_IMLIB2_CONFIG=$(STAGING_DIR)/usr/bin/imlib2-config
|
|
else
|
|
DIRECTFB_CONF_OPTS += --disable-imlib2
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_DIRECTFB_DITHER_RGB16),y)
|
|
DIRECTFB_CONF_OPTS += --with-dither-rgb16=advanced
|
|
else
|
|
DIRECTFB_CONF_OPTS += --with-dither-rgb16=none
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_DIRECTFB_TESTS),y)
|
|
DIRECTFB_CONF_OPTS += --with-tests
|
|
endif
|
|
|
|
HOST_DIRECTFB_DEPENDENCIES = host-pkgconf host-libpng
|
|
HOST_DIRECTFB_CONF_OPTS = \
|
|
--disable-multi \
|
|
--enable-png \
|
|
--with-gfxdrivers=none \
|
|
--with-inputdrivers=none
|
|
|
|
HOST_DIRECTFB_BUILD_CMDS = \
|
|
$(MAKE) -C $(@D)/tools directfb-csource
|
|
|
|
HOST_DIRECTFB_INSTALL_CMDS = \
|
|
$(INSTALL) -m 0755 $(@D)/tools/directfb-csource $(HOST_DIR)/usr/bin
|
|
|
|
$(eval $(autotools-package))
|
|
$(eval $(host-autotools-package))
|
|
|
|
# directfb-csource for the host
|
|
DIRECTFB_HOST_BINARY = $(HOST_DIR)/usr/bin/directfb-csource
|