wok rev 24729

updated libdnet and libdnet-dev (1.12 -> 1.14)
author Hans-G?nter Theisgen
date Tue Mar 15 16:28:57 2022 +0100 (2022-03-15)
parents 59547e97954f
children 181317ae7e78
files libdnet-dev/receipt libdnet/description.txt libdnet/receipt
line diff
     1.1 --- a/libdnet-dev/receipt	Tue Mar 15 11:32:25 2022 +0000
     1.2 +++ b/libdnet-dev/receipt	Tue Mar 15 16:28:57 2022 +0100
     1.3 @@ -1,22 +1,20 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="libdnet-dev"
     1.7 -VERSION="1.12"
     1.8 +VERSION="1.14"
     1.9  CATEGORY="development"
    1.10 -SHORT_DESC="devel files of libdnet"
    1.11 +SHORT_DESC="Development files of libdnet."
    1.12  MAINTAINER="slaxemulator@gmail.com"
    1.13  LICENSE="BSD"
    1.14 -WEB_SITE="https://github.com/dugsong/libdnet"
    1.15 -WANTED="libdnet"
    1.16 +WEB_SITE="https://github.com/ofalk/libdnet"
    1.17  
    1.18  DEPENDS="libdnet"
    1.19 +WANTED="libdnet"
    1.20  
    1.21  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.22  genpkg_rules()
    1.23  {
    1.24 -	mkdir -p $fs/usr/lib
    1.25 -	cp -a $install/usr/bin $fs/usr
    1.26 -	cp -a $install/usr/include $fs/usr
    1.27 -	cp -a $install/usr/lib/*.*a $fs/usr/lib
    1.28 +	cook_copy_folders	bin
    1.29 +	cook_copy_folders	include
    1.30 +	cook_copy_files		*.*a
    1.31  }
    1.32 -
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/libdnet/description.txt	Tue Mar 15 16:28:57 2022 +0100
     2.3 @@ -0,0 +1,5 @@
     2.4 +Libdnet provides a simplified, portable interface to several
     2.5 +low-level networking routines, including network address manipulation,
     2.6 +kernel arp(4) cache and route(4) table lookup and manipulation,
     2.7 +network firewalling, network interface lookup and manipulation,
     2.8 +IP tunnelling, and raw IP packet and Ethernet frame transmission.
     3.1 --- a/libdnet/receipt	Tue Mar 15 11:32:25 2022 +0000
     3.2 +++ b/libdnet/receipt	Tue Mar 15 16:28:57 2022 +0100
     3.3 @@ -1,14 +1,15 @@
     3.4  # SliTaz package receipt.
     3.5  
     3.6  PACKAGE="libdnet"
     3.7 -VERSION="1.12"
     3.8 +VERSION="1.14"
     3.9  CATEGORY="network"
    3.10 -SHORT_DESC="A simplified, portable interface to serveral low-level networking routines"
    3.11 +SHORT_DESC="A simplified, portable interface to several low-level networking routines."
    3.12  MAINTAINER="slaxemulator@gmail.com"
    3.13  LICENSE="BSD"
    3.14 -TARBALL="$PACKAGE-$VERSION.tgz"
    3.15 -WEB_SITE="https://github.com/dugsong/libdnet"
    3.16 -WGET_URL="http://libdnet.googlecode.com/files/$TARBALL"
    3.17 +WEB_SITE="https://github.com/ofalk/libdnet"
    3.18 +
    3.19 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    3.20 +WGET_URL="$WEB_SITE/archive/$TARBALL"
    3.21  
    3.22  DEPENDS="python"
    3.23  BUILD_DEPENDS="python python-dev"
    3.24 @@ -23,21 +24,18 @@
    3.25  # Rules to configure and make the package.
    3.26  compile_rules()
    3.27  {
    3.28 -	cd $src
    3.29 -	./configure \
    3.30 -		--prefix=/usr \
    3.31 -		--infodir=/usr/share/info \
    3.32 -		--mandir=/usr/share/man \
    3.33 +	./configure				\
    3.34 +		--prefix=/usr			\
    3.35 +		--infodir=/usr/share/info	\
    3.36 +		--mandir=/usr/share/man		\
    3.37  		$CONFIGURE_ARGS &&
    3.38 -	make && make DESTDIR=$DESTDIR install
    3.39 +	make &&
    3.40 +	make install DESTDIR=$DESTDIR
    3.41  }
    3.42  
    3.43  # Rules to gen a SliTaz package suitable for Tazpkg.
    3.44  genpkg_rules()
    3.45  {
    3.46 -	mkdir -p $fs/usr/lib
    3.47 -	cp -a $install/usr/sbin $fs/usr
    3.48 -	cp -a $install/usr/lib/libdnet $fs/usr/lib
    3.49 -	cp -a $install/usr/lib/*.1* $fs/usr/lib
    3.50 +	cook_copy_folders	sbin
    3.51 +	cook_copy_files		*.so*
    3.52  }
    3.53 -