aaffd209fa
To be consistent with the recent change of FOO_MAKE_OPT into FOO_MAKE_OPTS, make the same change for FOO_CONF_OPT. Sed command used: find * -type f | xargs sed -i 's#_CONF_OPT\>#&S#g' Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
50 lines
1.1 KiB
Makefile
50 lines
1.1 KiB
Makefile
################################################################################
|
|
#
|
|
# links
|
|
#
|
|
################################################################################
|
|
|
|
LINKS_VERSION = 2.7
|
|
LINKS_SITE = http://links.twibright.com/download
|
|
LINKS_DEPENDENCIES = host-pkgconf
|
|
LINKS_LICENSE = GPLv2+
|
|
LINKS_LICENSE_FILES = COPYING
|
|
|
|
ifeq ($(BR2_PACKAGE_LINKS_GRAPHICS),y)
|
|
LINKS_CONF_OPTS += --enable-graphics
|
|
LINKS_DEPENDENCIES += libpng
|
|
ifeq ($(BR2_PACKAGE_XLIB_LIBXT),y)
|
|
LINKS_CONF_OPTS += --with-x
|
|
LINKS_DEPENDENCIES += xlib_libXt
|
|
else
|
|
LINKS_CONF_OPTS += --without-x
|
|
endif
|
|
ifeq ($(BR2_PACKAGE_DIRECTFB),y)
|
|
LINKS_CONF_ENV = ac_cv_path_DIRECTFB_CONFIG=$(STAGING_DIR)/usr/bin/directfb-config
|
|
LINKS_CONF_OPTS += --with-directfb
|
|
LINKS_DEPENDENCIES += directfb
|
|
else
|
|
LINKS_CONF_OPTS += --without-directfb
|
|
endif
|
|
ifeq ($(BR2_PACKAGE_JPEG),y)
|
|
LINKS_DEPENDENCIES += jpeg
|
|
endif
|
|
ifeq ($(BR2_PACKAGE_TIFF),y)
|
|
LINKS_DEPENDENCIES += tiff
|
|
endif
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_BZIP2),y)
|
|
LINKS_DEPENDENCIES += bzip2
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_OPENSSL),y)
|
|
LINKS_DEPENDENCIES += openssl
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_ZLIB),y)
|
|
LINKS_DEPENDENCIES += zlib
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|