From scjamorim@bsd.com.br  Wed Oct 14 22:02:01 2009
Return-Path: <scjamorim@bsd.com.br>
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id DABA2106566B;
	Wed, 14 Oct 2009 22:02:01 +0000 (UTC)
	(envelope-from scjamorim@bsd.com.br)
Received: from qw-out-2122.google.com (qw-out-2122.google.com [74.125.92.26])
	by mx1.freebsd.org (Postfix) with ESMTP id 87AFB8FC1C;
	Wed, 14 Oct 2009 22:02:01 +0000 (UTC)
Received: by qw-out-2122.google.com with SMTP id 5so82059qwd.7
        for <multiple recipients>; Wed, 14 Oct 2009 15:02:00 -0700 (PDT)
Received: by 10.224.50.81 with SMTP id y17mr7676603qaf.109.1255557720397;
        Wed, 14 Oct 2009 15:02:00 -0700 (PDT)
Received: from fbsd.scjamorim.org (200-181-86-84.bsace705.dsl.brasiltelecom.net.br [200.181.86.84])
        by mx.google.com with ESMTPS id 21sm2931840qyk.12.2009.10.14.15.01.58
        (version=TLSv1/SSLv3 cipher=RC4-MD5);
        Wed, 14 Oct 2009 15:01:59 -0700 (PDT)
Received: by fbsd.scjamorim.org (Postfix, from userid 0)
	id 3B6543F5FAB; Wed, 14 Oct 2009 19:01:57 -0300 (BRT)
Message-Id: <20091014220157.3B6543F5FAB@fbsd.scjamorim.org>
Date: Wed, 14 Oct 2009 19:01:57 -0300 (BRT)
From: Sylvio Cesar <scjamorim@bsd.com.br>
To: bug-followup@FreeBSD.org
Cc: zeus@ix.netcom.com, miwi@freebsd.org
Subject: [PATCH] security/webfwlog: update to 0.94
X-Send-Pr-Version: 3.113
X-GNATS-Notify: zeus@ix.netcom.com

>Number:         139612
>Category:       ports
>Synopsis:       [PATCH] security/webfwlog: update to 0.94
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    miwi
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          update
>Submitter-Id:   current-users
>Arrival-Date:   Wed Oct 14 22:10:00 UTC 2009
>Closed-Date:    Sat Oct 17 07:08:50 UTC 2009
>Last-Modified:  Sat Oct 17 07:10:12 UTC 2009
>Originator:     Sylvio Cesar
>Release:        FreeBSD 9.0-CURRENT amd64
>Organization:
>Environment:
System: FreeBSD fbsd.scjamorim.org 9.0-CURRENT FreeBSD 9.0-CURRENT #0: Sat Oct 10 21:33:17 BRT 2009
>Description:
- Update to 0.94
- Fixed files of EXAMPLESDIR

Port maintainer (zeus@ix.netcom.com) is cc'd.

Generated with FreeBSD Port Tools 0.99
>How-To-Repeat:
>Fix:

--- webfwlog-0.94.patch begins here ---
Index: Makefile
===================================================================
RCS file: /home/ncvs/ports/security/webfwlog/Makefile,v
retrieving revision 1.6
diff -u -u -r1.6 Makefile
--- Makefile	22 Aug 2009 00:35:08 -0000	1.6
+++ Makefile	14 Oct 2009 21:59:16 -0000
@@ -6,8 +6,7 @@
 #
 
 PORTNAME=	webfwlog
-PORTVERSION=	0.93
-PORTREVISION=	1
+PORTVERSION=	0.94
 CATEGORIES=	security
 MASTER_SITES=	SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION}
 
@@ -28,11 +27,10 @@
 # want to install webfwlog, relative to ${PREFIX}.
 
 SUB_FILES=	pkg-message
-DOCS=		README AUTHORS COPYING \
-		CREDITS ChangeLog INSTALL \
-		README ReleaseNotes
 
-.include <bsd.port.pre.mk>
+PORTDOCS=	AUTHORS COPYING CREDITS ChangeLog INSTALL \
+		README ReleaseNotes
+PORTEXAMPLES=	*
 
 .if defined(WITH_MYSQL)
 USE_MYSQL=	yes
@@ -47,8 +45,6 @@
 do-install:
 	@${MKDIR} ${WWWDIR}
 	@${MKDIR} ${WWWDIR}/include/
-	@${MKDIR} ${EXAMPLESDIR}
-	@(cd ${WRKSRC}/examples/ && ${COPYTREE_SHARE} \* ${EXAMPLESDIR}/)
 	@(cd ${WRKSRC}/webfwlog/include/ && ${COPYTREE_SHARE} \* ${WWWDIR}/include/)
 	${INSTALL_PROGRAM} ${WRKSRC}/syslog/wfwl_syslog ${PREFIX}/bin/
 	${INSTALL_DATA} ${WRKSRC}/webfwlog/style.css ${WWWDIR}
@@ -60,11 +56,16 @@
 	@${MKDIR} ${DOCSDIR}/pgsql
 	@(cd ${WRKSRC}/mysql/ && ${COPYTREE_SHARE} \* ${DOCSDIR}/mysql/)
 	@(cd ${WRKSRC}/pgsql/ && ${COPYTREE_SHARE} \* ${DOCSDIR}/pgsql/)
-.for FILE in ${DOCS}
-	${INSTALL_DATA} ${WRKSRC}/${FILE} ${DOCSDIR}
+.for docs in ${PORTDOCS}
+	${INSTALL_DATA} ${WRKSRC}/${docs} ${DOCSDIR}
 .endfor
 .endif
 
+.if !defined(NOPORTEXAMPLES)
+	${MKDIR} ${EXAMPLESDIR}
+	${INSTALL_DATA} ${WRKSRC}/examples/* ${EXAMPLESDIR}
+.endif
+
 	@if test -f ${PREFIX}/etc/webfwlog.conf; \
 	then \
 		${CHOWN} :${WWWGRP} ${PREFIX}/etc/webfwlog.conf; \
@@ -86,4 +87,4 @@
 	@${CAT} ${PKGMESSAGE}
 	@${ECHO}
 
-.include <bsd.port.post.mk>
+.include <bsd.port.mk>
Index: distinfo
===================================================================
RCS file: /home/ncvs/ports/security/webfwlog/distinfo,v
retrieving revision 1.4
diff -u -u -r1.4 distinfo
--- distinfo	29 Jun 2007 15:06:55 -0000	1.4
+++ distinfo	14 Oct 2009 21:59:16 -0000
@@ -1,3 +1,3 @@
-MD5 (webfwlog-0.93.tar.gz) = 85f863bf11f882486169ac0b5bb36d22
-SHA256 (webfwlog-0.93.tar.gz) = 25cf014e1580c9e270cc07bbc6a5c51e12617d6695f67e281f5a1bb4ed9779ef
-SIZE (webfwlog-0.93.tar.gz) = 271426
+MD5 (webfwlog-0.94.tar.gz) = 5af2fbbd36b039c004592e9dbf10ccc1
+SHA256 (webfwlog-0.94.tar.gz) = c1b84dd4036aa9f81fc4fbd527eda202e51c3767659b8f1eef12bfb3381c5b36
+SIZE (webfwlog-0.94.tar.gz) = 288138
Index: pkg-plist
===================================================================
RCS file: /home/ncvs/ports/security/webfwlog/pkg-plist,v
retrieving revision 1.4
diff -u -u -r1.4 pkg-plist
--- pkg-plist	22 Nov 2008 08:09:04 -0000	1.4
+++ pkg-plist	14 Oct 2009 21:59:16 -0000
@@ -1,12 +1,5 @@
 bin/wfwl_syslog
 etc/webfwlog.conf.sample
-%%PORTDOCS%%%%DOCSDIR%%/AUTHORS
-%%PORTDOCS%%%%DOCSDIR%%/COPYING
-%%PORTDOCS%%%%DOCSDIR%%/CREDITS
-%%PORTDOCS%%%%DOCSDIR%%/ChangeLog
-%%PORTDOCS%%%%DOCSDIR%%/INSTALL
-%%PORTDOCS%%%%DOCSDIR%%/README
-%%PORTDOCS%%%%DOCSDIR%%/ReleaseNotes
 %%PORTDOCS%%%%DOCSDIR%%/mysql/README
 %%PORTDOCS%%%%DOCSDIR%%/mysql/setup
 %%PORTDOCS%%%%DOCSDIR%%/mysql/scripts/temp_grants
@@ -32,15 +25,6 @@
 %%PORTDOCS%%%%DOCSDIR%%/pgsql/scripts/wfwl_reports_addcol
 %%PORTDOCS%%%%DOCSDIR%%/pgsql/scripts/wfwl_reports_create
 %%PORTDOCS%%%%DOCSDIR%%/pgsql/scripts/wfwl_services_create
-%%EXAMPLESDIR%%/basic
-%%EXAMPLESDIR%%/current_count
-%%EXAMPLESDIR%%/current_dport
-%%EXAMPLESDIR%%/last20hosts
-%%EXAMPLESDIR%%/latest_logged_packets
-%%EXAMPLESDIR%%/recent_active
-%%EXAMPLESDIR%%/tcpports
-%%EXAMPLESDIR%%/tcpsyn
-%%EXAMPLESDIR%%/udpports
 %%WWWDIR%%/include/config.php
 %%WWWDIR%%/include/criteria.php
 %%WWWDIR%%/include/debug.php
@@ -68,7 +52,5 @@
 %%PORTDOCS%%@dirrm %%DOCSDIR%%/pgsql
 %%PORTDOCS%%@dirrm %%DOCSDIR%%/mysql/scripts
 %%PORTDOCS%%@dirrm %%DOCSDIR%%/mysql
-%%PORTDOCS%%@dirrm %%DOCSDIR%%
-@dirrm %%EXAMPLESDIR%%
 @dirrm %%WWWDIR%%/include
 @dirrmtry %%WWWDIR%%
--- webfwlog-0.94.patch ends here ---

>Release-Note:
>Audit-Trail:
State-Changed-From-To: open->feedback 
State-Changed-By: edwin 
State-Changed-When: Wed Oct 14 22:10:11 UTC 2009 
State-Changed-Why:  
Awaiting maintainers feedback (via the GNATS Auto Assign Tool) 

http://www.freebsd.org/cgi/query-pr.cgi?pr=139612 

From: Edwin Groothuis <edwin@FreeBSD.org>
To: zeus@ix.netcom.com
Cc: bug-followup@FreeBSD.org
Subject: Re: ports/139612: [PATCH] security/webfwlog: update to 0.94
Date: Wed, 14 Oct 2009 22:10:09 UT

 Maintainer of security/webfwlog,
 
 Please note that PR ports/139612 has just been submitted.
 
 If it contains a patch for an upgrade, an enhancement or a bug fix
 you agree on, reply to this email stating that you approve the patch
 and a committer will take care of it.
 
 The full text of the PR can be found at:
     http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/139612
 
 -- 
 Edwin Groothuis via the GNATS Auto Assign Tool
 edwin@FreeBSD.org

From: "Bob" <zeus@ix.netcom.com>
To: <bug-followup@FreeBSD.org>
Cc:  
Subject: RE: ports/139612: [PATCH] security/webfwlog: update to 0.94
Date: Wed, 14 Oct 2009 16:09:17 -0700

 The patch looks good to me.
 
 -Bob
 
 -----Original Message-----
 From: Edwin Groothuis [mailto:edwin@FreeBSD.org] 
 Sent: Wednesday, October 14, 2009 3:10 PM
 To: zeus@ix.netcom.com
 Cc: bug-followup@FreeBSD.org
 Subject: Re: ports/139612: [PATCH] security/webfwlog: update to 0.94
 
 Maintainer of security/webfwlog,
 
 Please note that PR ports/139612 has just been submitted.
 
 If it contains a patch for an upgrade, an enhancement or a bug fix
 you agree on, reply to this email stating that you approve the patch
 and a committer will take care of it.
 
 The full text of the PR can be found at:
     http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/139612
 
 -- 
 Edwin Groothuis via the GNATS Auto Assign Tool
 edwin@FreeBSD.org
 
Responsible-Changed-From-To: freebsd-ports-bugs->miwi 
Responsible-Changed-By: miwi 
Responsible-Changed-When: Fri Oct 16 08:34:21 UTC 2009 
Responsible-Changed-Why:  
I'll take it. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=139612 
State-Changed-From-To: feedback->closed 
State-Changed-By: miwi 
State-Changed-When: Sat Oct 17 07:08:50 UTC 2009 
State-Changed-Why:  
Committed. Thanks! 

http://www.freebsd.org/cgi/query-pr.cgi?pr=139612 

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/139612: commit references a PR
Date: Sat, 17 Oct 2009 07:08:59 +0000 (UTC)

 miwi        2009-10-17 07:08:45 UTC
 
   FreeBSD ports repository
 
   Modified files:
     security/webfwlog    Makefile distinfo pkg-plist 
   Log:
   - Update to 0.94
   - Respect NOPORT*
   
   PR:             139612
   Submitted by:   Sylvio Cesar <scjamorim@bsd.com.br>
   Approved by:    maintainer
   
   Revision  Changes    Path
   1.7       +12 -11    ports/security/webfwlog/Makefile
   1.5       +3 -3      ports/security/webfwlog/distinfo
   1.5       +0 -18     ports/security/webfwlog/pkg-plist
 _______________________________________________
 cvs-all@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/cvs-all
 To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org"
 
>Unformatted:
