From owner-svn-ports-head@freebsd.org Sun Apr 22 17:26:25 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id F09E6FB02C9; Sun, 22 Apr 2018 17:26:24 +0000 (UTC) (envelope-from krion@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 9F3406983E; Sun, 22 Apr 2018 17:26:24 +0000 (UTC) (envelope-from krion@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 9A0D718BD2; Sun, 22 Apr 2018 17:26:24 +0000 (UTC) (envelope-from krion@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w3MHQOad091510; Sun, 22 Apr 2018 17:26:24 GMT (envelope-from krion@FreeBSD.org) Received: (from krion@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w3MHQNhQ091504; Sun, 22 Apr 2018 17:26:23 GMT (envelope-from krion@FreeBSD.org) Message-Id: <201804221726.w3MHQNhQ091504@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: krion set sender to krion@FreeBSD.org using -f From: Kirill Ponomarev Date: Sun, 22 Apr 2018 17:26:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r468040 - in head/net/3proxy: . files X-SVN-Group: ports-head X-SVN-Commit-Author: krion X-SVN-Commit-Paths: in head/net/3proxy: . files X-SVN-Commit-Revision: 468040 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 Apr 2018 17:26:25 -0000 Author: krion Date: Sun Apr 22 17:26:23 2018 New Revision: 468040 URL: https://svnweb.freebsd.org/changeset/ports/468040 Log: Update to 0.8.12 * utilize logdir * use gzip as default archiver in config * install pamauth.so plugin PR: 227700 Submitted by: maintainer Modified: head/net/3proxy/Makefile head/net/3proxy/distinfo head/net/3proxy/files/patch-Makefile.unix head/net/3proxy/files/patch-cfg_3proxy.cfg.sample head/net/3proxy/files/patch-man head/net/3proxy/pkg-plist Modified: head/net/3proxy/Makefile ============================================================================== --- head/net/3proxy/Makefile Sun Apr 22 17:09:14 2018 (r468039) +++ head/net/3proxy/Makefile Sun Apr 22 17:26:23 2018 (r468040) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= 3proxy -PORTVERSION= 0.8.11 +PORTVERSION= 0.8.12 CATEGORIES= net MAINTAINER= timp87@gmail.com @@ -13,26 +13,31 @@ LICENSE_COMB= dual OPTIONS_DEFINE= DOCS +3PROXY_LOGDIR= /var/log/${PORTNAME} + MAKEFILE= Makefile.unix -USE_LDCONFIG= ${PREFIX}/lib/${PORTNAME} USE_RC_SUBR= 3proxy USE_GITHUB= yes GH_ACCOUNT= z3APA3A +PLIST_SUB= PORTNAME=${PORTNAME} \ + 3PROXY_LOGDIR=${3PROXY_LOGDIR} PORTDOCS= README post-patch: @${REINPLACE_CMD} -e 's|%%CFLAGS%%|${CFLAGS}|' ${WRKSRC}/${MAKEFILE} + @${REINPLACE_CMD} -e 's|%%3PROXY_LOGDIR%%|${3PROXY_LOGDIR}|' ${WRKSRC}/cfg/3proxy.cfg.sample post-build: ${MV} ${WRKSRC}/src/proxy ${WRKSRC}/src/httppr ${MV} ${WRKSRC}/man/proxy.8 ${WRKSRC}/man/httppr.8 do-install: + @${MKDIR} ${STAGEDIR}/${3PROXY_LOGDIR} @${MKDIR} ${STAGEDIR}${PREFIX}/lib/${PORTNAME}/ cd ${WRKSRC}/src/ && ${INSTALL_PROGRAM} 3proxy dighosts ftppr icqpr mycrypt pop3p httppr smtpp socks tcppm udppm ${STAGEDIR}${PREFIX}/bin/ cd ${WRKSRC}/cfg/ && ${INSTALL_DATA} 3proxy.cfg.sample ${STAGEDIR}${PREFIX}/etc/ - cd ${WRKSRC}/src/ && ${INSTALL_LIB} PCREPlugin.so StringsPlugin.so TrafficPlugin.so ${STAGEDIR}${PREFIX}/lib/${PORTNAME}/ + cd ${WRKSRC}/src/ && ${INSTALL_LIB} PCREPlugin.so StringsPlugin.so TrafficPlugin.so pamauth.so ${STAGEDIR}${PREFIX}/lib/${PORTNAME}/ cd ${WRKSRC}/man/ && ${INSTALL_MAN} 3proxy.cfg.3 ${STAGEDIR}${PREFIX}/man/man3/ cd ${WRKSRC}/man/ && ${INSTALL_MAN} 3proxy.8 ftppr.8 pop3p.8 httppr.8 socks.8 tcppm.8 udppm.8 ${STAGEDIR}${PREFIX}/man/man8/ Modified: head/net/3proxy/distinfo ============================================================================== --- head/net/3proxy/distinfo Sun Apr 22 17:09:14 2018 (r468039) +++ head/net/3proxy/distinfo Sun Apr 22 17:26:23 2018 (r468040) @@ -1,3 +1,3 @@ TIMESTAMP = 1498592146 -SHA256 (z3APA3A-3proxy-0.8.11_GH0.tar.gz) = fc4295e1a462baa61977fcc21747db7861c4e3d0dcca86cbaa3e06017e5c66c9 -SIZE (z3APA3A-3proxy-0.8.11_GH0.tar.gz) = 497117 +SHA256 (z3APA3A-3proxy-0.8.12_GH0.tar.gz) = c2ad3798b4f0df06cfcc7b49f658304e451d60e4834e2705ef83ddb85a03f849 +SIZE (z3APA3A-3proxy-0.8.12_GH0.tar.gz) = 528990 Modified: head/net/3proxy/files/patch-Makefile.unix ============================================================================== --- head/net/3proxy/files/patch-Makefile.unix Sun Apr 22 17:09:14 2018 (r468039) +++ head/net/3proxy/files/patch-Makefile.unix Sun Apr 22 17:26:23 2018 (r468040) @@ -1,4 +1,4 @@ ---- Makefile.unix.orig 2017-10-19 14:54:31 UTC +--- Makefile.unix.orig 2018-04-18 19:48:45 UTC +++ Makefile.unix @@ -8,18 +8,18 @@ # library support. Add -DSAFESQL for poorely written ODBC library / drivers. @@ -8,13 +8,13 @@ +CC ?= gcc # you may need -L/usr/pkg/lib for older NetBSD versions --CFLAGS = -g -O2 -c -pthread -D_THREAD_SAFE -D_REENTRANT -DNOODBC -DWITH_STD_MALLOC -DFD_SETSIZE=4096 -DWITH_POLL +-CFLAGS = -g -O2 -fno-strict-aliasing -c -pthread -D_THREAD_SAFE -D_REENTRANT -DNOODBC -DWITH_STD_MALLOC -DFD_SETSIZE=4096 -DWITH_POLL +CFLAGS = -c -O2 -pipe -fstack-protector -fno-strict-aliasing -DNOODBC -DWITH_STD_MALLOC -DFD_SETSIZE=4096 -DWITH_POLL COUT = -o -LN = gcc --LDFLAGS = -O2 -pthread +-LDFLAGS = -O2 -fno-strict-aliasing -pthread +LN ?= ${CC} -+LDFLAGS = -pthread ++LDFLAGS = -fno-strict-aliasing -pthread # -lpthreads may be reuqired on some platforms instead of -pthreads # -ldl or -lld may be required for some platforms DCFLAGS = -fpic Modified: head/net/3proxy/files/patch-cfg_3proxy.cfg.sample ============================================================================== --- head/net/3proxy/files/patch-cfg_3proxy.cfg.sample Sun Apr 22 17:09:14 2018 (r468039) +++ head/net/3proxy/files/patch-cfg_3proxy.cfg.sample Sun Apr 22 17:26:23 2018 (r468040) @@ -1,4 +1,4 @@ ---- cfg/3proxy.cfg.sample.orig 2017-10-20 15:02:38 UTC +--- cfg/3proxy.cfg.sample.orig 2018-04-18 19:48:45 UTC +++ cfg/3proxy.cfg.sample @@ -30,15 +30,15 @@ users 3APA3A:CL:3apa3a "test:CR:$1$qwer$ # this example shows you how to include passwd file. For included files @@ -15,8 +15,21 @@ -#log /var/log/3proxy/log D -log c:\3proxy\logs\3proxy.log D -+log /var/log/3proxy/log D ++log %%3PROXY_LOGDIR%%/log D +#log c:\3proxy\logs\3proxy.log D # log allows to specify log file location and rotation, D means logfile # is created daily +@@ -72,10 +72,10 @@ log c:\3proxy\logs\3proxy.log D + logformat "- +_L%t.%. %N.%p %E %U %C:%c %R:%r %O %I %h %T" + + +-#archiver gz /bin/gzip %F ++archiver gz /usr/bin/gzip %F + #archiver zip zip -m -qq %A %F + #archiver zip pkzipc -add -silent -move %A %F +-archiver rar rar a -df -inul %A %F ++#archiver rar rar a -df -inul %A %F + # if archiver specified log file will be compressed after closing. + # you should specify extension, path to archiver and command line, %A will be + # substituted with archive file name, %f - with original file name. Modified: head/net/3proxy/files/patch-man ============================================================================== --- head/net/3proxy/files/patch-man Sun Apr 22 17:09:14 2018 (r468039) +++ head/net/3proxy/files/patch-man Sun Apr 22 17:26:23 2018 (r468040) @@ -1,4 +1,4 @@ ---- man/3proxy.8.orig 2016-01-19 22:20:05 UTC +--- man/3proxy.8.orig 2018-04-18 19:48:45 UTC +++ man/3proxy.8 @@ -26,7 +26,7 @@ It can establish multiple gateways with HTTP and HTTPS proxy with FTP over HTTP support, SOCKS v4, @@ -35,7 +35,7 @@ kill(1), syslogd(8), .br http://3proxy.ru/ ---- man/3proxy.cfg.3.orig 2016-01-19 22:20:05 UTC +--- man/3proxy.cfg.3.orig 2018-04-18 19:48:45 UTC +++ man/3proxy.cfg.3 @@ -153,7 +153,7 @@ listen on given local HOST:port for inco connect to given remote HOST:port instead of listening local connection on -p or default port. Can be used with another 3proxy service running -R option for connect back functionality. Most commonly used with proxy or socks. HOST can be given as IP or hostname, useful in case of dynamic DNS. @@ -46,7 +46,7 @@ .BR socks (8) .BR pop3p (8) .BR tcppm (8) -@@ -927,7 +927,7 @@ corruption and/or Content-Length chaging +@@ -954,7 +954,7 @@ corruption and/or Content-Length chaging Report all bugs to .BR 3proxy@3proxy.ru .SH SEE ALSO @@ -55,9 +55,9 @@ .br http://3proxy.ru/ .SH TRIVIA ---- man/ftppr.8.orig 2016-01-19 22:20:05 UTC +--- man/ftppr.8.orig 2018-04-18 19:48:45 UTC +++ man/ftppr.8 -@@ -75,7 +75,7 @@ Only cleartext authentication is current +@@ -79,7 +79,7 @@ Only cleartext authentication is current Report all bugs to .BR 3proxy@3proxy.ru .SH SEE ALSO @@ -66,9 +66,9 @@ .br http://3proxy.ru/ .SH AUTHORS ---- man/icqpr.8.orig 2016-01-19 22:20:05 UTC +--- man/icqpr.8.orig 2018-04-18 19:48:45 UTC +++ man/icqpr.8 -@@ -68,7 +68,7 @@ as a destination in client application. +@@ -72,7 +72,7 @@ as a destination in client application. Report all bugs to .BR 3proxy@3proxy.ru .SH SEE ALSO @@ -77,9 +77,9 @@ .br http://3proxy.ru/ .SH AUTHORS ---- man/pop3p.8.orig 2016-01-19 22:20:05 UTC +--- man/pop3p.8.orig 2018-04-18 19:48:45 UTC +++ man/pop3p.8 -@@ -71,7 +71,7 @@ we know which server to connect. +@@ -75,7 +75,7 @@ we know which server to connect. Report all bugs to .BR 3proxy@3proxy.ru .SH SEE ALSO @@ -88,7 +88,7 @@ .br http://3proxy.ru/ .SH AUTHORS ---- man/proxy.8.orig 2016-01-19 22:20:05 UTC +--- man/proxy.8.orig 2018-04-18 19:48:45 UTC +++ man/proxy.8 @@ -1,15 +1,15 @@ -.TH proxy "8" "January 2016" "3proxy 0.8" "Universal proxy server" @@ -110,9 +110,9 @@ is HTTP gateway service with HTTPS and FTP over HTTPS support. .SH OPTIONS .TP ---- man/smtpp.8.orig 2016-01-19 22:20:05 UTC +--- man/smtpp.8.orig 2018-04-18 19:48:45 UTC +++ man/smtpp.8 -@@ -72,7 +72,7 @@ we know which server to connect. +@@ -76,7 +76,7 @@ we know which server to connect. Report all bugs to .BR 3proxy@3proxy.ru .SH SEE ALSO @@ -121,9 +121,9 @@ .br http://3proxy.ru/ .SH AUTHORS ---- man/socks.8.orig 2016-01-19 22:20:05 UTC +--- man/socks.8.orig 2018-04-18 19:48:45 UTC +++ man/socks.8 -@@ -67,7 +67,7 @@ instead. +@@ -71,7 +71,7 @@ instead. Report all bugs to .BR 3proxy@3proxy.ru .SH SEE ALSO @@ -132,9 +132,9 @@ .br http://3proxy.ru/ .SH AUTHORS ---- man/tcppm.8.orig 2016-01-19 22:20:05 UTC +--- man/tcppm.8.orig 2018-04-18 19:48:45 UTC +++ man/tcppm.8 -@@ -61,7 +61,7 @@ as a destination in client application. +@@ -65,7 +65,7 @@ as a destination in client application. Report all bugs to .BR 3proxy@3proxy.ru .SH SEE ALSO @@ -143,9 +143,9 @@ .br http://3proxy.ru/ .SH AUTHORS ---- man/udppm.8.orig 2016-01-19 22:20:05 UTC +--- man/udppm.8.orig 2018-04-18 19:48:45 UTC +++ man/udppm.8 -@@ -67,7 +67,7 @@ as a destination in client application. +@@ -71,7 +71,7 @@ as a destination in client application. Report all bugs to .BR 3proxy@3proxy.ru .SH SEE ALSO Modified: head/net/3proxy/pkg-plist ============================================================================== --- head/net/3proxy/pkg-plist Sun Apr 22 17:09:14 2018 (r468039) +++ head/net/3proxy/pkg-plist Sun Apr 22 17:26:23 2018 (r468040) @@ -1,23 +1,25 @@ bin/3proxy bin/dighosts bin/ftppr +bin/httppr bin/icqpr bin/mycrypt bin/pop3p -bin/httppr bin/smtpp bin/socks bin/tcppm bin/udppm -@sample etc/3proxy.cfg.sample -lib/3proxy/PCREPlugin.so -lib/3proxy/StringsPlugin.so -lib/3proxy/TrafficPlugin.so +lib/%%PORTNAME%%/PCREPlugin.so +lib/%%PORTNAME%%/StringsPlugin.so +lib/%%PORTNAME%%/TrafficPlugin.so +lib/%%PORTNAME%%/pamauth.so man/man3/3proxy.cfg.3.gz man/man8/3proxy.8.gz man/man8/ftppr.8.gz -man/man8/pop3p.8.gz man/man8/httppr.8.gz +man/man8/pop3p.8.gz man/man8/socks.8.gz man/man8/tcppm.8.gz man/man8/udppm.8.gz +@dir(,,755) %%3PROXY_LOGDIR%% +@sample etc/3proxy.cfg.sample