b9db38d370
FOO_CPE_ID_VALID really ought to be an internal implementaion detail. Packages that really want to trigger their CPE defintitions really should set one of the actual variables to a meaningful value. There are two CPE-related variables that we could chose to set to replace FOO_CPE_ID_VALID: FOO_CPE_ID_VENDOR and FOO_CPE_ID_PRODUCT. Between those two, _VENDOR more often diverges from the default than _PRODUCT does, so that's what we use. ---8<------8<------8<------8<------8<--- #!/bin/bash # Replace FOO_CPE_ID_VALID = YES with FOO_CPE_ID_VENDOR = foo_project for i in $(git grep -l -E '[^)]_CPE_ID_VALID = YES' package support); do pkg="$(basename "${i%/*}")" sed -r -i -e "s/_CPE_ID_VALID = YES/_CPE_ID_VENDOR = ${pkg}_project/" "${i}" done ---8<------8<------8<------8<------8<--- Reported-by: Peter Korsgaard <peter@korsgaard.com> Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr> Cc: Thomas Petazzoni <thomas.petazzoni@bootlin.com> Cc: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Cc: Matthew Weber <matthew.weber@rockwellcollins.com> Cc: Fabrice Fontaine <fontaine.fabrice@gmail.com> [Peter: update cpe-test comment to reflect pkg3 change] Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
78 lines
2.2 KiB
Makefile
78 lines
2.2 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_VENDOR = lftp_project
|
|
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))
|