wok rev 22013

updated tcpdump (4.4.0 -> 4.9.3)
author Hans-G?nter Theisgen
date Sat Oct 19 15:58:53 2019 +0100 (2019-10-19)
parents 7dbabbb8d2fe
children 3dee29a5455c
files tcpdump/receipt
line diff
     1.1 --- a/tcpdump/receipt	Sat Oct 19 15:47:58 2019 +0100
     1.2 +++ b/tcpdump/receipt	Sat Oct 19 15:58:53 2019 +0100
     1.3 @@ -1,26 +1,29 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="tcpdump"
     1.7 -VERSION="4.4.0"
     1.8 +VERSION="4.9.3"
     1.9  CATEGORY="security"
    1.10 -SHORT_DESC="cli wire sniffer"
    1.11 +TAGS="network security"
    1.12 +SHORT_DESC="A network traffic monitoring tool."
    1.13  MAINTAINER="sdaigl@lacitec.on.ca"
    1.14  LICENSE="BSD"
    1.15 +WEB_SITE="https://www.tcpdump.org/"
    1.16 +
    1.17  TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.18 -WEB_SITE="http://www.tcpdump.org/"
    1.19 -WGET_URL="http://www.tcpdump.org/release/$TARBALL"
    1.20 -TAGS="network security"
    1.21 +WGET_URL="${WEB_SITE}release/$TARBALL"
    1.22  
    1.23 -DEPENDS="libcrypto openssl libpcap"
    1.24 +DEPENDS="libcrypto libpcap openssl"
    1.25  BUILD_DEPENDS="libpcap libpcap-dev openssl-dev"
    1.26  
    1.27  # Rules to configure and make the package.
    1.28  compile_rules()
    1.29  {
    1.30 -	cd $src
    1.31 -	./configure --prefix=/usr --infodir=/usr/share/info \
    1.32 -	--mandir=/usr/share/man $CONFIGURE_ARGS
    1.33 -	make
    1.34 +	./configure				\
    1.35 +		--prefix=/usr			\
    1.36 +		--infodir=/usr/share/info	\
    1.37 +		--mandir=/usr/share/man		\
    1.38 +		$CONFIGURE_ARGS &&
    1.39 +	make &&
    1.40  	make DESTDIR=$DESTDIR install
    1.41  }
    1.42