From tkato432@yahoo.com  Mon Dec 16 18:02:35 2013
Return-Path: <tkato432@yahoo.com>
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1])
	(using TLSv1 with cipher ADH-AES256-SHA (256/256 bits))
	(No client certificate requested)
	by hub.freebsd.org (Postfix) with ESMTPS id C10E92A4
	for <FreeBSD-gnats-submit@FreeBSD.org>; Mon, 16 Dec 2013 18:01:45 +0000 (UTC)
Received: from omta01.auone-net.jp (mail-or1-f17.auone-net.jp [106.187.231.17])
	by mx1.freebsd.org (Postfix) with ESMTP id 85275184F
	for <FreeBSD-gnats-submit@FreeBSD.org>; Mon, 16 Dec 2013 18:01:45 +0000 (UTC)
Received: from coppermine.my.domain (ZT030106.ppp.dion.ne.jp [59.128.30.106])
	by omta01.auone-net.jp (au one net mail) with ESMTP id 6ED0E980173
	for <FreeBSD-gnats-submit@FreeBSD.org>; Tue, 17 Dec 2013 03:01:42 +0900 (JST)
Message-Id: <20131217024726.bd12a1ce401ea4369e3b14d2@yahoo.com>
Date: Tue, 17 Dec 2013 02:47:26 +0900
From: KATO Tsuguru <tkato432@yahoo.com>
To: FreeBSD-gnats-submit@FreeBSD.org
Subject: devel/pcre++: Fix build with clang

>Number:         184897
>Category:       ports
>Synopsis:       devel/pcre++: Fix build with clang
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    pawel
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Mon Dec 16 18:10:27 UTC 2013
>Closed-Date:    Tue Dec 24 12:42:48 UTC 2013
>Last-Modified:  Tue Dec 24 13:10:00 UTC 2013
>Originator:     KATO Tsuguru
>Release:        FreeBSD 8.4-RELEASE-p4 i386
>Organization:
>Environment:
>Description:
- Fix build with clang
- Support CXXFLAGS properly
- Add LICENSE

New file:
files/patch-libpcre++__pcre++.h

Remove file:
files/patch-doc::Makefile.in
files/patch-ltmain.sh

>How-To-Repeat:
>Fix:

diff -urN /usr/ports/devel/pcre++/Makefile devel/pcre++/Makefile
--- /usr/ports/devel/pcre++/Makefile	2013-11-06 21:49:19.000000000 +0900
+++ devel/pcre++/Makefile	2013-12-17 00:00:00.000000000 +0900
@@ -3,31 +3,36 @@
 
 PORTNAME=	pcre++
 PORTVERSION=	0.9.5
-PORTREVISION=	2
+PORTREVISION=	3
 CATEGORIES=	devel
 MASTER_SITES=	http://www.daemon.de/idisk/Apps/pcre++/
 
 MAINTAINER=	ports@FreeBSD.org
-COMMENT=	A wrapper class around the pcre library
+COMMENT=	Wrapper class around the pcre library
 
-LIB_DEPENDS=	pcre.3:${PORTSDIR}/devel/pcre
+LICENSE=	LGPL21
 
-PCRE_CONFIG?=	${LOCALBASE}/bin/pcre-config
+LIB_DEPENDS=	libpcre.so:${PORTSDIR}/devel/pcre
 
+USES=		gmake
 USE_AUTOTOOLS=	libtool
-USE_GMAKE=	yes
-GNU_CONFIGURE=	yes
-CPPFLAGS+=	`${PCRE_CONFIG} --cflags`
-LDFLAGS+=	`${PCRE_CONFIG} --libs`
 USE_LDCONFIG=	yes
 
-MAN3=		Pcre.3
-PLIST_SUB=	VERSION=${PORTVERSION}
+CPPFLAGS+=	$$(${PCRE_CONFIG} --cflags)
+LDFLAGS+=	$$(${PCRE_CONFIG} --libs)
 
 DOCSDIR=	${PREFIX}/share/doc/lib${PORTNAME}-${PORTVERSION}
 
-NO_STAGE=	yes
+PCRE_CONFIG?=	${LOCALBASE}/bin/pcre-config
+
 post-patch:
-	@${REINPLACE_CMD} -e 's|-O -g|\@CXXFLAGS\@|g' ${WRKSRC}/Makefile.in
+	@${REINPLACE_CMD} -e \
+		's| ../COPYING|| ; \
+		 s| $$(prefix)/doc| $${DESTDIR}$$(prefix)/share/doc|' \
+		${WRKSRC}/doc/Makefile.in
+.for i in examples/Makefile.in libpcre++/Makefile.in test/Makefile.in
+	@${REINPLACE_CMD} -e \
+		's|-O -g|@CXXFLAGS@|' ${WRKSRC}/${i}
+.endfor
 
 .include <bsd.port.mk>
diff -urN /usr/ports/devel/pcre++/files/patch-doc::Makefile.in devel/pcre++/files/patch-doc::Makefile.in
--- /usr/ports/devel/pcre++/files/patch-doc::Makefile.in	2013-11-06 21:49:19.000000000 +0900
+++ devel/pcre++/files/patch-doc::Makefile.in	1970-01-01 09:00:00.000000000 +0900
@@ -1,13 +0,0 @@
---- doc/Makefile.in.orig	Wed Jun 25 11:56:02 2003
-+++ doc/Makefile.in	Wed Jun 25 11:56:17 2003
-@@ -232,8 +232,8 @@
- 
- 
- install-data-local:
--	$(INSTALL) -m 755 -d $(prefix)/doc/libpcre++-$(VERSION)
--	$(INSTALL) -m 644 $(DOC_FILES) $(prefix)/doc/libpcre++-$(VERSION)/
-+	$(INSTALL) -m 755 -d $(prefix)/share/doc/libpcre++-$(VERSION)
-+	$(INSTALL) -m 644 $(DOC_FILES) $(prefix)/share/doc/libpcre++-$(VERSION)/
- 
- # Tell versions [3.59,3.63) of GNU make to not export all variables.
- # Otherwise a system limit (for SysV at least) may be exceeded.
diff -urN /usr/ports/devel/pcre++/files/patch-libpcre++__pcre++.h devel/pcre++/files/patch-libpcre++__pcre++.h
--- /usr/ports/devel/pcre++/files/patch-libpcre++__pcre++.h	1970-01-01 09:00:00.000000000 +0900
+++ devel/pcre++/files/patch-libpcre++__pcre++.h	2013-12-17 00:00:00.000000000 +0900
@@ -0,0 +1,15 @@
+--- libpcre++/pcre++.h.orig
++++ libpcre++/pcre++.h
+@@ -47,11 +47,11 @@
+ #include <map>
+ #include <stdexcept>
+ #include <iostream>
++#include <clocale>
+ 
+ 
+ extern "C" {
+   #include <pcre.h>
+-  #include <locale.h>
+ }
+ 
+ namespace pcrepp {
diff -urN /usr/ports/devel/pcre++/files/patch-ltmain.sh devel/pcre++/files/patch-ltmain.sh
--- /usr/ports/devel/pcre++/files/patch-ltmain.sh	2013-11-06 21:49:19.000000000 +0900
+++ devel/pcre++/files/patch-ltmain.sh	1970-01-01 09:00:00.000000000 +0900
@@ -1,15 +0,0 @@
---- ltmain.sh.orig	Wed Jun 25 11:24:31 2003
-+++ ltmain.sh	Wed Jun 25 11:25:27 2003
-@@ -4325,10 +4325,12 @@
- 	fi
- 
- 	# Install the pseudo-library for information purposes.
-+	if /usr/bin/false; then
- 	name=`$echo "X$file" | $Xsed -e 's%^.*/%%'`
- 	instname="$dir/$name"i
- 	$show "$install_prog $instname $destdir/$name"
- 	$run eval "$install_prog $instname $destdir/$name" || exit $?
-+	fi
- 
- 	# Maybe install the static library, too.
- 	test -n "$old_library" && staticlibs="$staticlibs $dir/$old_library"
diff -urN /usr/ports/devel/pcre++/pkg-plist devel/pcre++/pkg-plist
--- /usr/ports/devel/pcre++/pkg-plist	2013-11-06 21:49:19.000000000 +0900
+++ devel/pcre++/pkg-plist	2013-12-17 00:00:00.000000000 +0900
@@ -4,40 +4,40 @@
 lib/libpcre++.la
 lib/libpcre++.so
 lib/libpcre++.so.0
-%%DOCSDIR%%/AUTHORS
-%%DOCSDIR%%/COPYING
-%%DOCSDIR%%/ChangeLog
-%%DOCSDIR%%/INSTALL
-%%DOCSDIR%%/README
-%%DOCSDIR%%/annotated.html
-%%DOCSDIR%%/classPcre-members.html
-%%DOCSDIR%%/classPcre.html
-%%DOCSDIR%%/classPcre_1_1exception-members.html
-%%DOCSDIR%%/classPcre_1_1exception.html
-%%DOCSDIR%%/classpcrepp_1_1Pcre-members.html
-%%DOCSDIR%%/classpcrepp_1_1Pcre.html
-%%DOCSDIR%%/classpcrepp_1_1Pcre_1_1exception-members.html
-%%DOCSDIR%%/classpcrepp_1_1Pcre_1_1exception.html
-%%DOCSDIR%%/config.log
-%%DOCSDIR%%/doxygen.css
-%%DOCSDIR%%/doxygen.png
-%%DOCSDIR%%/files.html
-%%DOCSDIR%%/functions.html
-%%DOCSDIR%%/get_8cc-source.html
-%%DOCSDIR%%/get_8cc.html
-%%DOCSDIR%%/globals.html
-%%DOCSDIR%%/index.html
-%%DOCSDIR%%/namespacepcrepp.html
-%%DOCSDIR%%/namespaces.html
-%%DOCSDIR%%/namespacestd.html
-%%DOCSDIR%%/pcre++_8cc-source.html
-%%DOCSDIR%%/pcre++_8cc.html
-%%DOCSDIR%%/pcre++_8h-source.html
-%%DOCSDIR%%/pcre++_8h.html
-%%DOCSDIR%%/replace_8cc-source.html
-%%DOCSDIR%%/replace_8cc.html
-%%DOCSDIR%%/search_8cc-source.html
-%%DOCSDIR%%/search_8cc.html
-%%DOCSDIR%%/split_8cc-source.html
-%%DOCSDIR%%/split_8cc.html
-@dirrm %%DOCSDIR%%
+man/man3/Pcre.3.gz
+%%PORTDOCS%%%%DOCSDIR%%/AUTHORS
+%%PORTDOCS%%%%DOCSDIR%%/ChangeLog
+%%PORTDOCS%%%%DOCSDIR%%/INSTALL
+%%PORTDOCS%%%%DOCSDIR%%/README
+%%PORTDOCS%%%%DOCSDIR%%/annotated.html
+%%PORTDOCS%%%%DOCSDIR%%/classPcre-members.html
+%%PORTDOCS%%%%DOCSDIR%%/classPcre.html
+%%PORTDOCS%%%%DOCSDIR%%/classPcre_1_1exception-members.html
+%%PORTDOCS%%%%DOCSDIR%%/classPcre_1_1exception.html
+%%PORTDOCS%%%%DOCSDIR%%/classpcrepp_1_1Pcre-members.html
+%%PORTDOCS%%%%DOCSDIR%%/classpcrepp_1_1Pcre.html
+%%PORTDOCS%%%%DOCSDIR%%/classpcrepp_1_1Pcre_1_1exception-members.html
+%%PORTDOCS%%%%DOCSDIR%%/classpcrepp_1_1Pcre_1_1exception.html
+%%PORTDOCS%%%%DOCSDIR%%/config.log
+%%PORTDOCS%%%%DOCSDIR%%/doxygen.css
+%%PORTDOCS%%%%DOCSDIR%%/doxygen.png
+%%PORTDOCS%%%%DOCSDIR%%/files.html
+%%PORTDOCS%%%%DOCSDIR%%/functions.html
+%%PORTDOCS%%%%DOCSDIR%%/get_8cc-source.html
+%%PORTDOCS%%%%DOCSDIR%%/get_8cc.html
+%%PORTDOCS%%%%DOCSDIR%%/globals.html
+%%PORTDOCS%%%%DOCSDIR%%/index.html
+%%PORTDOCS%%%%DOCSDIR%%/namespacepcrepp.html
+%%PORTDOCS%%%%DOCSDIR%%/namespaces.html
+%%PORTDOCS%%%%DOCSDIR%%/namespacestd.html
+%%PORTDOCS%%%%DOCSDIR%%/pcre++_8cc-source.html
+%%PORTDOCS%%%%DOCSDIR%%/pcre++_8cc.html
+%%PORTDOCS%%%%DOCSDIR%%/pcre++_8h-source.html
+%%PORTDOCS%%%%DOCSDIR%%/pcre++_8h.html
+%%PORTDOCS%%%%DOCSDIR%%/replace_8cc-source.html
+%%PORTDOCS%%%%DOCSDIR%%/replace_8cc.html
+%%PORTDOCS%%%%DOCSDIR%%/search_8cc-source.html
+%%PORTDOCS%%%%DOCSDIR%%/search_8cc.html
+%%PORTDOCS%%%%DOCSDIR%%/split_8cc-source.html
+%%PORTDOCS%%%%DOCSDIR%%/split_8cc.html
+%%PORTDOCS%%@dirrm %%DOCSDIR%%
>Release-Note:
>Audit-Trail:
Responsible-Changed-From-To: freebsd-ports-bugs->pawel 
Responsible-Changed-By: pawel 
Responsible-Changed-When: Sat Dec 21 14:45:20 UTC 2013 
Responsible-Changed-Why:  
I'll take it. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=184897 
State-Changed-From-To: open->closed 
State-Changed-By: pawel 
State-Changed-When: Tue Dec 24 12:42:48 UTC 2013 
State-Changed-Why:  
Committed, with minor changes. Thanks! 

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

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/184897: commit references a PR
Date: Tue, 24 Dec 2013 12:42:54 +0000 (UTC)

 Author: pawel
 Date: Tue Dec 24 12:42:38 2013
 New Revision: 337339
 URL: http://svnweb.freebsd.org/changeset/ports/337339
 
 Log:
   - Fix build with clang
   - Respect CXXFLAGS
   - Add LICENSE
   - Support staging, strip library
   
   PR:		ports/184897
   Submitted by:	KATO Tsuguru <tkato432@yahoo.com>
 
 Added:
   head/devel/pcre++/files/patch-libpcre++__pcre++.h   (contents, props changed)
 Deleted:
   head/devel/pcre++/files/patch-doc::Makefile.in
   head/devel/pcre++/files/patch-ltmain.sh
 Modified:
   head/devel/pcre++/Makefile   (contents, props changed)
   head/devel/pcre++/pkg-plist   (contents, props changed)
 
 Modified: head/devel/pcre++/Makefile
 ==============================================================================
 --- head/devel/pcre++/Makefile	Tue Dec 24 12:33:44 2013	(r337338)
 +++ head/devel/pcre++/Makefile	Tue Dec 24 12:42:38 2013	(r337339)
 @@ -3,31 +3,39 @@
  
  PORTNAME=	pcre++
  PORTVERSION=	0.9.5
 -PORTREVISION=	2
 +PORTREVISION=	3
  CATEGORIES=	devel
  MASTER_SITES=	http://www.daemon.de/idisk/Apps/pcre++/
  
  MAINTAINER=	ports@FreeBSD.org
 -COMMENT=	A wrapper class around the pcre library
 +COMMENT=	Wrapper class around the pcre library
  
 -LIB_DEPENDS=	pcre.3:${PORTSDIR}/devel/pcre
 +LICENSE=	LGPL21
  
 -PCRE_CONFIG?=	${LOCALBASE}/bin/pcre-config
 +LIB_DEPENDS=	libpcre.so:${PORTSDIR}/devel/pcre
  
 +USES=		gmake
  USE_AUTOTOOLS=	libtool
 -USE_GMAKE=	yes
 -GNU_CONFIGURE=	yes
 -CPPFLAGS+=	`${PCRE_CONFIG} --cflags`
 -LDFLAGS+=	`${PCRE_CONFIG} --libs`
  USE_LDCONFIG=	yes
  
 -MAN3=		Pcre.3
 -PLIST_SUB=	VERSION=${PORTVERSION}
 +CPPFLAGS+=	$$(${PCRE_CONFIG} --cflags)
 +LDFLAGS+=	$$(${PCRE_CONFIG} --libs)
  
  DOCSDIR=	${PREFIX}/share/doc/lib${PORTNAME}-${PORTVERSION}
  
 -NO_STAGE=	yes
 +PCRE_CONFIG?=	${LOCALBASE}/bin/pcre-config
 +
  post-patch:
 -	@${REINPLACE_CMD} -e 's|-O -g|\@CXXFLAGS\@|g' ${WRKSRC}/Makefile.in
 +	@${REINPLACE_CMD} -e \
 +		's| ../COPYING|| ; \
 +		 s| $$(prefix)/doc| $${DESTDIR}$$(prefix)/share/doc|' \
 +		${WRKSRC}/doc/Makefile.in
 +.for i in examples/Makefile.in libpcre++/Makefile.in test/Makefile.in
 +	@${REINPLACE_CMD} -e \
 +		's|-O -g|@CXXFLAGS@|' ${WRKSRC}/${i}
 +.endfor
 +
 +post-install:
 +	@${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libpcre++.so.0
  
  .include <bsd.port.mk>
 
 Added: head/devel/pcre++/files/patch-libpcre++__pcre++.h
 ==============================================================================
 --- /dev/null	00:00:00 1970	(empty, because file is newly added)
 +++ head/devel/pcre++/files/patch-libpcre++__pcre++.h	Tue Dec 24 12:42:38 2013	(r337339)
 @@ -0,0 +1,15 @@
 +--- libpcre++/pcre++.h.orig
 ++++ libpcre++/pcre++.h
 +@@ -47,11 +47,11 @@
 + #include <map>
 + #include <stdexcept>
 + #include <iostream>
 ++#include <clocale>
 + 
 + 
 + extern "C" {
 +   #include <pcre.h>
 +-  #include <locale.h>
 + }
 + 
 + namespace pcrepp {
 
 Modified: head/devel/pcre++/pkg-plist
 ==============================================================================
 --- head/devel/pcre++/pkg-plist	Tue Dec 24 12:33:44 2013	(r337338)
 +++ head/devel/pcre++/pkg-plist	Tue Dec 24 12:42:38 2013	(r337339)
 @@ -4,8 +4,8 @@ lib/libpcre++.a
  lib/libpcre++.la
  lib/libpcre++.so
  lib/libpcre++.so.0
 +man/man3/Pcre.3.gz
  %%DOCSDIR%%/AUTHORS
 -%%DOCSDIR%%/COPYING
  %%DOCSDIR%%/ChangeLog
  %%DOCSDIR%%/INSTALL
  %%DOCSDIR%%/README
 _______________________________________________
 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"
 

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/184897: commit references a PR
Date: Tue, 24 Dec 2013 13:01:14 +0000 (UTC)

 Author: mat
 Date: Tue Dec 24 13:01:05 2013
 New Revision: 337350
 URL: http://svnweb.freebsd.org/changeset/ports/337350
 
 Log:
   MFH: r337339
   
   - Fix build with clang
   - Respect CXXFLAGS
   - Add LICENSE
   - Support staging, strip library
   
   PR:		ports/184897
   Submitted by:	KATO Tsuguru <tkato432@yahoo.com>
   Approved by:	portmgr (implicit)
 
 Added:
   branches/2014Q1/devel/pcre++/files/patch-libpcre++__pcre++.h
      - copied unchanged from r337339, head/devel/pcre++/files/patch-libpcre++__pcre++.h
 Deleted:
   branches/2014Q1/devel/pcre++/files/patch-doc::Makefile.in
   branches/2014Q1/devel/pcre++/files/patch-ltmain.sh
 Modified:
   branches/2014Q1/devel/pcre++/Makefile   (contents, props changed)
   branches/2014Q1/devel/pcre++/pkg-plist   (contents, props changed)
 Directory Properties:
   branches/2014Q1/   (props changed)
 
 Modified: branches/2014Q1/devel/pcre++/Makefile
 ==============================================================================
 --- branches/2014Q1/devel/pcre++/Makefile	Tue Dec 24 12:58:04 2013	(r337349)
 +++ branches/2014Q1/devel/pcre++/Makefile	Tue Dec 24 13:01:05 2013	(r337350)
 @@ -3,31 +3,39 @@
  
  PORTNAME=	pcre++
  PORTVERSION=	0.9.5
 -PORTREVISION=	2
 +PORTREVISION=	3
  CATEGORIES=	devel
  MASTER_SITES=	http://www.daemon.de/idisk/Apps/pcre++/
  
  MAINTAINER=	ports@FreeBSD.org
 -COMMENT=	A wrapper class around the pcre library
 +COMMENT=	Wrapper class around the pcre library
  
 -LIB_DEPENDS=	pcre.3:${PORTSDIR}/devel/pcre
 +LICENSE=	LGPL21
  
 -PCRE_CONFIG?=	${LOCALBASE}/bin/pcre-config
 +LIB_DEPENDS=	libpcre.so:${PORTSDIR}/devel/pcre
  
 +USES=		gmake
  USE_AUTOTOOLS=	libtool
 -USE_GMAKE=	yes
 -GNU_CONFIGURE=	yes
 -CPPFLAGS+=	`${PCRE_CONFIG} --cflags`
 -LDFLAGS+=	`${PCRE_CONFIG} --libs`
  USE_LDCONFIG=	yes
  
 -MAN3=		Pcre.3
 -PLIST_SUB=	VERSION=${PORTVERSION}
 +CPPFLAGS+=	$$(${PCRE_CONFIG} --cflags)
 +LDFLAGS+=	$$(${PCRE_CONFIG} --libs)
  
  DOCSDIR=	${PREFIX}/share/doc/lib${PORTNAME}-${PORTVERSION}
  
 -NO_STAGE=	yes
 +PCRE_CONFIG?=	${LOCALBASE}/bin/pcre-config
 +
  post-patch:
 -	@${REINPLACE_CMD} -e 's|-O -g|\@CXXFLAGS\@|g' ${WRKSRC}/Makefile.in
 +	@${REINPLACE_CMD} -e \
 +		's| ../COPYING|| ; \
 +		 s| $$(prefix)/doc| $${DESTDIR}$$(prefix)/share/doc|' \
 +		${WRKSRC}/doc/Makefile.in
 +.for i in examples/Makefile.in libpcre++/Makefile.in test/Makefile.in
 +	@${REINPLACE_CMD} -e \
 +		's|-O -g|@CXXFLAGS@|' ${WRKSRC}/${i}
 +.endfor
 +
 +post-install:
 +	@${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libpcre++.so.0
  
  .include <bsd.port.mk>
 
 Copied: branches/2014Q1/devel/pcre++/files/patch-libpcre++__pcre++.h (from r337339, head/devel/pcre++/files/patch-libpcre++__pcre++.h)
 ==============================================================================
 --- /dev/null	00:00:00 1970	(empty, because file is newly added)
 +++ branches/2014Q1/devel/pcre++/files/patch-libpcre++__pcre++.h	Tue Dec 24 13:01:05 2013	(r337350, copy of r337339, head/devel/pcre++/files/patch-libpcre++__pcre++.h)
 @@ -0,0 +1,15 @@
 +--- libpcre++/pcre++.h.orig
 ++++ libpcre++/pcre++.h
 +@@ -47,11 +47,11 @@
 + #include <map>
 + #include <stdexcept>
 + #include <iostream>
 ++#include <clocale>
 + 
 + 
 + extern "C" {
 +   #include <pcre.h>
 +-  #include <locale.h>
 + }
 + 
 + namespace pcrepp {
 
 Modified: branches/2014Q1/devel/pcre++/pkg-plist
 ==============================================================================
 --- branches/2014Q1/devel/pcre++/pkg-plist	Tue Dec 24 12:58:04 2013	(r337349)
 +++ branches/2014Q1/devel/pcre++/pkg-plist	Tue Dec 24 13:01:05 2013	(r337350)
 @@ -4,8 +4,8 @@ lib/libpcre++.a
  lib/libpcre++.la
  lib/libpcre++.so
  lib/libpcre++.so.0
 +man/man3/Pcre.3.gz
  %%DOCSDIR%%/AUTHORS
 -%%DOCSDIR%%/COPYING
  %%DOCSDIR%%/ChangeLog
  %%DOCSDIR%%/INSTALL
  %%DOCSDIR%%/README
 _______________________________________________
 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"
 
>Unformatted:
