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>
78 lines
2.1 KiB
Makefile
78 lines
2.1 KiB
Makefile
################################################################################
|
|
#
|
|
# lftp
|
|
#
|
|
################################################################################
|
|
|
|
LFTP_VERSION = 4.9.2
|
|
LFTP_SOURCE = lftp-$(LFTP_VERSION).tar.xz
|
|
LFTP_SITE = http://lftp.yar.ru/ftp
|
|
LFTP_LICENSE = GPL-3.0+
|
|
LFTP_LICENSE_FILES = COPYING
|
|
LFTP_CPE_ID_VALID = YES
|
|
LFTP_DEPENDENCIES = readline zlib host-pkgconf
|
|
|
|
# Help lftp finding readline and zlib
|
|
LFTP_CONF_OPTS = \
|
|
--with-readline=$(STAGING_DIR)/usr \
|
|
--with-readline-lib="`$(PKG_CONFIG_HOST_BINARY) --libs readline`" \
|
|
--with-zlib=$(STAGING_DIR)/usr
|
|
|
|
ifneq ($(BR2_STATIC_LIBS),y)
|
|
LFTP_CONF_OPTS += --with-modules
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_EXPAT)$(BR2_PACKAGE_LFTP_PROTO_HTTP),yy)
|
|
LFTP_DEPENDENCIES += expat
|
|
LFTP_CONF_OPTS += --with-expat=$(STAGING_DIR)/usr
|
|
else
|
|
LFTP_CONF_OPTS += --without-expat
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_GNUTLS),y)
|
|
LFTP_DEPENDENCIES += gnutls
|
|
LFTP_CONF_OPTS += --with-gnutls
|
|
else
|
|
LFTP_CONF_OPTS += --without-gnutls
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_OPENSSL),y)
|
|
LFTP_DEPENDENCIES += openssl
|
|
LFTP_CONF_OPTS += --with-openssl
|
|
else
|
|
LFTP_CONF_OPTS += --without-openssl
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBIDN2),y)
|
|
LFTP_DEPENDENCIES += libidn2
|
|
LFTP_CONF_OPTS += --with-libidn2=$(STAGING_DIR)/usr
|
|
else
|
|
LFTP_CONF_OPTS += --without-libidn2
|
|
endif
|
|
|
|
# Remove /usr/share/lftp
|
|
define LFTP_REMOVE_DATA
|
|
$(RM) -fr $(TARGET_DIR)/usr/share/lftp
|
|
endef
|
|
|
|
LFTP_POST_INSTALL_TARGET_HOOKS += LFTP_REMOVE_DATA
|
|
|
|
# Optional commands and protocols
|
|
LFTP_MODULES_TO_REMOVE-$(BR2_PACKAGE_LFTP_CMD_MIRROR) += cmd-mirror.so
|
|
LFTP_MODULES_TO_REMOVE-$(BR2_PACKAGE_LFTP_CMD_SLEEP) += cmd-sleep.so
|
|
LFTP_MODULES_TO_REMOVE-$(BR2_PACKAGE_LFTP_CMD_TORRENT) += cmd-torrent.so
|
|
LFTP_MODULES_TO_REMOVE-$(BR2_PACKAGE_LFTP_PROTO_FISH) += proto-fish.so
|
|
LFTP_MODULES_TO_REMOVE-$(BR2_PACKAGE_LFTP_PROTO_FTP) += proto-ftp.so
|
|
LFTP_MODULES_TO_REMOVE-$(BR2_PACKAGE_LFTP_PROTO_HTTP) += proto-http.so
|
|
LFTP_MODULES_TO_REMOVE-$(BR2_PACKAGE_LFTP_PROTO_SFTP) += proto-sftp.so
|
|
|
|
define LFTP_REMOVE_MODULES
|
|
for f in $(LFTP_MODULES_TO_REMOVE-) ; do \
|
|
$(RM) -f $(TARGET_DIR)/usr/lib/lftp/$(LFTP_VERSION)/$$f ; \
|
|
done
|
|
endef
|
|
|
|
LFTP_POST_INSTALL_TARGET_HOOKS += LFTP_REMOVE_MODULES
|
|
|
|
$(eval $(autotools-package))
|