# HG changeset patch # User Hans-G?nter Theisgen # Date 1648029738 -3600 # Node ID f604496f040cbe52d106a416cbf10f4b07117138 # Parent a9a8eabe376a0db23e5f197f5bfa34d61108e735 updated libpcap and libpcap-dev (1.9.1 -> 1.10.1) diff -r a9a8eabe376a -r f604496f040c libpcap-dev/receipt --- a/libpcap-dev/receipt Wed Mar 23 10:45:47 2022 +0100 +++ b/libpcap-dev/receipt Wed Mar 23 11:02:18 2022 +0100 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="libpcap-dev" -VERSION="1.9.1" +VERSION="1.10.1" CATEGORY="development" SHORT_DESC="Development files for libpcap." MAINTAINER="slaxemulator@gmail.com" @@ -16,10 +16,7 @@ # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/lib - - cp -a $install/usr/bin $fs/usr - cp -a $install/usr/include $fs/usr - cp -a $install/usr/lib/*.*a $fs/usr/lib + get_dev_files + cook_copy_folders bin } diff -r a9a8eabe376a -r f604496f040c libpcap/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libpcap/description.txt Wed Mar 23 11:02:18 2022 +0100 @@ -0,0 +1,8 @@ +Libpcap is a system-independent interface for user-level packet capture. +Libpcap provides a portable framework for low-level network monitoring. +Applications include network statistics collection, security monitoring, +network debugging, etc. Since almost every system vendor provides a +different interface for packet capture, and since we've developed several +tools that require this functionality, we've created this system-independent +API to ease in porting and to alleviate the need for several +system-dependent packet capture modules in each application. diff -r a9a8eabe376a -r f604496f040c libpcap/receipt --- a/libpcap/receipt Wed Mar 23 10:45:47 2022 +0100 +++ b/libpcap/receipt Wed Mar 23 11:02:18 2022 +0100 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="libpcap" -VERSION="1.9.1" +VERSION="1.10.1" CATEGORY="development" SHORT_DESC="Library for tcpdump." MAINTAINER="sdaigl@lacitec.on.ca" @@ -9,10 +9,10 @@ WEB_SITE="https://www.tcpdump.org/" TARBALL="$PACKAGE-$VERSION.tar.gz" -WGET_URL="http://www.tcpdump.org/release/$TARBALL"; +WGET_URL="${WEB_SITE}release/$TARBALL"; DEPENDS="libnl" -BUILD_DEPENDS="flex bison libnl-dev" +BUILD_DEPENDS="bison flex libnl-dev" HOST_ARCH="i486 arm" @@ -44,7 +44,6 @@ # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/lib - cp -a $install/usr/lib/*.so* $fs/usr/lib + cook_copy_files *.so* }