300f9c9c9d
Thanks to the pkgparentdir and pkgname functions, we can rewrite the AUTOTARGETS macro in a way that avoids the need for each package to repeat its name and the directory in which it is present. [Peter: pkgdir->pkgparentdir] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
25 lines
819 B
Makefile
25 lines
819 B
Makefile
#############################################################
|
|
#
|
|
# tcpdump
|
|
#
|
|
#############################################################
|
|
# Copyright (C) 2001-2003 by Erik Andersen <andersen@codepoet.org>
|
|
# Copyright (C) 2002 by Tim Riker <Tim@Rikers.org>
|
|
|
|
TCPDUMP_VERSION:=4.1.1
|
|
TCPDUMP_SITE:=http://www.tcpdump.org/release
|
|
TCPDUMP_SOURCE:=tcpdump-$(TCPDUMP_VERSION).tar.gz
|
|
TCPDUMP_CONF_ENV:=ac_cv_linux_vers=2
|
|
TCPDUMP_CONF_OPT:=--without-crypto \
|
|
$(if $(BR2_PACKAGE_TCPDUMP_SMB),--enable-smb,--disable-smb)
|
|
TCPDUMP_DEPENDENCIES:=zlib libpcap
|
|
|
|
# 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 $(call AUTOTARGETS))
|