# HG changeset patch # User Hans-G?nter Theisgen # Date 1658153584 -3600 # Node ID 2151e1e3c336fdeb9dc53c98d064bfceec4b344a # Parent e8c82c47df0148994a7b4eeb769ee28a10d78644 updated rinetd (0.62 -> 0.73) diff -r e8c82c47df01 -r 2151e1e3c336 rinetd/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/rinetd/description.txt Mon Jul 18 15:13:04 2022 +0100 @@ -0,0 +1,3 @@ +This program is used to efficiently redirect connections from one +IP address and port combination to another. +It is useful when operating virtual servers, firewalls and the like. diff -r e8c82c47df01 -r 2151e1e3c336 rinetd/receipt --- a/rinetd/receipt Mon Jul 18 15:03:30 2022 +0100 +++ b/rinetd/receipt Mon Jul 18 15:13:04 2022 +0100 @@ -1,14 +1,15 @@ # SliTaz package receipt. PACKAGE="rinetd" -VERSION="0.62" +VERSION="0.73" CATEGORY="network" SHORT_DESC="internet ''redirection server''." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="GPL2" +WEB_SITE="https://github.com/samhocevar/rinetd" + TARBALL="$PACKAGE.tar.gz" -WEB_SITE="https://github.com/boutell/rinetd" -WGET_URL="http://www.boutell.com/rinetd/http/$TARBALL" +WGET_URL="$WEB_SITE/archive/refs/tags/v$VERSION.tar.gz" # What is the latest version available today? current_version() @@ -20,13 +21,15 @@ # Rules to configure and make the package. compile_rules() { - make + ./bootstrap && + ./configure \ + --prefix=/usr && + make && + make install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/sbin - cp -a $src/rinetd $fs/usr/sbin + cook_copy_folders sbin } -