From sevan@newbie.thingamajig-systems.co.uk  Sat Jan 23 06:04:59 2010
Return-Path: <sevan@newbie.thingamajig-systems.co.uk>
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id 385B4106575B
	for <FreeBSD-gnats-submit@freebsd.org>; Sat, 23 Jan 2010 06:04:59 +0000 (UTC)
	(envelope-from sevan@newbie.thingamajig-systems.co.uk)
Received: from newbie.thingamajig-systems.co.uk (newbie.thingamajig-systems.co.uk [93.97.185.103])
	by mx1.freebsd.org (Postfix) with ESMTP id 9BB418FC1B
	for <FreeBSD-gnats-submit@freebsd.org>; Sat, 23 Jan 2010 06:04:58 +0000 (UTC)
Received: from newbie.thingamajig-systems.co.uk (localhost [127.0.0.1])
	by newbie.thingamajig-systems.co.uk (8.14.3/8.14.3) with ESMTP id o0N61Reu059553;
	Sat, 23 Jan 2010 06:01:27 GMT
	(envelope-from sevan@newbie.thingamajig-systems.co.uk)
Received: (from root@localhost)
	by newbie.thingamajig-systems.co.uk (8.14.3/8.14.3/Submit) id o0N61RoI059552;
	Sat, 23 Jan 2010 06:01:27 GMT
	(envelope-from sevan)
Message-Id: <201001230601.o0N61RoI059552@newbie.thingamajig-systems.co.uk>
Date: Sat, 23 Jan 2010 06:01:27 GMT
From: Sevan Janiyan <venture37@geeklan.co.uk>
To: FreeBSD-gnats-submit@freebsd.org
Cc: udo.schweigert@siemens.com
Subject: [PATCH] net/iplog: add a new rc script 
X-Send-Pr-Version: 3.113
X-GNATS-Notify: udo.schweigert@siemens.com

>Number:         143108
>Category:       ports
>Synopsis:       [PATCH] net/iplog: add a new rc script
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    wen
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Sat Jan 23 06:10:02 UTC 2010
>Closed-Date:    Sat Mar 13 12:59:44 UTC 2010
>Last-Modified:  Sat Mar 13 13:00:13 UTC 2010
>Originator:     Sevan Janiyan
>Release:        FreeBSD 8.0-RELEASE-p2 amd64
>Organization:
>Environment:
System: FreeBSD newbie.thingamajig-systems.co.uk 8.0-RELEASE-p2 FreeBSD 8.0-RELEASE-p2 #0: Tue Jan  5 21:11:58 UTC
>Description:

Added file(s):
- pkg-deinstall
- files/iplog.in
- files/pkg-message.in

Removed file(s):
- files/iplog.sh.tmpl

Port maintainer (udo.schweigert@siemens.com) is cc'd.

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

--- iplog-2.2.3_3.patch begins here ---
Index: Makefile
===================================================================
RCS file: /home/ncvs/ports/net/iplog/Makefile,v
retrieving revision 1.22
diff -u -r1.22 Makefile
--- Makefile	22 Aug 2009 00:31:27 -0000	1.22
+++ Makefile	23 Jan 2010 05:58:42 -0000
@@ -19,8 +19,11 @@
 CONFIGURE_ENV=	CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}"
 CPPFLAGS=	-I${LOCALBASE}/include ${PTHREAD_CFLAGS}
 LDFLAGS=	-L${LOCALBASE}/lib ${PTHREAD_LIBS}
-MAN5=	iplog.conf.5
-MAN8=	iplog.8
+MAN5=		iplog.conf.5
+MAN8=		iplog.8
+
+USE_RC_SUBR=	iplog
+SUB_FILES=	pkg-message
 
 .include <bsd.port.pre.mk>
 post-patch:
@@ -43,16 +46,6 @@
 	@${ECHO_MSG} "See ${PREFIX}/etc/example-iplog.conf for an example"
 	@${ECHO_MSG} "============================================================================"
 .endif
-	@${ECHO_MSG}
-	@${ECHO_MSG} "Installing ${PREFIX}/etc/rc.d/iplog.sh.sample file."
-	@${CAT} ${FILESDIR}/iplog.sh.tmpl | \
-		${SED} -e 's;PREFIX;${PREFIX};' \
-		> ${PREFIX}/etc/rc.d/iplog.sh.sample
-	@${CHMOD} 555 ${PREFIX}/etc/rc.d/iplog.sh.sample
-	@${ECHO_MSG} "----------------------------------------------------------------------------"
-	@${ECHO_MSG} "If you want iplog to be run as a daemon then do:"
-	@${ECHO_MSG} "cp -p ${PREFIX}/etc/rc.d/iplog.sh.sample ${PREFIX}/etc/rc.d/iplog.sh"
-	@${ECHO_MSG} "----------------------------------------------------------------------------"
-	@${ECHO_MSG}
+	@${MKDIR} /var/run/iplog
 
 .include <bsd.port.post.mk>
Index: pkg-deinstall
===================================================================
RCS file: pkg-deinstall
diff -N pkg-deinstall
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ pkg-deinstall	23 Jan 2010 05:58:42 -0000
@@ -0,0 +1,2 @@
+#!/bin/sh
+rm -rf /var/run/iplog
Index: pkg-plist
===================================================================
RCS file: /home/ncvs/ports/net/iplog/pkg-plist,v
retrieving revision 1.4
diff -u -r1.4 pkg-plist
--- pkg-plist	7 Jan 2001 18:57:24 -0000	1.4
+++ pkg-plist	23 Jan 2010 05:58:42 -0000
@@ -1,5 +1,4 @@
 sbin/iplog
 @unexec if cmp -s %D/etc/iplog.conf %D/etc/example-iplog.conf; then rm -f %D/etc/iplog.conf; fi
 etc/example-iplog.conf
-etc/rc.d/iplog.sh.sample
 @exec test -f %B/iplog.conf || cp %B/%f %B/iplog.conf
Index: files/iplog.in
===================================================================
RCS file: files/iplog.in
diff -N files/iplog.in
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ files/iplog.in	23 Jan 2010 05:58:42 -0000
@@ -0,0 +1,30 @@
+#!/bin/sh
+
+# $FreeBSD$
+#
+# PROVIDE: iplog
+# REQUIRE: LOGIN
+# KEYWORD: shutdown
+#
+# Add the following lines to /etc/rc.conf.local or /etc/rc.conf
+# to enable this service:
+#
+# iplog_enable (bool):   Set to NO by default.
+#               Set it to YES to enable iplog.
+#
+
+. /etc/rc.subr
+
+name="iplog"
+rcvar=${name}_enable
+
+command=%%PREFIX%%/sbin/${name}
+pidfile=/var/run/${name}/${name}.pid
+
+load_rc_config $name
+
+: ${iplog_enable="NO"}
+
+command_args="-d -z"
+
+run_rc_command "$1"
Index: files/iplog.sh.tmpl
===================================================================
RCS file: files/iplog.sh.tmpl
diff -N files/iplog.sh.tmpl
--- files/iplog.sh.tmpl	7 Jan 2001 18:57:24 -0000	1.1
+++ /dev/null	1 Jan 1970 00:00:00 -0000
@@ -1,15 +0,0 @@
-#!/bin/sh
-#
-
-umask 022
-arg=${1:-start}
-
-test -x PREFIX/sbin/iplog || exit 1
-echo -n " iplog"
-
-case $arg in
-start)
-	PREFIX/sbin/iplog -d -z;;
-stop)
-	killall iplog;;
-esac
Index: files/pkg-message.in
===================================================================
RCS file: files/pkg-message.in
diff -N files/pkg-message.in
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ files/pkg-message.in	23 Jan 2010 05:58:42 -0000
@@ -0,0 +1,5 @@
+=========================================================
+To daemonise iplog add iplog_enable="YES" to /etc/rc.conf
+& run
+%%PREFIX%%/etc/rc.d/iplog start
+=========================================================
--- iplog-2.2.3_3.patch ends here ---

>Release-Note:
>Audit-Trail:
State-Changed-From-To: open->feedback 
State-Changed-By: edwin 
State-Changed-When: Sat Jan 23 06:10:13 UTC 2010 
State-Changed-Why:  
Awaiting maintainers feedback (via the GNATS Auto Assign Tool) 

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

From: Edwin Groothuis <edwin@FreeBSD.org>
To: udo.schweigert@siemens.com
Cc: bug-followup@FreeBSD.org
Subject: Re: ports/143108: [PATCH] net/iplog: add a new rc script
Date: Sat, 23 Jan 2010 06:10:10 UT

 Maintainer of net/iplog,
 
 Please note that PR ports/143108 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/143108
 
 -- 
 Edwin Groothuis via the GNATS Auto Assign Tool
 edwin@FreeBSD.org
Responsible-Changed-From-To: freebsd-ports-bugs->wen 
Responsible-Changed-By: wen 
Responsible-Changed-When: Sat Jan 23 08:21:27 UTC 2010 
Responsible-Changed-Why:  
I'll take it. 

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

From: Mark Linimon <linimon@lonesome.com>
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/143108: [PATCH] net/iplog: add a new rc script
Date: Wed, 27 Jan 2010 15:54:35 -0600

 ----- Forwarded message from "Schweigert, Udo CERT" <Udo.Schweigert@siemens.com> -----
 
 From: "Schweigert, Udo CERT" <Udo.Schweigert@siemens.com>
 To: wen@freebsd.org
 Cc: Udo Schweigert <Udo.Schweigert@siemens.com>,
 	freebsd-ports-bugs@freebsd.org
 Subject: Re: ports/143108: [PATCH] net/iplog: add a new rc script
 
 I approve (attached again an almost identical patch from me).
 
 Udo (maintainer)
 
 diff -ru  /usr/ports/net/iplog/Makefile ./Makefile
 --- /usr/ports/net/iplog/Makefile	2009-08-23 06:12:10.000000000 +0200
 +++ ./Makefile	2010-01-27 19:54:36.000000000 +0100
 @@ -7,7 +7,7 @@
  
  PORTNAME=	iplog
  PORTVERSION=	2.2.3
 -PORTREVISION=	3
 +PORTREVISION=	4
  CATEGORIES=	net security
  MASTER_SITES=	SF/ojnk/${PORTNAME}/${PORTVERSION}
  
 @@ -22,6 +22,9 @@
  MAN5=	iplog.conf.5
  MAN8=	iplog.8
  
 +USE_RC_SUBR=	iplog
 +SUB_FILES=	pkg-message
 +
  .include <bsd.port.pre.mk>
  post-patch:
  .for FILE in example-iplog.conf iplog.8 iplog.conf.5 src/iplog.h
 @@ -43,16 +46,6 @@
  	@${ECHO_MSG} "See ${PREFIX}/etc/example-iplog.conf for an example"
  	@${ECHO_MSG} "============================================================================"
  .endif
 -	@${ECHO_MSG}
 -	@${ECHO_MSG} "Installing ${PREFIX}/etc/rc.d/iplog.sh.sample file."
 -	@${CAT} ${FILESDIR}/iplog.sh.tmpl | \
 -		${SED} -e 's;PREFIX;${PREFIX};' \
 -		> ${PREFIX}/etc/rc.d/iplog.sh.sample
 -	@${CHMOD} 555 ${PREFIX}/etc/rc.d/iplog.sh.sample
 -	@${ECHO_MSG} "----------------------------------------------------------------------------"
 -	@${ECHO_MSG} "If you want iplog to be run as a daemon then do:"
 -	@${ECHO_MSG} "cp -p ${PREFIX}/etc/rc.d/iplog.sh.sample ${PREFIX}/etc/rc.d/iplog.sh"
 -	@${ECHO_MSG} "----------------------------------------------------------------------------"
 -	@${ECHO_MSG}
 +	@${MKDIR} /var/run/iplog
  
  .include <bsd.port.post.mk>
 diff -ru  /usr/ports/net/iplog/files/iplog.in ./files/iplog.in
 --- /usr/ports/net/iplog/files/iplog.in	1970-01-01 01:00:00.000000000 +0100
 +++ ./files/iplog.in	2010-01-27 19:46:46.000000000 +0100
 @@ -0,0 +1,30 @@
 +#!/bin/sh
 +
 +# $FreeBSD$
 +#
 +# PROVIDE: iplog
 +# REQUIRE: LOGIN
 +# KEYWORD: shutdown
 +#
 +# Add the following lines to /etc/rc.conf.local or /etc/rc.conf
 +# to enable this service:
 +#
 +# iplog_enable (bool):   Set to NO by default.
 +#               Set it to YES to enable iplog.
 +#
 +
 +. /etc/rc.subr
 +
 +name="iplog"
 +rcvar=${name}_enable
 +
 +command=%%PREFIX%%/sbin/${name}
 +pidfile=/var/run/${name}/${name}.pid
 +
 +load_rc_config $name
 +
 +: ${iplog_enable="NO"}
 +
 +command_args="-d -z"
 +
 +run_rc_command "$1"
 diff -ru  /usr/ports/net/iplog/files/iplog.sh.tmpl ./files/iplog.sh.tmpl
 --- /usr/ports/net/iplog/files/iplog.sh.tmpl	2001-01-07 19:57:24.000000000 +0100
 +++ ./files/iplog.sh.tmpl	1970-01-01 01:00:00.000000000 +0100
 @@ -1,15 +0,0 @@
 -#!/bin/sh
 -#
 -
 -umask 022
 -arg=${1:-start}
 -
 -test -x PREFIX/sbin/iplog || exit 1
 -echo -n " iplog"
 -
 -case $arg in
 -start)
 -	PREFIX/sbin/iplog -d -z;;
 -stop)
 -	killall iplog;;
 -esac
 diff -ru  /usr/ports/net/iplog/files/pkg-message.in ./files/pkg-message.in
 --- /usr/ports/net/iplog/files/pkg-message.in	1970-01-01 01:00:00.000000000 +0100
 +++ ./files/pkg-message.in	2010-01-27 19:46:46.000000000 +0100
 @@ -0,0 +1,5 @@
 +=========================================================
 +To daemonise iplog add iplog_enable="YES" to /etc/rc.conf
 +& run
 +%%PREFIX%%/etc/rc.d/iplog start
 +=========================================================
 diff -ru  /usr/ports/net/iplog/pkg-deinstall ./pkg-deinstall
 --- /usr/ports/net/iplog/pkg-deinstall	1970-01-01 01:00:00.000000000 +0100
 +++ ./pkg-deinstall	2010-01-27 19:46:46.000000000 +0100
 @@ -0,0 +1,2 @@
 +#!/bin/sh
 +rm -rf /var/run/iplog
 diff -ru  /usr/ports/net/iplog/pkg-plist ./pkg-plist
 --- /usr/ports/net/iplog/pkg-plist	2001-01-07 19:57:24.000000000 +0100
 +++ ./pkg-plist	2010-01-27 19:46:46.000000000 +0100
 @@ -1,5 +1,4 @@
  sbin/iplog
  @unexec if cmp -s %D/etc/iplog.conf %D/etc/example-iplog.conf; then rm -f %D/etc/iplog.conf; fi
  etc/example-iplog.conf
 -etc/rc.d/iplog.sh.sample
  @exec test -f %B/iplog.conf || cp %B/%f %B/iplog.conf
 
 _______________________________________________
 freebsd-ports-bugs@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-ports-bugs
 To unsubscribe, send any mail to "freebsd-ports-bugs-unsubscribe@freebsd.org"
 
 ----- End forwarded message -----

From: Mark Linimon <linimon@lonesome.com>
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/143108: [PATCH] net/iplog: add a new rc script
Date: Wed, 27 Jan 2010 15:55:09 -0600

 ----- Forwarded message from "Schweigert, Udo CERT" <Udo.Schweigert@siemens.com> -----
 
 From: "Schweigert, Udo CERT" <Udo.Schweigert@siemens.com>
 To: wen@freebsd.org
 Cc: Udo Schweigert <Udo.Schweigert@siemens.com>,
 	freebsd-ports-bugs@freebsd.org
 Subject: Re: ports/143108: [PATCH] net/iplog: add a new rc script
 
 Sorry, in the last minute I found a little problem with the rc file. Attached
 is a working solution.
 
 Udo
 
 diff -ru  /usr/ports/net/iplog/Makefile ./Makefile
 --- /usr/ports/net/iplog/Makefile	2009-08-23 06:12:10.000000000 +0200
 +++ ./Makefile	2010-01-27 19:54:36.000000000 +0100
 @@ -7,7 +7,7 @@
  
  PORTNAME=	iplog
  PORTVERSION=	2.2.3
 -PORTREVISION=	3
 +PORTREVISION=	4
  CATEGORIES=	net security
  MASTER_SITES=	SF/ojnk/${PORTNAME}/${PORTVERSION}
  
 @@ -22,6 +22,9 @@
  MAN5=	iplog.conf.5
  MAN8=	iplog.8
  
 +USE_RC_SUBR=	iplog
 +SUB_FILES=	pkg-message
 +
  .include <bsd.port.pre.mk>
  post-patch:
  .for FILE in example-iplog.conf iplog.8 iplog.conf.5 src/iplog.h
 @@ -43,16 +46,6 @@
  	@${ECHO_MSG} "See ${PREFIX}/etc/example-iplog.conf for an example"
  	@${ECHO_MSG} "============================================================================"
  .endif
 -	@${ECHO_MSG}
 -	@${ECHO_MSG} "Installing ${PREFIX}/etc/rc.d/iplog.sh.sample file."
 -	@${CAT} ${FILESDIR}/iplog.sh.tmpl | \
 -		${SED} -e 's;PREFIX;${PREFIX};' \
 -		> ${PREFIX}/etc/rc.d/iplog.sh.sample
 -	@${CHMOD} 555 ${PREFIX}/etc/rc.d/iplog.sh.sample
 -	@${ECHO_MSG} "----------------------------------------------------------------------------"
 -	@${ECHO_MSG} "If you want iplog to be run as a daemon then do:"
 -	@${ECHO_MSG} "cp -p ${PREFIX}/etc/rc.d/iplog.sh.sample ${PREFIX}/etc/rc.d/iplog.sh"
 -	@${ECHO_MSG} "----------------------------------------------------------------------------"
 -	@${ECHO_MSG}
 +	@${MKDIR} /var/run/iplog
  
  .include <bsd.port.post.mk>
 diff -ru  /usr/ports/net/iplog/files/iplog.in ./files/iplog.in
 --- /usr/ports/net/iplog/files/iplog.in	1970-01-01 01:00:00.000000000 +0100
 +++ ./files/iplog.in	2010-01-27 20:09:45.000000000 +0100
 @@ -0,0 +1,30 @@
 +#!/bin/sh
 +
 +# $FreeBSD$
 +#
 +# PROVIDE: iplog
 +# REQUIRE: LOGIN
 +# KEYWORD: shutdown
 +#
 +# Add the following lines to /etc/rc.conf.local or /etc/rc.conf
 +# to enable this service:
 +#
 +# iplog_enable (bool):   Set to NO by default.
 +#               Set it to YES to enable iplog.
 +#
 +
 +. /etc/rc.subr
 +
 +name="iplog"
 +rcvar=${name}_enable
 +
 +command=%%PREFIX%%/sbin/${name}
 +pidfile=/var/run/${name}/${name}.pid
 +
 +load_rc_config $name
 +
 +: ${iplog_enable="NO"}
 +
 +command_args="-d -z --pid-file=${pidfile}"
 +
 +run_rc_command "$1"
 diff -ru  /usr/ports/net/iplog/files/iplog.sh.tmpl ./files/iplog.sh.tmpl
 --- /usr/ports/net/iplog/files/iplog.sh.tmpl	2001-01-07 19:57:24.000000000 +0100
 +++ ./files/iplog.sh.tmpl	1970-01-01 01:00:00.000000000 +0100
 @@ -1,15 +0,0 @@
 -#!/bin/sh
 -#
 -
 -umask 022
 -arg=${1:-start}
 -
 -test -x PREFIX/sbin/iplog || exit 1
 -echo -n " iplog"
 -
 -case $arg in
 -start)
 -	PREFIX/sbin/iplog -d -z;;
 -stop)
 -	killall iplog;;
 -esac
 diff -ru  /usr/ports/net/iplog/files/pkg-message.in ./files/pkg-message.in
 --- /usr/ports/net/iplog/files/pkg-message.in	1970-01-01 01:00:00.000000000 +0100
 +++ ./files/pkg-message.in	2010-01-27 19:46:46.000000000 +0100
 @@ -0,0 +1,5 @@
 +=========================================================
 +To daemonise iplog add iplog_enable="YES" to /etc/rc.conf
 +& run
 +%%PREFIX%%/etc/rc.d/iplog start
 +=========================================================
 diff -ru  /usr/ports/net/iplog/pkg-deinstall ./pkg-deinstall
 --- /usr/ports/net/iplog/pkg-deinstall	1970-01-01 01:00:00.000000000 +0100
 +++ ./pkg-deinstall	2010-01-27 19:46:46.000000000 +0100
 @@ -0,0 +1,2 @@
 +#!/bin/sh
 +rm -rf /var/run/iplog
 diff -ru  /usr/ports/net/iplog/pkg-plist ./pkg-plist
 --- /usr/ports/net/iplog/pkg-plist	2001-01-07 19:57:24.000000000 +0100
 +++ ./pkg-plist	2010-01-27 19:46:46.000000000 +0100
 @@ -1,5 +1,4 @@
  sbin/iplog
  @unexec if cmp -s %D/etc/iplog.conf %D/etc/example-iplog.conf; then rm -f %D/etc/iplog.conf; fi
  etc/example-iplog.conf
 -etc/rc.d/iplog.sh.sample
  @exec test -f %B/iplog.conf || cp %B/%f %B/iplog.conf
 
 _______________________________________________
 freebsd-ports-bugs@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-ports-bugs
 To unsubscribe, send any mail to "freebsd-ports-bugs-unsubscribe@freebsd.org"
 
 ----- End forwarded message -----
State-Changed-From-To: feedback->closed 
State-Changed-By: wen 
State-Changed-When: Sat Mar 13 12:59:43 UTC 2010 
State-Changed-Why:  
Committed. Thanks! 

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

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/143108: commit references a PR
Date: Sat, 13 Mar 2010 12:54:29 +0000 (UTC)

 wen         2010-03-13 12:54:15 UTC
 
   FreeBSD ports repository
 
   Modified files:
     net/iplog            Makefile pkg-plist 
   Added files:
     net/iplog            pkg-deinstall 
     net/iplog/files      iplog.in pkg-message.in 
   Removed files:
     net/iplog/files      iplog.sh.tmpl 
   Log:
   - Add a new rc script
   
   PR:             ports/143108
   Submitted by:   Sevan Janiyan <venture37@geeklan.co.uk>
   Approved by:    maintainer
   
   Revision  Changes    Path
   1.23      +6 -13     ports/net/iplog/Makefile
   1.1       +30 -0     ports/net/iplog/files/iplog.in (new)
   1.2       +0 -15     ports/net/iplog/files/iplog.sh.tmpl (dead)
   1.1       +5 -0      ports/net/iplog/files/pkg-message.in (new)
   1.1       +2 -0      ports/net/iplog/pkg-deinstall (new)
   1.5       +0 -1      ports/net/iplog/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:
