# HG changeset patch # User Hans-G?nter Theisgen # Date 1647358137 -3600 # Node ID b072bd03c2c609fd341fb2dd90a44549a403feea # Parent 59547e97954fc2db08e75fc64e8f0f580b7d90c9 updated libdnet and libdnet-dev (1.12 -> 1.14) diff -r 59547e97954f -r b072bd03c2c6 libdnet-dev/receipt --- a/libdnet-dev/receipt Tue Mar 15 11:32:25 2022 +0000 +++ b/libdnet-dev/receipt Tue Mar 15 16:28:57 2022 +0100 @@ -1,22 +1,20 @@ # SliTaz package receipt. PACKAGE="libdnet-dev" -VERSION="1.12" +VERSION="1.14" CATEGORY="development" -SHORT_DESC="devel files of libdnet" +SHORT_DESC="Development files of libdnet." MAINTAINER="slaxemulator@gmail.com" LICENSE="BSD" -WEB_SITE="https://github.com/dugsong/libdnet" -WANTED="libdnet" +WEB_SITE="https://github.com/ofalk/libdnet" DEPENDS="libdnet" +WANTED="libdnet" # 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 + cook_copy_folders bin + cook_copy_folders include + cook_copy_files *.*a } - diff -r 59547e97954f -r b072bd03c2c6 libdnet/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libdnet/description.txt Tue Mar 15 16:28:57 2022 +0100 @@ -0,0 +1,5 @@ +Libdnet provides a simplified, portable interface to several +low-level networking routines, including network address manipulation, +kernel arp(4) cache and route(4) table lookup and manipulation, +network firewalling, network interface lookup and manipulation, +IP tunnelling, and raw IP packet and Ethernet frame transmission. diff -r 59547e97954f -r b072bd03c2c6 libdnet/receipt --- a/libdnet/receipt Tue Mar 15 11:32:25 2022 +0000 +++ b/libdnet/receipt Tue Mar 15 16:28:57 2022 +0100 @@ -1,14 +1,15 @@ # SliTaz package receipt. PACKAGE="libdnet" -VERSION="1.12" +VERSION="1.14" CATEGORY="network" -SHORT_DESC="A simplified, portable interface to serveral low-level networking routines" +SHORT_DESC="A simplified, portable interface to several low-level networking routines." MAINTAINER="slaxemulator@gmail.com" LICENSE="BSD" -TARBALL="$PACKAGE-$VERSION.tgz" -WEB_SITE="https://github.com/dugsong/libdnet" -WGET_URL="http://libdnet.googlecode.com/files/$TARBALL" +WEB_SITE="https://github.com/ofalk/libdnet" + +TARBALL="$PACKAGE-$VERSION.tar.gz" +WGET_URL="$WEB_SITE/archive/$TARBALL" DEPENDS="python" BUILD_DEPENDS="python python-dev" @@ -23,21 +24,18 @@ # Rules to configure and make the package. compile_rules() { - cd $src - ./configure \ - --prefix=/usr \ - --infodir=/usr/share/info \ - --mandir=/usr/share/man \ + ./configure \ + --prefix=/usr \ + --infodir=/usr/share/info \ + --mandir=/usr/share/man \ $CONFIGURE_ARGS && - make && make DESTDIR=$DESTDIR install + make && + make install DESTDIR=$DESTDIR } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/lib - cp -a $install/usr/sbin $fs/usr - cp -a $install/usr/lib/libdnet $fs/usr/lib - cp -a $install/usr/lib/*.1* $fs/usr/lib + cook_copy_folders sbin + cook_copy_files *.so* } -