From owner-svn-ports-head@freebsd.org Sat Sep 29 12:01:26 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 31D39109814E; Sat, 29 Sep 2018 12:01:26 +0000 (UTC) (envelope-from ak@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 DB76278846; Sat, 29 Sep 2018 12:01:25 +0000 (UTC) (envelope-from ak@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 D6814233C4; Sat, 29 Sep 2018 12:01:25 +0000 (UTC) (envelope-from ak@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w8TC1Pdn053799; Sat, 29 Sep 2018 12:01:25 GMT (envelope-from ak@FreeBSD.org) Received: (from ak@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w8TC1PL1053368; Sat, 29 Sep 2018 12:01:25 GMT (envelope-from ak@FreeBSD.org) Message-Id: <201809291201.w8TC1PL1053368@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ak set sender to ak@FreeBSD.org using -f From: Alex Kozlov Date: Sat, 29 Sep 2018 12:01:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r480906 - head/net/tcpreen X-SVN-Group: ports-head X-SVN-Commit-Author: ak X-SVN-Commit-Paths: head/net/tcpreen X-SVN-Commit-Revision: 480906 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.27 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: Sat, 29 Sep 2018 12:01:26 -0000 Author: ak Date: Sat Sep 29 12:01:25 2018 New Revision: 480906 URL: https://svnweb.freebsd.org/changeset/ports/480906 Log: - Add LICENSE - Use options helpers - Update WWW [1] PR: 231258 [1] Submitted by: Kurt Jaeger [1] Approved by: Janos Mohacsi (maintainer) Modified: head/net/tcpreen/Makefile head/net/tcpreen/pkg-descr head/net/tcpreen/pkg-plist Modified: head/net/tcpreen/Makefile ============================================================================== --- head/net/tcpreen/Makefile Sat Sep 29 10:12:45 2018 (r480905) +++ head/net/tcpreen/Makefile Sat Sep 29 12:01:25 2018 (r480906) @@ -10,29 +10,22 @@ MASTER_SITES= http://www.remlab.net/files/tcpreen/ MAINTAINER= jmohacsi@bsd.hu COMMENT= Simple TCP session re-engineering tool +LICENSE= GPLv2+ + USES= tar:bzip2 GNU_CONFIGURE= yes -DOC_FILES= AUTHORS NEWS README THANKS TODO +OPTIONS_SUB= yes +PORTDOCS= AUTHORS NEWS README THANKS TODO + OPTIONS_DEFINE= DOCS NLS -.include +NLS_USES= gettext +NLS_CONFIGURE_OFF= --disable-nls -.if ${PORT_OPTIONS:MNLS} -USES+= gettext -PLIST_SUB+= NLS="" -.else -CONFIGURE_ARGS+=--disable-nls -PLIST_SUB+= NLS="@comment " -.endif - -post-install: -.if ${PORT_OPTIONS:MDOCS} +post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} -.for file in ${DOC_FILES} - @${INSTALL_DATA} ${WRKSRC}/${file} ${STAGEDIR}${DOCSDIR} -.endfor -.endif + @${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR} .include Modified: head/net/tcpreen/pkg-descr ============================================================================== --- head/net/tcpreen/pkg-descr Sat Sep 29 10:12:45 2018 (r480905) +++ head/net/tcpreen/pkg-descr Sat Sep 29 12:01:25 2018 (r480906) @@ -3,6 +3,4 @@ a client and a server via a TCP connection. This tool stream (software/socket layer), not on the lower level transmission protocol as packet sniffers do. -WWW: http://www.simphalempin.com/dev/tcpreen/ - -Janos Mohacsi +WWW: https://www.remlab.net/tcpreen/ Modified: head/net/tcpreen/pkg-plist ============================================================================== --- head/net/tcpreen/pkg-plist Sat Sep 29 10:12:45 2018 (r480905) +++ head/net/tcpreen/pkg-plist Sat Sep 29 12:01:25 2018 (r480906) @@ -2,8 +2,3 @@ bin/tcpreen man/man1/tcpreen.1.gz %%NLS%%share/locale/fr/LC_MESSAGES/tcpreen.mo %%NLS%%share/locale/pt_BR/LC_MESSAGES/tcpreen.mo -%%PORTDOCS%%%%DOCSDIR%%/AUTHORS -%%PORTDOCS%%%%DOCSDIR%%/NEWS -%%PORTDOCS%%%%DOCSDIR%%/README -%%PORTDOCS%%%%DOCSDIR%%/THANKS -%%PORTDOCS%%%%DOCSDIR%%/TODO