8a698b7313
This patch bumps cups to version 2.2.11 so that an upstream fix will apply cleanly. The upstream fix corrects a build failure when GZIP is set in the build environment, as it is for buildroot's reproducible builds, as shown below: gzip: /bin/gzip.gz: Permission denied gzip: /bin/gzip.gz: Permission denied Makefile:114: recipe for target 'install-data' failed The patch will be included upstream in version 2.2.12. Fixes: - http://autobuild.buildroot.net/results/c4e0f6a3c79c9cb083a08f811b7d4838efef50f9/ Signed-off-by: Sam Bobroff <sbobroff@linux.ibm.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
86 lines
2.0 KiB
Makefile
86 lines
2.0 KiB
Makefile
################################################################################
|
|
#
|
|
# cups
|
|
#
|
|
################################################################################
|
|
|
|
CUPS_VERSION = 2.2.11
|
|
CUPS_SOURCE = cups-$(CUPS_VERSION)-source.tar.gz
|
|
CUPS_SITE = https://github.com/apple/cups/releases/download/v$(CUPS_VERSION)
|
|
CUPS_LICENSE = GPL-2.0, LGPL-2.0
|
|
CUPS_LICENSE_FILES = LICENSE.txt
|
|
CUPS_INSTALL_STAGING = YES
|
|
CUPS_INSTALL_STAGING_OPTS = DESTDIR=$(STAGING_DIR) DSTROOT=$(STAGING_DIR) install
|
|
CUPS_INSTALL_TARGET_OPTS = DESTDIR=$(TARGET_DIR) DSTROOT=$(TARGET_DIR) install
|
|
|
|
# Using autoconf, not autoheader, so we cannot use AUTORECONF = YES.
|
|
define CUPS_RUN_AUTOCONF
|
|
cd $(@D); $(HOST_DIR)/bin/autoconf -f
|
|
endef
|
|
CUPS_PRE_CONFIGURE_HOOKS += CUPS_RUN_AUTOCONF
|
|
|
|
CUPS_CONF_OPTS = \
|
|
--without-perl \
|
|
--without-java \
|
|
--without-php \
|
|
--disable-gssapi \
|
|
--disable-pam \
|
|
--libdir=/usr/lib
|
|
CUPS_CONFIG_SCRIPTS = cups-config
|
|
CUPS_DEPENDENCIES = \
|
|
host-autoconf \
|
|
host-pkgconf \
|
|
$(if $(BR2_PACKAGE_ZLIB),zlib)
|
|
|
|
ifeq ($(BR2_PACKAGE_SYSTEMD),y)
|
|
CUPS_CONF_OPTS += --with-systemd=/usr/lib/systemd/system \
|
|
--enable-systemd
|
|
CUPS_DEPENDENCIES += systemd
|
|
else
|
|
CUPS_CONF_OPTS += --disable-systemd
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_DBUS),y)
|
|
CUPS_CONF_OPTS += --enable-dbus
|
|
CUPS_DEPENDENCIES += dbus
|
|
else
|
|
CUPS_CONF_OPTS += --disable-dbus
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_GNUTLS),y)
|
|
CUPS_CONF_OPTS += --enable-gnutls
|
|
CUPS_DEPENDENCIES += gnutls
|
|
else
|
|
CUPS_CONF_OPTS += --disable-gnutls
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_PYTHON),y)
|
|
CUPS_CONF_OPTS += --with-python
|
|
CUPS_DEPENDENCIES += python
|
|
else
|
|
CUPS_CONF_OPTS += --without-python
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBUSB),y)
|
|
CUPS_CONF_OPTS += --enable-libusb
|
|
CUPS_DEPENDENCIES += libusb
|
|
else
|
|
CUPS_CONF_OPTS += --disable-libusb
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBPAPER),y)
|
|
CUPS_CONF_OPTS += --enable-libpaper
|
|
CUPS_DEPENDENCIES += libpaper
|
|
else
|
|
CUPS_CONF_OPTS += --disable-libpaper
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_AVAHI),y)
|
|
CUPS_DEPENDENCIES += avahi
|
|
CUPS_CONF_OPTS += --enable-avahi
|
|
else
|
|
CUPS_CONF_OPTS += --disable-avahi
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|