wok rev 25280

updated rinetd (0.62 -> 0.73)
author Hans-G?nter Theisgen
date Mon Jul 18 15:13:04 2022 +0100 (21 months ago)
parents e8c82c47df01
children 7010999005b0
files rinetd/description.txt rinetd/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/rinetd/description.txt	Mon Jul 18 15:13:04 2022 +0100
     1.3 @@ -0,0 +1,3 @@
     1.4 +This program is used to efficiently redirect connections from one
     1.5 +IP address and port combination to another.
     1.6 +It is useful when operating virtual servers, firewalls and the like.
     2.1 --- a/rinetd/receipt	Mon Jul 18 15:03:30 2022 +0100
     2.2 +++ b/rinetd/receipt	Mon Jul 18 15:13:04 2022 +0100
     2.3 @@ -1,14 +1,15 @@
     2.4  # SliTaz package receipt.
     2.5  
     2.6  PACKAGE="rinetd"
     2.7 -VERSION="0.62"
     2.8 +VERSION="0.73"
     2.9  CATEGORY="network"
    2.10  SHORT_DESC="internet ''redirection server''."
    2.11  MAINTAINER="pascal.bellard@slitaz.org"
    2.12  LICENSE="GPL2"
    2.13 +WEB_SITE="https://github.com/samhocevar/rinetd"
    2.14 +
    2.15  TARBALL="$PACKAGE.tar.gz"
    2.16 -WEB_SITE="https://github.com/boutell/rinetd"
    2.17 -WGET_URL="http://www.boutell.com/rinetd/http/$TARBALL"
    2.18 +WGET_URL="$WEB_SITE/archive/refs/tags/v$VERSION.tar.gz"
    2.19  
    2.20  # What is the latest version available today?
    2.21  current_version()
    2.22 @@ -20,13 +21,15 @@
    2.23  # Rules to configure and make the package.
    2.24  compile_rules()
    2.25  {
    2.26 -	make
    2.27 +	./bootstrap &&
    2.28 +	./configure		\
    2.29 +		--prefix=/usr &&
    2.30 +	make &&
    2.31 +	make install
    2.32  }
    2.33  
    2.34  # Rules to gen a SliTaz package suitable for Tazpkg.
    2.35  genpkg_rules()
    2.36  {
    2.37 -	mkdir -p $fs/usr/sbin
    2.38 -	cp -a $src/rinetd $fs/usr/sbin
    2.39 +	cook_copy_folders	sbin
    2.40  }
    2.41 -