e1502ebc0c
Also remove the redundant $(call ...). This is a purely mechanical change, performed with find package linux toolchain boot -name \*.mk | \ xargs sed -i -e 's/$(eval $(call GENTARGETS))/$(eval $(generic-package))/' \ -e 's/$(eval $(call AUTOTARGETS))/$(eval $(autotools-package))/' \ -e 's/$(eval $(call CMAKETARGETS))/$(eval $(cmake-package))/' Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
41 lines
1.0 KiB
Makefile
41 lines
1.0 KiB
Makefile
#############################################################
|
|
#
|
|
# sane-backends
|
|
#
|
|
#############################################################
|
|
SANE_BACKENDS_VERSION = 1.0.22
|
|
SANE_BACKENDS_SOURCE = sane-backends-$(SANE_BACKENDS_VERSION).tar.gz
|
|
SANE_BACKENDS_SITE = ftp://ftp2.sane-project.org/pub/sane/sane-backends-$(SANE_BACKENDS_VERSION)
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBUSB),y)
|
|
SANE_BACKENDS_DEPENDENCIES += libusb
|
|
SANE_BACKENDS_CONF_OPT += --enable-libusb_1_0
|
|
else
|
|
SANE_BACKENDS_CONF_OPT += --disable-libusb
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_JPEG),y)
|
|
SANE_BACKENDS_DEPENDENCIES += jpeg
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_TIFF),y)
|
|
SANE_BACKENDS_DEPENDENCIES += tiff
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBV4L),y)
|
|
SANE_BACKENDS_DEPENDENCIES += libv4l
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_AVAHI)$(BR2_PACKAGE_DBUS)$(BR2_PACKAGE_LIBGLIB2),yyy)
|
|
SANE_BACKENDS_DEPENDENCIES += avahi
|
|
SANE_BACKENDS_CONF_OPT += --enable-avahi
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_NETSNMP),y)
|
|
SANE_BACKENDS_DEPENDENCIES += netsnmp
|
|
else
|
|
SANE_BACKENDS_CONF_OPT += --without-snmp
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|