wok rev 25154
updated proxychains-ng (4.14 -> 4.16)
author | Hans-G?nter Theisgen |
---|---|
date | Thu Jun 30 15:28:13 2022 +0100 (2022-06-30) |
parents | b6cd62d7f367 |
children | 95f790022d55 |
files | proxychains-ng/description.txt proxychains-ng/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/proxychains-ng/description.txt Thu Jun 30 15:28:13 2022 +0100 1.3 @@ -0,0 +1,11 @@ 1.4 +ProxyChains is a UNIX program, that hooks network-related libc functions 1.5 +in DYNAMICALLY LINKED programs via a preloaded DLL (dlsym(), LD_PRELOAD) 1.6 +and redirects the connections through SOCKS4a/5 or HTTP proxies. 1.7 +It supports TCP only (no UDP/ICMP etc). 1.8 + 1.9 +The way it works is basically a HACK; so it is possible that it doesn't 1.10 +work with your program, especially when it's a script, or starts 1.11 +numerous processes like background daemons or uses dlopen() to load 1.12 +"modules" (bug in glibc dynlinker). 1.13 +It should work with simple compiled (C/C++) dynamically linked programs 1.14 +though.
2.1 --- a/proxychains-ng/receipt Thu Jun 30 15:07:10 2022 +0100 2.2 +++ b/proxychains-ng/receipt Thu Jun 30 15:28:13 2022 +0100 2.3 @@ -1,7 +1,7 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="proxychains-ng" 2.7 -VERSION="4.14" 2.8 +VERSION="4.16" 2.9 CATEGORY="network" 2.10 SHORT_DESC="Forces any tcp connection made by a client to follow through proxy." 2.11 MAINTAINER="pascal.bellard@slitaz.org" 2.12 @@ -27,12 +27,12 @@ 2.13 --sysconfdir=/etc \ 2.14 $CONFIGURE_ARGS && 2.15 make && 2.16 - make DESTDIR=$DESTDIR install && 2.17 - make DESTDIR=$DESTDIR install-config 2.18 + make install DESTDIR=$DESTDIR && 2.19 + make install-config DESTDIR=$DESTDIR 2.20 } 2.21 2.22 # Rules to gen a SliTaz package suitable for Tazpkg. 2.23 genpkg_rules() 2.24 { 2.25 - cp -a $install/usr $fs 2.26 + cp -a $install/usr $fs 2.27 }