230c9f567f
The content of the saned.socket and saned@.service files is based on the instructions of the sane-backends manual. Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com> Reviewed-by: "Maxime Hadjinlian" <maxime.hadjinlian@gmail.com> Tested-by: "Maxime Hadjinlian" <maxime.hadjinlian@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
79 lines
2.3 KiB
Makefile
79 lines
2.3 KiB
Makefile
################################################################################
|
|
#
|
|
# sane-backends
|
|
#
|
|
################################################################################
|
|
|
|
SANE_BACKENDS_VERSION = 1.0.25
|
|
SANE_BACKENDS_SITE = https://alioth.debian.org/frs/download.php/file/4146
|
|
SANE_BACKENDS_CONFIG_SCRIPTS = sane-config
|
|
SANE_BACKENDS_LICENSE = GPLv2+
|
|
SANE_BACKENDS_LICENSE_FILES = COPYING
|
|
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 += --enable-libusb_1_0
|
|
else
|
|
SANE_BACKENDS_CONF_OPTS += --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_OPTS += --enable-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
|
|
|
|
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
|
|
mkdir -p $(TARGET_DIR)/etc/systemd/system/socket.target.wants
|
|
ln -sf ../../../../usr/lib/systemd/system/saned.socket \
|
|
$(TARGET_DIR)/etc/systemd/system/socket.target.wants/saned.socket
|
|
$(INSTALL) -m 0644 -D package/sane-backends/saned@.service \
|
|
$(TARGET_DIR)/usr/lib/systemd/system/saned@.service
|
|
mkdir -p $(TARGET_DIR)/etc/systemd/system/multi-user.target.wants
|
|
ln -sf ../../../../usr/lib/systemd/system/saned@.service \
|
|
$(TARGET_DIR)/etc/systemd/system/multi-user.target.wants/saned@.service
|
|
endef
|
|
|
|
$(eval $(autotools-package))
|