wok-current rev 25155
updated proxytunnel (1.9.0 -> 1.10)
author | Hans-G?nter Theisgen |
---|---|
date | Thu Jun 30 15:35:33 2022 +0100 (2022-06-30) |
parents | e0a3faa23c7b |
children | 7d53ff17b95a |
files | proxytunnel/description.txt proxytunnel/receipt proxytunnel/stuff/patches/Makefile-1.10 |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/proxytunnel/description.txt Thu Jun 30 15:35:33 2022 +0100 1.3 @@ -0,0 +1,5 @@ 1.4 +This is proxytunnel, a program that connects stdin and stdout to an 1.5 +origin server somewhere in the Internet through an industry standard 1.6 +HTTPS proxy. 1.7 +I originally wrote this program to be used as an extension to SSH, 1.8 +to be able to SSH to my box at home.
2.1 --- a/proxytunnel/receipt Thu Jun 30 15:28:13 2022 +0100 2.2 +++ b/proxytunnel/receipt Thu Jun 30 15:35:33 2022 +0100 2.3 @@ -1,17 +1,18 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="proxytunnel" 2.7 -VERSION="1.9.0" 2.8 +VERSION="1.10" 2.9 CATEGORY="network" 2.10 SHORT_DESC="Connecting outside through HTTP(S) proxies." 2.11 MAINTAINER="pascal.bellard@slitaz.org" 2.12 LICENSE="GPL2" 2.13 +WEB_SITE="https://github.com/proxytunnel/proxytunnel/" 2.14 + 2.15 TARBALL="$PACKAGE-$VERSION.tgz" 2.16 -WEB_SITE="http://proxytunnel.sourceforge.net/" 2.17 -WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 2.18 +WGET_URL="${WEB_SITE}archive/refs/tags/v$VERSION.20210604.tar.gz" 2.19 2.20 -DEPENDS="libcrypto libssl gzip" 2.21 -BUILD_DEPENDS="openssl-dev" 2.22 +DEPENDS="gzip libcrypto libssl" 2.23 +BUILD_DEPENDS="ntlmaps openssl-dev" 2.24 2.25 # What is the latest version available today? 2.26 current_version() 2.27 @@ -26,13 +27,15 @@ 2.28 { 2.29 export LDFLAGS="$LDFLAGS -Wl,--copy-dt-needed-entries" 2.30 sed -i 's|/local||' Makefile 2.31 + # skip documentation 2.32 + patch --input=$stuff/patches/Makefile-$VERSION Makefile 2.33 + 2.34 make && 2.35 - make DESTDIR=$DESTDIR install 2.36 + make install DESTDIR=$DESTDIR 2.37 } 2.38 2.39 # Rules to gen a SliTaz package suitable for Tazpkg. 2.40 genpkg_rules() 2.41 { 2.42 - mkdir -p $fs/usr 2.43 - cp -a $install/usr/bin $fs/usr 2.44 + cook_copy_folders bin 2.45 }
3.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 3.2 +++ b/proxytunnel/stuff/patches/Makefile-1.10 Thu Jun 30 15:35:33 2022 +0100 3.3 @@ -0,0 +1,10 @@ 3.4 +--- Makefile.orig 3.5 ++++ Makefile 3.6 +@@ -87,7 +87,6 @@ 3.7 + install: 3.8 + install -d $(DESTDIR)$(bindir) 3.9 + install -p -m555 $(name) $(DESTDIR)$(bindir) 3.10 +- $(MAKE) -C docs install 3.11 + 3.12 + .c.o: 3.13 + $(CC) $(CPPFLAGS) $(CFLAGS) $(OPTFLAGS) -c -o $@ $<