c19cca0452
Now that we document _CPE_ID_VALID, and that it shall be used instead of setting a default value to one of the other _CPE_ID_* variables, change all of the existing packages to use it, to avoid any error when we later extend check-package to validate the sanity ofthe _CPE_ID_* variables. Mechanical change done within the reference container, running the new check in check-package, to report the CPE_ID errors: $ make check-package 2>/dev/null \ |awk '{ split($(1), a, ":"); fname = a[1] split($(2), a, "'\''"); val = a[2] new_var = $(8); gsub("_CPE_ID_.*", "_CPE_ID_VALID", new_var) printf("%s %s %s %s\n", fname, $(8), val, new_var) }' \ |while read fname var val new_var; do sed -r -i -e "s/${var}[[:space:]]*=[[:space:]]*${val}/${new_var} = YES/" "${fname}" done $ git diff -I'CPE_ID_(VENDOR|VALID)' [empty] Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr> Cc: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
96 lines
2.6 KiB
Makefile
96 lines
2.6 KiB
Makefile
################################################################################
|
|
#
|
|
# sane-backends
|
|
#
|
|
################################################################################
|
|
|
|
SANE_BACKENDS_VERSION = 1.1.1
|
|
SANE_BACKENDS_SITE = \
|
|
https://gitlab.com/sane-project/backends/uploads/7d30fab4e115029d91027b6a58d64b43
|
|
SANE_BACKENDS_CONFIG_SCRIPTS = sane-config
|
|
SANE_BACKENDS_LICENSE = GPL-2.0+
|
|
SANE_BACKENDS_LICENSE_FILES = COPYING
|
|
SANE_BACKENDS_CPE_ID_VALID = YES
|
|
SANE_BACKENDS_INSTALL_STAGING = YES
|
|
|
|
SANE_BACKENDS_CONF_OPTS = \
|
|
$(if $(BR2_TOOLCHAIN_HAS_THREADS),--enable-pthread,--disable-pthread)
|
|
|
|
ifeq ($(BR2_INIT_SYSTEMD),y)
|
|
SANE_BACKENDS_CONF_OPTS += --with-systemd
|
|
SANE_BACKENDS_DEPENDENCIES += systemd
|
|
else
|
|
SANE_BACKENDS_CONF_OPTS += --without-systemd
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBUSB),y)
|
|
SANE_BACKENDS_DEPENDENCIES += libusb
|
|
SANE_BACKENDS_CONF_OPTS += --with-usb
|
|
else
|
|
SANE_BACKENDS_CONF_OPTS += --without-usb
|
|
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_OPTS += --with-avahi
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_NETSNMP),y)
|
|
SANE_BACKENDS_CONF_ENV += ac_cv_path_SNMP_CONFIG_PATH=$(STAGING_DIR)/usr/bin/net-snmp-config
|
|
SANE_BACKENDS_DEPENDENCIES += netsnmp
|
|
else
|
|
SANE_BACKENDS_CONF_OPTS += --without-snmp
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBCURL),y)
|
|
SANE_BACKENDS_DEPENDENCIES += libcurl
|
|
SANE_BACKENDS_CONF_OPTS += --with-libcurl
|
|
else
|
|
SANE_BACKENDS_CONF_OPTS += --without-libcurl
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_POPPLER)$(BR2_PACKAGE_CAIRO)$(BR2_PACKAGE_LIBGLIB2),yyy)
|
|
SANE_BACKENDS_DEPENDENCIES += poppler libglib2
|
|
SANE_BACKENDS_CONF_OPTS += --with-poppler-glib
|
|
else
|
|
SANE_BACKENDS_CONF_OPTS += --without-poppler-glib
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBXML2),y)
|
|
SANE_BACKENDS_DEPENDENCIES += libxml2
|
|
SANE_BACKENDS_CONF_OPTS += --with-usb-record-replay
|
|
else
|
|
SANE_BACKENDS_CONF_OPTS += --without-usb-record-replay
|
|
endif
|
|
|
|
define SANE_BACKENDS_DISABLE_DOCS
|
|
$(SED) 's/ doc//' $(@D)/Makefile
|
|
endef
|
|
|
|
SANE_BACKENDS_POST_CONFIGURE_HOOKS += SANE_BACKENDS_DISABLE_DOCS
|
|
|
|
define SANE_BACKENDS_USERS
|
|
saned -1 saned -1 * /etc/sane.d - - Saned User
|
|
endef
|
|
|
|
define SANE_BACKENDS_INSTALL_INIT_SYSTEMD
|
|
$(INSTALL) -m 0644 -D package/sane-backends/saned.socket \
|
|
$(TARGET_DIR)/usr/lib/systemd/system/saned.socket
|
|
$(INSTALL) -m 0644 -D package/sane-backends/saned@.service \
|
|
$(TARGET_DIR)/usr/lib/systemd/system/saned@.service
|
|
endef
|
|
|
|
$(eval $(autotools-package))
|