From owner-svn-ports-head@freebsd.org Tue Apr 5 15:48:24 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6FCFFB03B05; Tue, 5 Apr 2016 15:48:24 +0000 (UTC) (envelope-from amdmi3@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 mx1.freebsd.org (Postfix) with ESMTPS id 327F91C7B; Tue, 5 Apr 2016 15:48:24 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u35FmNL6050444; Tue, 5 Apr 2016 15:48:23 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u35FmMEI050439; Tue, 5 Apr 2016 15:48:22 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201604051548.u35FmMEI050439@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Tue, 5 Apr 2016 15:48:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r412562 - in head/security/ipfw2dshield: . files X-SVN-Group: ports-head 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.21 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: Tue, 05 Apr 2016 15:48:24 -0000 Author: amdmi3 Date: Tue Apr 5 15:48:22 2016 New Revision: 412562 URL: https://svnweb.freebsd.org/changeset/ports/412562 Log: - Add LICENSE - Switch to options helpers - Regenerate patches with `make makepatch` Modified: head/security/ipfw2dshield/Makefile head/security/ipfw2dshield/files/patch-Makefile head/security/ipfw2dshield/files/patch-README.html head/security/ipfw2dshield/files/patch-README.txt head/security/ipfw2dshield/files/patch-ipfw2dshield Modified: head/security/ipfw2dshield/Makefile ============================================================================== --- head/security/ipfw2dshield/Makefile Tue Apr 5 15:46:38 2016 (r412561) +++ head/security/ipfw2dshield/Makefile Tue Apr 5 15:48:22 2016 (r412562) @@ -9,6 +9,9 @@ MASTER_SITES= http://www.dynamical-syste MAINTAINER= ports@FreeBSD.org COMMENT= DShield client for ipfw logs +LICENSE= GPLv2+ +LICENSE_FILE= ${WRKSRC}/COPYING + PORTDOCS= CHANGES README.html README.txt OPTIONS_DEFINE= DOCS @@ -20,7 +23,7 @@ post-patch: ${WRKSRC}/ipaddr/Makefile \ ${WRKSRC}/strpdate/Makefile -post-install: +post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR} Modified: head/security/ipfw2dshield/files/patch-Makefile ============================================================================== --- head/security/ipfw2dshield/files/patch-Makefile Tue Apr 5 15:46:38 2016 (r412561) +++ head/security/ipfw2dshield/files/patch-Makefile Tue Apr 5 15:48:22 2016 (r412562) @@ -1,5 +1,5 @@ ---- Makefile.orig 2004-05-29 16:27:21.000000000 +0200 -+++ Makefile 2014-07-11 00:00:21.463847887 +0200 +--- Makefile.orig 2004-05-29 14:27:21 UTC ++++ Makefile @@ -4,7 +4,8 @@ RMCMD = rm -f INSTALL = install @@ -10,7 +10,7 @@ sbindir = $(prefix)/sbin SUBDIRS = ipaddr strpdate -@@ -28,13 +29,13 @@ +@@ -28,13 +29,13 @@ $(RC): install: $(RC) @for subdir in $(SUBDIRS); do (cd $$subdir && make install) ; done @[ -d $(sbindir) ] || mkdir -vp $(sbindir) Modified: head/security/ipfw2dshield/files/patch-README.html ============================================================================== --- head/security/ipfw2dshield/files/patch-README.html Tue Apr 5 15:46:38 2016 (r412561) +++ head/security/ipfw2dshield/files/patch-README.html Tue Apr 5 15:48:22 2016 (r412562) @@ -1,6 +1,6 @@ ---- README.html.orig Tue Jun 1 23:51:53 2004 -+++ README.html Wed Jun 9 12:46:58 2004 -@@ -38,9 +38,22 @@ +--- README.html.orig 2004-06-01 21:52:15 UTC ++++ README.html +@@ -38,11 +38,24 @@ This will install the following files: /usr/local/bin/ipaddr
~/.ipfw2dshield.rc.sample @@ -13,13 +13,15 @@ Copy or rename the sample configuration file to ~/.ipfw2dshield.rc and edit this latter file to fit your local demands. Please read section 2 below for an explanation of the configuration entries. -+

-+ +

+ +Note: The FreeBSD ports version does also accept +/usr/local/etc/ipfw2dshield.rc +as its configuration file. However, the preference is for +~/.ipfw2dshield.rc +in case that both these files exist. -

- ++

++ The script creates a stampfile in /var/tmp where it stores date + and time information which will be accessed on a subsequent run to prevent + multiple submission of log records. Modified: head/security/ipfw2dshield/files/patch-README.txt ============================================================================== --- head/security/ipfw2dshield/files/patch-README.txt Tue Apr 5 15:46:38 2016 (r412561) +++ head/security/ipfw2dshield/files/patch-README.txt Tue Apr 5 15:48:22 2016 (r412562) @@ -1,6 +1,6 @@ ---- README.txt.orig Tue Jun 1 23:51:53 2004 -+++ README.txt Wed Jun 9 12:46:58 2004 -@@ -21,9 +21,17 @@ +--- README.txt.orig 2004-06-01 21:52:15 UTC ++++ README.txt +@@ -21,10 +21,18 @@ This will install the following files: /usr/local/bin/ipaddr ~/.ipfw2dshield.rc.sample @@ -11,10 +11,11 @@ Copy or rename the sample configuration file to ~~//..iippffww22ddsshhiieelldd..rrcc and edit this latter file to fit your local demands. Please read section 2 below for an explanation of the configuration entries. -+ + +NNoottee:: The FreeBSD ports version does also accept //uussrr//llooccaall//eettcc//iippffww22ddsshhiieelldd..rrcc +as its configuration file. However, the preference is for ~~//..iippffww22ddsshhiieelldd..rrcc in +case that both these files exist. - ++ The script creates a stampfile in //vvaarr//ttmmpp where it stores date and time information which will be accessed on a subsequent run to prevent multiple + submission of log records. Hence this file should remain untouched for correct Modified: head/security/ipfw2dshield/files/patch-ipfw2dshield ============================================================================== --- head/security/ipfw2dshield/files/patch-ipfw2dshield Tue Apr 5 15:46:38 2016 (r412561) +++ head/security/ipfw2dshield/files/patch-ipfw2dshield Tue Apr 5 15:48:22 2016 (r412562) @@ -1,6 +1,6 @@ ---- ipfw2dshield.orig Sat Oct 9 10:53:48 2004 -+++ ipfw2dshield Wed Nov 24 21:46:41 2004 -@@ -279,7 +279,8 @@ +--- ipfw2dshield.orig 2004-10-09 08:54:10 UTC ++++ ipfw2dshield +@@ -279,7 +279,8 @@ else fi # Suck in the config file.