# HG changeset patch # User Hans-G?nter Theisgen # Date 1656599733 -3600 # Node ID 95f790022d55527f89dbf64eff223bbef7351924 # Parent e0a3faa23c7bef137d82574e85d54bed18b73dd5 updated proxytunnel (1.9.0 -> 1.10) diff -r e0a3faa23c7b -r 95f790022d55 proxytunnel/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/proxytunnel/description.txt Thu Jun 30 15:35:33 2022 +0100 @@ -0,0 +1,5 @@ +This is proxytunnel, a program that connects stdin and stdout to an +origin server somewhere in the Internet through an industry standard +HTTPS proxy. +I originally wrote this program to be used as an extension to SSH, +to be able to SSH to my box at home. diff -r e0a3faa23c7b -r 95f790022d55 proxytunnel/receipt --- a/proxytunnel/receipt Thu Jun 30 15:28:13 2022 +0100 +++ b/proxytunnel/receipt Thu Jun 30 15:35:33 2022 +0100 @@ -1,17 +1,18 @@ # SliTaz package receipt. PACKAGE="proxytunnel" -VERSION="1.9.0" +VERSION="1.10" CATEGORY="network" SHORT_DESC="Connecting outside through HTTP(S) proxies." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="GPL2" +WEB_SITE="https://github.com/proxytunnel/proxytunnel/" + TARBALL="$PACKAGE-$VERSION.tgz" -WEB_SITE="http://proxytunnel.sourceforge.net/" -WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" +WGET_URL="${WEB_SITE}archive/refs/tags/v$VERSION.20210604.tar.gz" -DEPENDS="libcrypto libssl gzip" -BUILD_DEPENDS="openssl-dev" +DEPENDS="gzip libcrypto libssl" +BUILD_DEPENDS="ntlmaps openssl-dev" # What is the latest version available today? current_version() @@ -26,13 +27,15 @@ { export LDFLAGS="$LDFLAGS -Wl,--copy-dt-needed-entries" sed -i 's|/local||' Makefile + # skip documentation + patch --input=$stuff/patches/Makefile-$VERSION Makefile + make && - make DESTDIR=$DESTDIR install + make install DESTDIR=$DESTDIR } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr - cp -a $install/usr/bin $fs/usr + cook_copy_folders bin } diff -r e0a3faa23c7b -r 95f790022d55 proxytunnel/stuff/patches/Makefile-1.10 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/proxytunnel/stuff/patches/Makefile-1.10 Thu Jun 30 15:35:33 2022 +0100 @@ -0,0 +1,10 @@ +--- Makefile.orig ++++ Makefile +@@ -87,7 +87,6 @@ + install: + install -d $(DESTDIR)$(bindir) + install -p -m555 $(name) $(DESTDIR)$(bindir) +- $(MAKE) -C docs install + + .c.o: + $(CC) $(CPPFLAGS) $(CFLAGS) $(OPTFLAGS) -c -o $@ $<