From tkato432@yahoo.com  Mon Oct  8 18:02:19 2012
Return-Path: <tkato432@yahoo.com>
Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52])
	by hub.freebsd.org (Postfix) with ESMTP id F10D6106566B
	for <FreeBSD-gnats-submit@FreeBSD.org>; Mon,  8 Oct 2012 18:02:06 +0000 (UTC)
	(envelope-from tkato432@yahoo.com)
Received: from msa101lp.auone-net.jp (msa101lp.auone-net.jp [222.3.140.164])
	by mx1.freebsd.org (Postfix) with ESMTP id 961C88FC1F
	for <FreeBSD-gnats-submit@FreeBSD.org>; Mon,  8 Oct 2012 18:02:06 +0000 (UTC)
Received: from localhost.localdomain (ZT030227.ppp.dion.ne.jp [59.128.30.227])
	by msa101lp.auone-net.jp (au one net msa) with ESMTP id 1D26634034
	for <FreeBSD-gnats-submit@FreeBSD.org>; Tue,  9 Oct 2012 03:02:03 +0900 (JST)
Message-Id: <20121009025652.1d6d07eac6d6b3c8543bde4a@yahoo.com>
Date: Tue, 9 Oct 2012 02:56:52 +0900
From: KATO Tsuguru <tkato432@yahoo.com>
To: FreeBSD-gnats-submit@FreeBSD.org
Subject: x11/lupe: Update MASTER_SITES

>Number:         172511
>Category:       ports
>Synopsis:       x11/lupe: Update MASTER_SITES
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    araujo
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Mon Oct 08 18:10:18 UTC 2012
>Closed-Date:    Mon Jan 21 03:45:47 UTC 2013
>Last-Modified:  Mon Jan 21 03:45:47 UTC 2013
>Originator:     KATO Tsuguru
>Release:        FreeBSD 7.4-RELEASE-p10 i386
>Organization:
>Environment:
>Description:
- Update MASTER_SITES and WWW: line
- Support PLIST_FILES
- Fix build with clang

New file:
files/patch-avionics.c
files/patch-lupe.c
files/patch-option.c

Remove file:
pkg-plist

>How-To-Repeat:
>Fix:

diff -urN /usr/ports/x11/lupe/Makefile x11/lupe/Makefile
--- /usr/ports/x11/lupe/Makefile	2012-09-30 12:40:44.000000000 +0900
+++ x11/lupe/Makefile	2012-10-07 20:06:23.000000000 +0900
@@ -4,22 +4,41 @@
 PORTNAME=	lupe
 PORTVERSION=	0.08c
 CATEGORIES=	x11 accessibility
-MASTER_SITES=	http://www.oersted.co.jp/~yav/soft/
-DISTNAME=	lupe008c
+MASTER_SITES=	http://www2s.biglobe.ne.jp/~yav/soft/
+DISTNAME=	${PORTNAME}${PORTVERSION:S/.//}
 
 MAINTAINER=	ports@FreeBSD.org
 COMMENT=	Real-time magnifying glass for X11
 
-WRKSRC=		${WRKDIR}/lupe
-USE_IMAKE=	yes
+OPTIONS_DEFINE=	DOCS
+
+WRKSRC=		${WRKDIR}/${PORTNAME}
+
 USE_XORG=	x11 xext
-XMKMF=		xmkmf
-MAN1=		lupe.1
+GNU_CONFIGURE=	yes
+
+CPPFLAGS+=	-I${LOCALBASE}/include
+LDFLAGS+=	-L${LOCALBASE}/lib -lX11 -lXext -lm
+
+MAN1=		${PORTNAME}.1
+PORTDOCS=	${PORTNAME}.doc
+PLIST_FILES=	bin/${PORTNAME}
+
+.include <bsd.port.options.mk>
+
+post-extract:
+	@${LN} -sf ${PORTNAME}.man ${WRKSRC}/${PORTNAME}.1
+
+do-build:
+	(cd ${WRKSRC} \
+		&& ${CC} ${CFLAGS} ${CPPFLAGS} -o ${PORTNAME} *.c ${LDFLAGS})
 
-post-install:
-.if !defined(NOPORTDOCS)
-	${MKDIR} ${DOCSDIR}
-	${INSTALL_MAN} ${WRKSRC}/lupe.doc ${DOCSDIR}
+do-install:
+	(cd ${WRKSRC} && ${INSTALL_PROGRAM} ${PORTNAME} ${PREFIX}/bin)
+	(cd ${WRKSRC} && ${INSTALL_MAN} ${PORTNAME}.1 ${MANPREFIX}/man/man1)
+.if ${PORT_OPTIONS:MDOCS}
+	@${MKDIR} ${DOCSDIR}
+	(cd ${WRKSRC} && ${INSTALL_DATA} ${PORTNAME}.doc ${DOCSDIR})
 .endif
 
 .include <bsd.port.mk>
diff -urN /usr/ports/x11/lupe/files/patch-avionics.c x11/lupe/files/patch-avionics.c
--- /usr/ports/x11/lupe/files/patch-avionics.c	1970-01-01 09:00:00.000000000 +0900
+++ x11/lupe/files/patch-avionics.c	2012-10-07 20:04:43.000000000 +0900
@@ -0,0 +1,13 @@
+--- avionics.c.orig	1999-05-29 18:08:12.000000000 +0900
++++ avionics.c	2012-10-07 20:03:12.000000000 +0900
+@@ -16,6 +16,10 @@
+ #include <stdlib.h>
+ #endif
+ 
++#ifdef HAVE_STRING_H
++#include <string.h>
++#endif
++
+ #include "extern.h"
+ #include "timer.h"
+ 
diff -urN /usr/ports/x11/lupe/files/patch-lupe.c x11/lupe/files/patch-lupe.c
--- /usr/ports/x11/lupe/files/patch-lupe.c	1970-01-01 09:00:00.000000000 +0900
+++ x11/lupe/files/patch-lupe.c	2012-10-07 20:04:18.000000000 +0900
@@ -0,0 +1,22 @@
+--- lupe.c.orig	1999-05-29 18:08:12.000000000 +0900
++++ lupe.c	2012-10-07 20:03:55.000000000 +0900
+@@ -19,6 +19,10 @@
+ #include "version.h"
+ #include "timer.h"
+ 
++#ifdef HAVE_STDLIB_H
++#include <stdlib.h>
++#endif
++
+ #ifdef HAVE_STRING_H
+ #include <string.h>
+ #else
+@@ -339,7 +343,7 @@
+   photo_delay *= 1000;		/* sec. to millisec. */
+ }
+ 
+-void main(argc, argv)
++int main(argc, argv)
+      int argc;
+      char **argv;
+ {
diff -urN /usr/ports/x11/lupe/files/patch-option.c x11/lupe/files/patch-option.c
--- /usr/ports/x11/lupe/files/patch-option.c	1970-01-01 09:00:00.000000000 +0900
+++ x11/lupe/files/patch-option.c	2012-10-07 20:04:32.000000000 +0900
@@ -0,0 +1,13 @@
+--- option.c.orig	1999-05-29 18:08:12.000000000 +0900
++++ option.c	2012-10-07 20:02:51.000000000 +0900
+@@ -13,6 +13,10 @@
+ #include <stdlib.h>
+ #endif
+ 
++#ifdef HAVE_STRING_H
++#include <string.h>
++#endif
++
+ #include "extern.h"
+ 
+ #define OPT_FUNC	1
diff -urN /usr/ports/x11/lupe/pkg-descr x11/lupe/pkg-descr
--- /usr/ports/x11/lupe/pkg-descr	1998-02-08 04:55:58.000000000 +0900
+++ x11/lupe/pkg-descr	2012-10-07 20:11:47.000000000 +0900
@@ -1,8 +1,6 @@
 Lupe is a magnifying glass for X Window System.
-Lupe is like xmag but it updates the image in real-time
-and needs more processor power.
 
-See man page for details.
+Lupe is like xmag but it updates the image in real-time and needs
+more processor power.
 
-Orignal lupe written by UHD98984@pcvan.or.jp .
-This port is done by kazu@jp.freebsd.org .
+WWW: http://www2s.biglobe.ne.jp/~yav/soft/indexe.html
diff -urN /usr/ports/x11/lupe/pkg-plist x11/lupe/pkg-plist
--- /usr/ports/x11/lupe/pkg-plist	2008-07-10 03:01:56.000000000 +0900
+++ x11/lupe/pkg-plist	1970-01-01 09:00:00.000000000 +0900
@@ -1,3 +0,0 @@
-bin/lupe
-%%PORTDOCS%%%%DOCSDIR%%/lupe.doc
-%%PORTDOCS%%@dirrm %%DOCSDIR%%
>Release-Note:
>Audit-Trail:
Responsible-Changed-From-To: freebsd-ports-bugs->miwi 
Responsible-Changed-By: edwin 
Responsible-Changed-When: Mon Oct 8 18:11:51 UTC 2012 
Responsible-Changed-Why:  
miwi@ wants his PRs (via the GNATS Auto Assign Tool) 

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

From: KATO Tsuguru <tkato432@yahoo.com>
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/172511: x11/lupe: Update MASTER_SITES
Date: Sat, 27 Oct 2012 02:47:25 +0900

 This is a multi-part message in MIME format.
 
 --Multipart=_Sat__27_Oct_2012_02_47_25_+0900_JwwP+Fg63g=qkK3Z
 Content-Type: text/plain; charset=US-ASCII
 Content-Transfer-Encoding: 7bit
 
 Remake of the patch against current tree.
 
 --Multipart=_Sat__27_Oct_2012_02_47_25_+0900_JwwP+Fg63g=qkK3Z
 Content-Type: text/x-diff;
  name="x11_lupe.diff"
 Content-Disposition: attachment;
  filename="x11_lupe.diff"
 Content-Transfer-Encoding: 7bit
 
 diff -urN /usr/ports/x11/lupe/Makefile x11/lupe/Makefile
 --- /usr/ports/x11/lupe/Makefile	2012-10-26 19:23:01.000000000 +0900
 +++ x11/lupe/Makefile	2012-10-26 21:39:56.000000000 +0900
 @@ -4,25 +4,41 @@
  PORTNAME=	lupe
  PORTVERSION=	0.08c
  CATEGORIES=	x11 accessibility
 -MASTER_SITES=	http://www.oersted.co.jp/~yav/soft/
 -DISTNAME=	lupe008c
 +MASTER_SITES=	http://www2s.biglobe.ne.jp/~yav/soft/
 +DISTNAME=	${PORTNAME}${PORTVERSION:S/.//}
  
  MAINTAINER=	ports@FreeBSD.org
  COMMENT=	Real-time magnifying glass for X11
  
 -DEPRECATED=	No more public distfiles
 -EXPIRATION_DATE=	2012-11-26
 +OPTIONS_DEFINE=	DOCS
 +
 +WRKSRC=		${WRKDIR}/${PORTNAME}
  
 -WRKSRC=		${WRKDIR}/lupe
 -USE_IMAKE=	yes
  USE_XORG=	x11 xext
 -XMKMF=		xmkmf
 -MAN1=		lupe.1
 +GNU_CONFIGURE=	yes
 +
 +CPPFLAGS+=	-I${LOCALBASE}/include
 +LDFLAGS+=	-L${LOCALBASE}/lib -lX11 -lXext -lm
 +
 +MAN1=		${PORTNAME}.1
 +PORTDOCS=	${PORTNAME}.doc
 +PLIST_FILES=	bin/${PORTNAME}
 +
 +.include <bsd.port.options.mk>
 +
 +post-extract:
 +	@${LN} -sf ${PORTNAME}.man ${WRKSRC}/${PORTNAME}.1
 +
 +do-build:
 +	(cd ${WRKSRC} \
 +		&& ${CC} ${CFLAGS} ${CPPFLAGS} -o ${PORTNAME} *.c ${LDFLAGS})
  
 -post-install:
 -.if !defined(NOPORTDOCS)
 -	${MKDIR} ${DOCSDIR}
 -	${INSTALL_MAN} ${WRKSRC}/lupe.doc ${DOCSDIR}
 +do-install:
 +	(cd ${WRKSRC} && ${INSTALL_PROGRAM} ${PORTNAME} ${PREFIX}/bin)
 +	(cd ${WRKSRC} && ${INSTALL_MAN} ${PORTNAME}.1 ${MANPREFIX}/man/man1)
 +.if ${PORT_OPTIONS:MDOCS}
 +	@${MKDIR} ${DOCSDIR}
 +	(cd ${WRKSRC} && ${INSTALL_DATA} ${PORTNAME}.doc ${DOCSDIR})
  .endif
  
  .include <bsd.port.mk>
 diff -urN /usr/ports/x11/lupe/files/patch-avionics.c x11/lupe/files/patch-avionics.c
 --- /usr/ports/x11/lupe/files/patch-avionics.c	1970-01-01 09:00:00.000000000 +0900
 +++ x11/lupe/files/patch-avionics.c	2012-10-07 20:04:43.000000000 +0900
 @@ -0,0 +1,13 @@
 +--- avionics.c.orig	1999-05-29 18:08:12.000000000 +0900
 ++++ avionics.c	2012-10-07 20:03:12.000000000 +0900
 +@@ -16,6 +16,10 @@
 + #include <stdlib.h>
 + #endif
 + 
 ++#ifdef HAVE_STRING_H
 ++#include <string.h>
 ++#endif
 ++
 + #include "extern.h"
 + #include "timer.h"
 + 
 diff -urN /usr/ports/x11/lupe/files/patch-lupe.c x11/lupe/files/patch-lupe.c
 --- /usr/ports/x11/lupe/files/patch-lupe.c	1970-01-01 09:00:00.000000000 +0900
 +++ x11/lupe/files/patch-lupe.c	2012-10-07 20:04:18.000000000 +0900
 @@ -0,0 +1,22 @@
 +--- lupe.c.orig	1999-05-29 18:08:12.000000000 +0900
 ++++ lupe.c	2012-10-07 20:03:55.000000000 +0900
 +@@ -19,6 +19,10 @@
 + #include "version.h"
 + #include "timer.h"
 + 
 ++#ifdef HAVE_STDLIB_H
 ++#include <stdlib.h>
 ++#endif
 ++
 + #ifdef HAVE_STRING_H
 + #include <string.h>
 + #else
 +@@ -339,7 +343,7 @@
 +   photo_delay *= 1000;		/* sec. to millisec. */
 + }
 + 
 +-void main(argc, argv)
 ++int main(argc, argv)
 +      int argc;
 +      char **argv;
 + {
 diff -urN /usr/ports/x11/lupe/files/patch-option.c x11/lupe/files/patch-option.c
 --- /usr/ports/x11/lupe/files/patch-option.c	1970-01-01 09:00:00.000000000 +0900
 +++ x11/lupe/files/patch-option.c	2012-10-07 20:04:32.000000000 +0900
 @@ -0,0 +1,13 @@
 +--- option.c.orig	1999-05-29 18:08:12.000000000 +0900
 ++++ option.c	2012-10-07 20:02:51.000000000 +0900
 +@@ -13,6 +13,10 @@
 + #include <stdlib.h>
 + #endif
 + 
 ++#ifdef HAVE_STRING_H
 ++#include <string.h>
 ++#endif
 ++
 + #include "extern.h"
 + 
 + #define OPT_FUNC	1
 diff -urN /usr/ports/x11/lupe/pkg-descr x11/lupe/pkg-descr
 --- /usr/ports/x11/lupe/pkg-descr	1998-02-08 04:55:58.000000000 +0900
 +++ x11/lupe/pkg-descr	2012-10-07 20:11:47.000000000 +0900
 @@ -1,8 +1,6 @@
  Lupe is a magnifying glass for X Window System.
 -Lupe is like xmag but it updates the image in real-time
 -and needs more processor power.
  
 -See man page for details.
 +Lupe is like xmag but it updates the image in real-time and needs
 +more processor power.
  
 -Orignal lupe written by UHD98984@pcvan.or.jp .
 -This port is done by kazu@jp.freebsd.org .
 +WWW: http://www2s.biglobe.ne.jp/~yav/soft/indexe.html
 diff -urN /usr/ports/x11/lupe/pkg-plist x11/lupe/pkg-plist
 --- /usr/ports/x11/lupe/pkg-plist	2008-07-10 03:01:56.000000000 +0900
 +++ x11/lupe/pkg-plist	1970-01-01 09:00:00.000000000 +0900
 @@ -1,3 +0,0 @@
 -bin/lupe
 -%%PORTDOCS%%%%DOCSDIR%%/lupe.doc
 -%%PORTDOCS%%@dirrm %%DOCSDIR%%
 
 --Multipart=_Sat__27_Oct_2012_02_47_25_+0900_JwwP+Fg63g=qkK3Z--
Responsible-Changed-From-To: miwi->freebsd-ports-bugs 
Responsible-Changed-By: bapt 
Responsible-Changed-When: Mon Oct 29 09:38:40 UTC 2012 
Responsible-Changed-Why:  
Reassign to the heap miwi being overloaded for now 

http://www.freebsd.org/cgi/query-pr.cgi?pr=172511 
Responsible-Changed-From-To: freebsd-ports-bugs->araujo 
Responsible-Changed-By: araujo 
Responsible-Changed-When: Tue Dec 11 13:04:04 UTC 2012 
Responsible-Changed-Why:  
I'll take it. 

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

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/172511: commit references a PR
Date: Mon, 21 Jan 2013 03:29:47 +0000 (UTC)

 Author: araujo
 Date: Mon Jan 21 03:29:37 2013
 New Revision: 310737
 URL: http://svnweb.freebsd.org/changeset/ports/310737
 
 Log:
   - Update MASTER_SITES and WWWW line.
   - Support PLIST_FILES.
   - Fix build with clang.
   
   PR:		ports/172511
   Submitted by:	KATO Tsuguru <tkato432@yahoo.com>
 
 Added:
   head/x11/lupe/files/
   head/x11/lupe/files/patch-avionics.c   (contents, props changed)
   head/x11/lupe/files/patch-lupe.c   (contents, props changed)
   head/x11/lupe/files/patch-option.c   (contents, props changed)
 Deleted:
   head/x11/lupe/pkg-plist
 Modified:
   head/x11/lupe/Makefile
   head/x11/lupe/pkg-descr   (contents, props changed)
 
 Modified: head/x11/lupe/Makefile
 ==============================================================================
 --- head/x11/lupe/Makefile	Mon Jan 21 03:28:11 2013	(r310736)
 +++ head/x11/lupe/Makefile	Mon Jan 21 03:29:37 2013	(r310737)
 @@ -4,25 +4,41 @@
  PORTNAME=	lupe
  PORTVERSION=	0.08c
  CATEGORIES=	x11 accessibility
 -MASTER_SITES=	http://www.oersted.co.jp/~yav/soft/
 -DISTNAME=	lupe008c
 +MASTER_SITES=	http://www2s.biglobe.ne.jp/~yav/soft/
 +DISTNAME=	${PORTNAME}${PORTVERSION:S/.//}
  
  MAINTAINER=	ports@FreeBSD.org
  COMMENT=	Real-time magnifying glass for X11
  
 -DEPRECATED=	No more public distfiles
 -EXPIRATION_DATE=	2012-11-26
 +OPTIONS_DEFINE=	DOCS
 +
 +WRKSRC=		${WRKDIR}/${PORTNAME}
  
 -WRKSRC=		${WRKDIR}/lupe
 -USE_IMAKE=	yes
  USE_XORG=	x11 xext
 -XMKMF=		xmkmf
 -MAN1=		lupe.1
 +GNU_CONFIGURE=	yes
 +
 +CPPFLAGS+=	-I${LOCALBASE}/include
 +LDFLAGS+=	-L${LOCALBASE}/lib -lX11 -lXext -lm
 +
 +MAN1=		${PORTNAME}.1
 +PORTDOCS=	${PORTNAME}.doc
 +PLIST_FILES=	bin/${PORTNAME}
 +
 +.include <bsd.port.options.mk>
 +
 +post-extract:
 +	@${LN} -sf ${PORTNAME}.man ${WRKSRC}/${PORTNAME}.1
 +
 +do-build:
 +	(cd ${WRKSRC} \
 +		&& ${CC} ${CFLAGS} ${CPPFLAGS} -o ${PORTNAME} *.c ${LDFLAGS})
  
 -post-install:
 -.if !defined(NOPORTDOCS)
 -	${MKDIR} ${DOCSDIR}
 -	${INSTALL_MAN} ${WRKSRC}/lupe.doc ${DOCSDIR}
 +do-install:
 +	(cd ${WRKSRC} && ${INSTALL_PROGRAM} ${PORTNAME} ${PREFIX}/bin)
 +	(cd ${WRKSRC} && ${INSTALL_MAN} ${PORTNAME}.1 ${MANPREFIX}/man/man1)
 +.if ${PORT_OPTIONS:MDOCS}
 +	@${MKDIR} ${DOCSDIR}
 +	(cd ${WRKSRC} && ${INSTALL_DATA} ${PORTNAME}.doc ${DOCSDIR})
  .endif
  
  .include <bsd.port.mk>
 
 Added: head/x11/lupe/files/patch-avionics.c
 ==============================================================================
 --- /dev/null	00:00:00 1970	(empty, because file is newly added)
 +++ head/x11/lupe/files/patch-avionics.c	Mon Jan 21 03:29:37 2013	(r310737)
 @@ -0,0 +1,13 @@
 +--- avionics.c.orig	1999-05-29 18:08:12.000000000 +0900
 ++++ avionics.c	2012-10-07 20:03:12.000000000 +0900
 +@@ -16,6 +16,10 @@
 + #include <stdlib.h>
 + #endif
 + 
 ++#ifdef HAVE_STRING_H
 ++#include <string.h>
 ++#endif
 ++
 + #include "extern.h"
 + #include "timer.h"
 + 
 
 Added: head/x11/lupe/files/patch-lupe.c
 ==============================================================================
 --- /dev/null	00:00:00 1970	(empty, because file is newly added)
 +++ head/x11/lupe/files/patch-lupe.c	Mon Jan 21 03:29:37 2013	(r310737)
 @@ -0,0 +1,22 @@
 +--- lupe.c.orig	1999-05-29 18:08:12.000000000 +0900
 ++++ lupe.c	2012-10-07 20:03:55.000000000 +0900
 +@@ -19,6 +19,10 @@
 + #include "version.h"
 + #include "timer.h"
 + 
 ++#ifdef HAVE_STDLIB_H
 ++#include <stdlib.h>
 ++#endif
 ++
 + #ifdef HAVE_STRING_H
 + #include <string.h>
 + #else
 +@@ -339,7 +343,7 @@
 +   photo_delay *= 1000;		/* sec. to millisec. */
 + }
 + 
 +-void main(argc, argv)
 ++int main(argc, argv)
 +      int argc;
 +      char **argv;
 + {
 
 Added: head/x11/lupe/files/patch-option.c
 ==============================================================================
 --- /dev/null	00:00:00 1970	(empty, because file is newly added)
 +++ head/x11/lupe/files/patch-option.c	Mon Jan 21 03:29:37 2013	(r310737)
 @@ -0,0 +1,13 @@
 +--- option.c.orig	1999-05-29 18:08:12.000000000 +0900
 ++++ option.c	2012-10-07 20:02:51.000000000 +0900
 +@@ -13,6 +13,10 @@
 + #include <stdlib.h>
 + #endif
 + 
 ++#ifdef HAVE_STRING_H
 ++#include <string.h>
 ++#endif
 ++
 + #include "extern.h"
 + 
 + #define OPT_FUNC	1
 
 Modified: head/x11/lupe/pkg-descr
 ==============================================================================
 --- head/x11/lupe/pkg-descr	Mon Jan 21 03:28:11 2013	(r310736)
 +++ head/x11/lupe/pkg-descr	Mon Jan 21 03:29:37 2013	(r310737)
 @@ -1,8 +1,6 @@
  Lupe is a magnifying glass for X Window System.
 -Lupe is like xmag but it updates the image in real-time
 -and needs more processor power.
  
 -See man page for details.
 +Lupe is like xmag but it updates the image in real-time and needs
 +more processor power.
  
 -Orignal lupe written by UHD98984@pcvan.or.jp .
 -This port is done by kazu@jp.freebsd.org .
 +WWW: http://www2s.biglobe.ne.jp/~yav/soft/indexe.html
 _______________________________________________
 svn-ports-all@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/svn-ports-all
 To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
 
State-Changed-From-To: open->closed 
State-Changed-By: araujo 
State-Changed-When: Mon Jan 21 03:45:46 UTC 2013 
State-Changed-Why:  
Committed. Thanks! 

http://www.freebsd.org/cgi/query-pr.cgi?pr=172511 
>Unformatted:
