2021-08-01 00:27:52 +02:00
|
|
|
################################################################################
|
|
|
|
#
|
|
|
|
# system-config-printer
|
|
|
|
#
|
|
|
|
################################################################################
|
|
|
|
|
|
|
|
SYSTEM_CONFIG_PRINTER_VERSION = 1.5.15
|
|
|
|
SYSTEM_CONFIG_PRINTER_SOURCE = system-config-printer-$(SYSTEM_CONFIG_PRINTER_VERSION).tar.xz
|
|
|
|
SYSTEM_CONFIG_PRINTER_SITE = https://github.com/OpenPrinting/system-config-printer/releases/download/v$(SYSTEM_CONFIG_PRINTER_VERSION)
|
|
|
|
SYSTEM_CONFIG_PRINTER_LICENSE = GPL-2.0+
|
|
|
|
SYSTEM_CONFIG_PRINTER_LICENSE_FILES = COPYING
|
2021-08-04 01:21:10 +02:00
|
|
|
SYSTEM_CONFIG_PRINTER_DEPENDENCIES = cups host-desktop-file-utils host-intltool host-pkgconf
|
2021-08-01 00:27:52 +02:00
|
|
|
|
|
|
|
# 0001-Add-option-to-disable-xmlto-manual-generation.patch
|
|
|
|
# 0002-configure-accept-non-system-cups-config.patch
|
|
|
|
SYSTEM_CONFIG_PRINTER_AUTORECONF = YES
|
|
|
|
|
|
|
|
SYSTEM_CONFIG_PRINTER_CONF_OPTS = --with-cups-config=$(STAGING_DIR)/usr/bin/cups-config
|
|
|
|
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBGLIB2),y)
|
|
|
|
SYSTEM_CONFIG_PRINTER_DEPENDENCIES += libglib2
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBGLIB2)$(BR2_PACKAGE_LIBUSB)$(BR2_PACKAGE_HAS_UDEV),yyy)
|
|
|
|
SYSTEM_CONFIG_PRINTER_CONF_OPTS += --with-udev-rules=yes
|
|
|
|
SYSTEM_CONFIG_PRINTER_DEPENDENCIES += libusb udev
|
|
|
|
else
|
|
|
|
SYSTEM_CONFIG_PRINTER_CONF_OPTS += --with-udev-rules=no
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(BR2_PACKAGE_SYSTEMD),y)
|
|
|
|
SYSTEM_CONFIG_PRINTER_CONF_OPTS += --with-systemdsystemunitdir=/usr/lib/systemd/system
|
|
|
|
SYSTEM_CONFIG_PRINTER_DEPENDENCIES += systemd
|
|
|
|
else
|
|
|
|
SYSTEM_CONFIG_PRINTER_CONF_OPTS += --with-systemdsystemunitdir=no
|
|
|
|
endif
|
|
|
|
|
|
|
|
$(eval $(autotools-package))
|