From unobe@cpan.org  Sat Aug 20 10:12:46 2011
Return-Path: <unobe@cpan.org>
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id A39371065670
	for <FreeBSD-gnats-submit@freebsd.org>; Sat, 20 Aug 2011 10:12:46 +0000 (UTC)
	(envelope-from unobe@cpan.org)
Received: from smtp.pobox.com (b-pb-sasl-quonix.pobox.com [208.72.237.35])
	by mx1.freebsd.org (Postfix) with ESMTP id 74B628FC14
	for <FreeBSD-gnats-submit@freebsd.org>; Sat, 20 Aug 2011 10:12:46 +0000 (UTC)
Received: from smtp.pobox.com (unknown [127.0.0.1])
	by b-sasl-quonix.pobox.com (Postfix) with ESMTP id 429963BAC
	for <FreeBSD-gnats-submit@freebsd.org>; Sat, 20 Aug 2011 06:12:45 -0400 (EDT)
Received: from b-pb-sasl-quonix.pobox.com (unknown [127.0.0.1])
	by b-sasl-quonix.pobox.com (Postfix) with ESMTP id 3AA1A3BAB
	for <FreeBSD-gnats-submit@freebsd.org>; Sat, 20 Aug 2011 06:12:45 -0400 (EDT)
Received: from onyx (unknown [184.99.180.59]) by b-sasl-quonix.pobox.com
 (Postfix) with ESMTPA id 816E63BAA for <FreeBSD-gnats-submit@freebsd.org>;
 Sat, 20 Aug 2011 06:12:44 -0400 (EDT)
Received: by onyx (nbSMTP-1.00) for uid 5742 unobe@cpan.org; Sat, 20 Aug 2011
 03:11:51 -0700 (MST)
Message-Id: <20110820101244.816E63BAA@b-sasl-quonix.pobox.com>
Date: Sat, 20 Aug 2011 06:12:44 -0400 (EDT)
From: David Romano <unobe@cpan.org>
Reply-To: David Romano <unobe@cpan.org>
To: FreeBSD-gnats-submit@freebsd.org
Cc:
Subject: [PATCH] devel/libparserutils: update dependencies and build process
X-Send-Pr-Version: 3.113
X-GNATS-Notify:

>Number:         159935
>Category:       ports
>Synopsis:       New port: devel/libparserutils A library useful when writing parsers
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    pawel
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Sat Aug 20 10:20:07 UTC 2011
>Closed-Date:    Mon Oct 03 19:41:33 UTC 2011
>Last-Modified:  Mon Oct  3 19:50:01 UTC 2011
>Originator:     David Romano
>Release:        FreeBSD 8.2-RELEASE i386
>Organization:
>Environment:
>Description:
LibParserUtils provides various pieces of functionality that are useful when
writing parsers. These are:

  + A number of character set convertors
  + Mapping of character set names to/from MIB enum values
  + UTF-8 and UTF-16 (host endian) support functions
  + Various simple data structures (resizeable buffer, stack, vector)
  + A UTF-8 input stream

WWW: http://source.netsurf-browser.org/tags/libparserutils/
>How-To-Repeat:
>Fix:
# This is a shell archive.  Save it in a file, remove anything before
# this line, and then unpack it by entering "sh file".  Note, it may
# create directories; files and directories will be owned by you and
# have default permissions.
#
# This archive contains:
#
#	libparserutils
#	libparserutils/Makefile
#	libparserutils/pkg-plist
#	libparserutils/pkg-descr
#	libparserutils/distinfo
#	libparserutils/files
#	libparserutils/files/patch-Makefile
#
echo c - libparserutils
mkdir -p libparserutils > /dev/null 2>&1
echo x - libparserutils/Makefile
sed 's/^X//' >libparserutils/Makefile << 'a57eee12ecda3c4b2b741e73af0073ed'
X# ports collection makefile for:	libparserutils
X# Date created:				20 August 2011
X# Whom:					David Romano <unobe@cpan.org>
X#
X# $FreeBSD$
X#
X
XPORTNAME=	libparserutils
XPORTVERSION=	0.1.0
XPORTREVISION= 1
XCATEGORIES=	devel
XMASTER_SITES=	http://www.rurs.us/fbsd/ports/
X
XMAINTAINER=	unobe@cpan.org
XCOMMENT=	A library useful when writing parsers (formerly a part of NetSurf)
X
XUSE_GMAKE=	yes
X
XCFLAGS+=	-I${LOCALBASE}/lib
XCFLAGS+=	-I${LOCALBASE}/include
XLDFLAGS+=	-L${LOCALBASE}/lib
X
XPKGCONFIG_PORTDIR= ${PORTSDIR}/devel/pkg-config
XRUN_DEPENDS+=	pkg-config:${PKGCONFIG_PORTDIR}:install
XALL_TARGET=
X
XOPTIONS=	ICONV	"Adds iconv support"				On \
X			STATIC	"Build statically linked library"	On \
X			TEST	"Enable tests"						On \
X			DOXYGEN	"Build Doxygen Documentation"		On
X
X.include <bsd.port.pre.mk>
X
X.if defined(WITH_ICONV)
XCFLAGS+=	-DWITH_ICONV_FILTER
XLDFLAGS+=	-liconv
X.endif
X
X.if !defined(WITH_STATIC)
XUSE_LDCONFIG=yes
XCOMPONENT_TYPE=	lib-shared
XMAKE_ENV+=	COMPONENT_TYPE=${COMPONENT_TYPE}
XPLIST_SUB+= NO_STATIC="" STATIC="@comment "
X.else
XPLIST_SUB+= NO_STATIC="@comment " STATIC=""
X.endif
X
X.if defined(WITH_TEST)
XUSE_PERL5_BUILD=1
XALL_TARGET+= test
X.endif
X
X.if defined(WITH_DOXYGEN)
XDOXYGEN_PORTDIR= ${PORTSDIR}/devel/doxygen
XBUILD_DEPENDS+=	doxygen:${DOXYGEN_PORTDIR}:build
XPATH:=${PATH}:`cd ${DOXYGEN_PORTDIR}; make -V WRKSRC`/bin
XALL_TARGET+= docs
X.endif
X
XMAKE_ENV+=	PATH=${PATH} LDFLAGS='${LDFLAGS}'
X
X.include <bsd.port.post.mk>
a57eee12ecda3c4b2b741e73af0073ed
echo x - libparserutils/pkg-plist
sed 's/^X//' >libparserutils/pkg-plist << 'f08bb756ae9595462df00cc9d8104bac'
Xinclude/parserutils/errors.h
Xinclude/parserutils/functypes.h
Xinclude/parserutils/parserutils.h
Xinclude/parserutils/types.h
Xinclude/parserutils/charset/codec.h
Xinclude/parserutils/charset/mibenum.h
Xinclude/parserutils/charset/utf16.h
Xinclude/parserutils/charset/utf8.h
Xinclude/parserutils/input/inputstream.h
Xinclude/parserutils/utils/buffer.h
Xinclude/parserutils/utils/stack.h
Xinclude/parserutils/utils/vector.h
Xlibdata/pkgconfig/libparserutils.pc
X%%STATIC%%lib/libparserutils.a
X%%NO_STATIC%%lib/libparserutils.so
X%%NO_STATIC%%lib/libparserutils.so.0
X%%NO_STATIC%%lib/libparserutils.so.0.1.0
X@dirrm include/parserutils/utils
X@dirrm include/parserutils/input
X@dirrm include/parserutils/charset
X@dirrm include/parserutils
f08bb756ae9595462df00cc9d8104bac
echo x - libparserutils/pkg-descr
sed 's/^X//' >libparserutils/pkg-descr << '7e7e71f95de8cf68e5c47ba5bf382bf2'
XLibParserUtils provides various pieces of functionality that are useful when
Xwriting parsers. These are:
X
X  + A number of character set convertors
X  + Mapping of character set names to/from MIB enum values
X  + UTF-8 and UTF-16 (host endian) support functions
X  + Various simple data structures (resizeable buffer, stack, vector)
X  + A UTF-8 input stream
X
XWWW: http://source.netsurf-browser.org/tags/libparserutils/
7e7e71f95de8cf68e5c47ba5bf382bf2
echo x - libparserutils/distinfo
sed 's/^X//' >libparserutils/distinfo << '765d60d2ecab147a5b784c4cf766e7d5'
XSHA256 (libparserutils-0.1.0.tar.gz) = 15c92598e4ecd2fcd27d421eeadf896f7ba6eb284de7b2c6f2418529b0f8325b
XSIZE (libparserutils-0.1.0.tar.gz) = 85017
765d60d2ecab147a5b784c4cf766e7d5
echo c - libparserutils/files
mkdir -p libparserutils/files > /dev/null 2>&1
echo x - libparserutils/files/patch-Makefile
sed 's/^X//' >libparserutils/files/patch-Makefile << '539c288baeddf3fe884ecc9388f9169e'
X--- Makefile.orig	2011-08-13 20:17:22.000000000 -0700
X+++ Makefile	2011-08-13 20:17:30.000000000 -0700
X@@ -46,5 +46,5 @@
X I := /include/parserutils/utils
X INSTALL_ITEMS := $(INSTALL_ITEMS) $(I):$(Is)/buffer.h;$(Is)/stack.h;$(Is)/vector.h
X 
X-INSTALL_ITEMS := $(INSTALL_ITEMS) /lib/pkgconfig:lib$(COMPONENT).pc.in
X+INSTALL_ITEMS := $(INSTALL_ITEMS) /libdata/pkgconfig:lib$(COMPONENT).pc.in
X INSTALL_ITEMS := $(INSTALL_ITEMS) /lib:$(OUTPUT)
539c288baeddf3fe884ecc9388f9169e
exit


>Release-Note:
>Audit-Trail:
Responsible-Changed-From-To: freebsd-ports-bug->freebsd-ports-bugs 
Responsible-Changed-By: linimon 
Responsible-Changed-When: Mon Sep 5 05:09:08 UTC 2011 
Responsible-Changed-Why:  
Fix synopsis and assignment. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=159935 
Responsible-Changed-From-To: freebsd-ports-bugs->pawel 
Responsible-Changed-By: pawel 
Responsible-Changed-When: Sun Oct 2 19:03:12 UTC 2011 
Responsible-Changed-Why:  
I'll take it. 

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

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/159935: commit references a PR
Date: Mon,  3 Oct 2011 19:35:33 +0000 (UTC)

 pawel       2011-10-03 19:35:24 UTC
 
   FreeBSD ports repository
 
   Modified files:
     devel                Makefile 
   Added files:
     devel/libparserutils Makefile distinfo pkg-descr pkg-plist 
     devel/libparserutils/files patch-Makefile 
   Log:
   LibParserUtils provides various pieces of functionality that are useful when
   writing parsers. These are:
   
     + A number of character set convertors
     + Mapping of character set names to/from MIB enum values
     + UTF-8 and UTF-16 (host endian) support functions
     + Various simple data structures (resizeable buffer, stack, vector)
     + A UTF-8 input stream
   
   WWW: http://www.netsurf-browser.org/projects/libparserutils/
   
   PR:             ports/159935
   Submitted by:   David Romano <unobe@cpan.org>
   Approved by:    miwi, wen (mentors implicit)
   
   Revision  Changes    Path
   1.4576    +1 -0      ports/devel/Makefile
   1.1       +56 -0     ports/devel/libparserutils/Makefile (new)
   1.1       +2 -0      ports/devel/libparserutils/distinfo (new)
   1.1       +9 -0      ports/devel/libparserutils/files/patch-Makefile (new)
   1.1       +10 -0     ports/devel/libparserutils/pkg-descr (new)
   1.1       +21 -0     ports/devel/libparserutils/pkg-plist (new)
 _______________________________________________
 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"
 
State-Changed-From-To: open->closed 
State-Changed-By: pawel 
State-Changed-When: Mon Oct 3 19:41:32 UTC 2011 
State-Changed-Why:  
New port added, with minor changes. Thanks! 

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

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/159935: commit references a PR
Date: Mon,  3 Oct 2011 19:41:05 +0000 (UTC)

 pawel       2011-10-03 19:40:57 UTC
 
   FreeBSD doc repository (ports committer)
 
   Modified files:
     en_US.ISO8859-1/articles/contributors contrib.additional.sgml 
   Log:
   For devel/libparserutils
   
   PR:             ports/159935
   Approved by:    miwi, wen (mentors implicit)
   
   Revision  Changes    Path
   1.1025    +5 -0      doc/en_US.ISO8859-1/articles/contributors/contrib.additional.sgml
 _______________________________________________
 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:
