Move all to deprecated folder.
This commit is contained in:
16
deprecated/firmware/buildroot/package/tcpdump/Config.in
Normal file
16
deprecated/firmware/buildroot/package/tcpdump/Config.in
Normal file
@@ -0,0 +1,16 @@
|
||||
config BR2_PACKAGE_TCPDUMP
|
||||
bool "tcpdump"
|
||||
select BR2_PACKAGE_LIBPCAP
|
||||
help
|
||||
A tool for network monitoring and data acquisition.
|
||||
|
||||
http://www.tcpdump.org/
|
||||
|
||||
if BR2_PACKAGE_TCPDUMP
|
||||
|
||||
config BR2_PACKAGE_TCPDUMP_SMB
|
||||
bool "smb dump support"
|
||||
help
|
||||
enable possibly-buggy SMB printer
|
||||
|
||||
endif
|
||||
@@ -0,0 +1,2 @@
|
||||
# Locally calculated after checking pgp signature
|
||||
sha256 6be520269a89036f99c0b2126713a60965953eab921002b07608ccfc0c47d9af tcpdump-4.7.4.tar.gz
|
||||
32
deprecated/firmware/buildroot/package/tcpdump/tcpdump.mk
Normal file
32
deprecated/firmware/buildroot/package/tcpdump/tcpdump.mk
Normal file
@@ -0,0 +1,32 @@
|
||||
################################################################################
|
||||
#
|
||||
# tcpdump
|
||||
#
|
||||
################################################################################
|
||||
|
||||
TCPDUMP_VERSION = 4.7.4
|
||||
TCPDUMP_SITE = http://www.tcpdump.org/release
|
||||
TCPDUMP_LICENSE = BSD-3c
|
||||
TCPDUMP_LICENSE_FILES = LICENSE
|
||||
TCPDUMP_CONF_ENV = \
|
||||
ac_cv_linux_vers=2 \
|
||||
td_cv_buggygetaddrinfo=no \
|
||||
PCAP_CONFIG=$(STAGING_DIR)/usr/bin/pcap-config
|
||||
TCPDUMP_CONF_OPTS = \
|
||||
--without-crypto \
|
||||
--with-system-libpcap \
|
||||
$(if $(BR2_PACKAGE_TCPDUMP_SMB),--enable-smb,--disable-smb)
|
||||
TCPDUMP_DEPENDENCIES = zlib libpcap
|
||||
|
||||
ifeq ($(BR2_STATIC_LIBS),y)
|
||||
TCPDUMP_CONF_OPTS += LIBS="`$(STAGING_DIR)/usr/bin/pcap-config --static --additional-libs`"
|
||||
endif
|
||||
|
||||
# make install installs an unneeded extra copy of the tcpdump binary
|
||||
define TCPDUMP_REMOVE_DUPLICATED_BINARY
|
||||
rm -f $(TARGET_DIR)/usr/sbin/tcpdump.$(TCPDUMP_VERSION)
|
||||
endef
|
||||
|
||||
TCPDUMP_POST_INSTALL_TARGET_HOOKS += TCPDUMP_REMOVE_DUPLICATED_BINARY
|
||||
|
||||
$(eval $(autotools-package))
|
||||
Reference in New Issue
Block a user