wok-6.x rev 24821
updated libpcap and libpcap-dev (1.9.1 -> 1.10.1)
author | Hans-G?nter Theisgen |
---|---|
date | Wed Mar 23 11:02:18 2022 +0100 (2022-03-23) |
parents | a9a8eabe376a |
children | 99e24ccafc52 |
files | libpcap-dev/receipt libpcap/description.txt libpcap/receipt |
line diff
1.1 --- a/libpcap-dev/receipt Wed Mar 23 10:45:47 2022 +0100 1.2 +++ b/libpcap-dev/receipt Wed Mar 23 11:02:18 2022 +0100 1.3 @@ -1,7 +1,7 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="libpcap-dev" 1.7 -VERSION="1.9.1" 1.8 +VERSION="1.10.1" 1.9 CATEGORY="development" 1.10 SHORT_DESC="Development files for libpcap." 1.11 MAINTAINER="slaxemulator@gmail.com" 1.12 @@ -16,10 +16,7 @@ 1.13 # Rules to gen a SliTaz package suitable for Tazpkg. 1.14 genpkg_rules() 1.15 { 1.16 - mkdir -p $fs/usr/lib 1.17 - 1.18 - cp -a $install/usr/bin $fs/usr 1.19 - cp -a $install/usr/include $fs/usr 1.20 - cp -a $install/usr/lib/*.*a $fs/usr/lib 1.21 + get_dev_files 1.22 + cook_copy_folders bin 1.23 } 1.24
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/libpcap/description.txt Wed Mar 23 11:02:18 2022 +0100 2.3 @@ -0,0 +1,8 @@ 2.4 +Libpcap is a system-independent interface for user-level packet capture. 2.5 +Libpcap provides a portable framework for low-level network monitoring. 2.6 +Applications include network statistics collection, security monitoring, 2.7 +network debugging, etc. Since almost every system vendor provides a 2.8 +different interface for packet capture, and since we've developed several 2.9 +tools that require this functionality, we've created this system-independent 2.10 +API to ease in porting and to alleviate the need for several 2.11 +system-dependent packet capture modules in each application.
3.1 --- a/libpcap/receipt Wed Mar 23 10:45:47 2022 +0100 3.2 +++ b/libpcap/receipt Wed Mar 23 11:02:18 2022 +0100 3.3 @@ -1,7 +1,7 @@ 3.4 # SliTaz package receipt. 3.5 3.6 PACKAGE="libpcap" 3.7 -VERSION="1.9.1" 3.8 +VERSION="1.10.1" 3.9 CATEGORY="development" 3.10 SHORT_DESC="Library for tcpdump." 3.11 MAINTAINER="sdaigl@lacitec.on.ca" 3.12 @@ -9,10 +9,10 @@ 3.13 WEB_SITE="https://www.tcpdump.org/" 3.14 3.15 TARBALL="$PACKAGE-$VERSION.tar.gz" 3.16 -WGET_URL="http://www.tcpdump.org/release/$TARBALL"; 3.17 +WGET_URL="${WEB_SITE}release/$TARBALL"; 3.18 3.19 DEPENDS="libnl" 3.20 -BUILD_DEPENDS="flex bison libnl-dev" 3.21 +BUILD_DEPENDS="bison flex libnl-dev" 3.22 3.23 HOST_ARCH="i486 arm" 3.24 3.25 @@ -44,7 +44,6 @@ 3.26 # Rules to gen a SliTaz package suitable for Tazpkg. 3.27 genpkg_rules() 3.28 { 3.29 - mkdir -p $fs/usr/lib 3.30 - cp -a $install/usr/lib/*.so* $fs/usr/lib 3.31 + cook_copy_files *.so* 3.32 } 3.33