c38869b41b
The pkg-config tool is automatically passing --static when BR2_STATIC_LIBS is set (see package/pkgconf/pkgconf.mk), so no need to pass it explicitly from package .mk files. Additionally, replace a missed occurrence of $(shell) with backticks. Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
46 lines
1.3 KiB
Makefile
46 lines
1.3 KiB
Makefile
################################################################################
|
|
#
|
|
# nmap
|
|
#
|
|
################################################################################
|
|
|
|
NMAP_VERSION = 6.47
|
|
NMAP_SITE = http://nmap.org/dist
|
|
NMAP_SOURCE = nmap-$(NMAP_VERSION).tar.bz2
|
|
NMAP_DEPENDENCIES = libpcap pcre
|
|
NMAP_CONF_OPTS = --without-liblua --without-zenmap \
|
|
--with-libdnet=included --with-liblinear=included \
|
|
--with-libpcre="$(STAGING_DIR)/usr" --without-ncat
|
|
NMAP_LICENSE = GPLv2
|
|
NMAP_LICENSE_FILES = COPYING
|
|
|
|
# needed by libpcap
|
|
NMAP_LIBS_FOR_STATIC_LINK += `$(STAGING_DIR)/usr/bin/pcap-config --static --additional-libs`
|
|
|
|
ifeq ($(BR2_STATIC_LIBS),y)
|
|
NMAP_CONF_ENV += LIBS="$(NMAP_LIBS_FOR_STATIC_LINK)"
|
|
endif
|
|
|
|
# for 0001-libdnet-wrapper-configure.patch
|
|
define NMAP_WRAPPER_EXEC
|
|
chmod +x $(@D)/libdnet-stripped/configure.gnu
|
|
endef
|
|
NMAP_POST_PATCH_HOOKS += NMAP_WRAPPER_EXEC
|
|
|
|
ifeq ($(BR2_PACKAGE_OPENSSL),y)
|
|
NMAP_CONF_OPTS += --with-openssl="$(STAGING_DIR)/usr"
|
|
NMAP_DEPENDENCIES += host-pkgconf openssl
|
|
NMAP_LIBS_FOR_STATIC_LINK += `$(PKG_CONFIG_HOST_BINARY) --libs openssl`
|
|
else
|
|
NMAP_CONF_OPTS += --without-openssl
|
|
endif
|
|
|
|
# ndiff only works with python2.x
|
|
ifeq ($(BR2_PACKAGE_PYTHON),y)
|
|
NMAP_DEPENDENCIES += python
|
|
else
|
|
NMAP_CONF_OPTS += --without-ndiff
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|