ports/129343: [maintainer update] lang/cparser 0.9.7

Christoph Mallon christoph.mallon at gmx.de
Mon Dec 1 19:20:01 UTC 2008


>Number:         129343
>Category:       ports
>Synopsis:       [maintainer update] lang/cparser 0.9.7
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          maintainer-update
>Submitter-Id:   current-users
>Arrival-Date:   Mon Dec 01 19:20:00 UTC 2008
>Closed-Date:
>Last-Modified:
>Originator:     Christoph Mallon
>Release:        
>Organization:
>Environment:
>Description:
Please commit this update for the new version of cparser.

Changes:
* several bugfixes
* add/correct semantic checks
* improved error recovery
* support more GCC extensions
* support more GCC switches
* add a manpage
>How-To-Repeat:

>Fix:


Patch attached with submission follows:

Index: Makefile
===================================================================
RCS file: /home/ncvs/ports/lang/cparser/Makefile,v
retrieving revision 1.1
diff -u -r1.1 Makefile
--- Makefile	24 Nov 2008 09:33:54 -0000	1.1
+++ Makefile	1 Dec 2008 18:59:36 -0000
@@ -6,14 +6,14 @@
 #
 
 PORTNAME=	cparser
-PORTVERSION=	0.9.6
+PORTVERSION=	0.9.7
 CATEGORIES=	lang devel
-MASTER_SITES=	http://www.info.uni-karlsruhe.de/software/libfirm/
+MASTER_SITES=	${MASTER_SITE_SOURCEFORGE}
+MASTER_SITE_SUBDIR=	${PORTNAME}
 
 MAINTAINER=	christoph.mallon at gmx.de
 COMMENT=	A C99 compiler using libFIRM as backend
 
-RUN_DEPENDS=	${LOCALBASE}/lib/libfirm.a:${PORTSDIR}/devel/libfirm
 LIB_DEPENDS=	firm.0:${PORTSDIR}/devel/libfirm
 
 USE_BZIP2=	yes
@@ -23,7 +23,10 @@
 
 .include <bsd.port.pre.mk>
 
+MAN1=	cparser.1
+
 do-install:
 	@${INSTALL_PROGRAM} ${INSTALL_WRKSRC}/build/cparser ${PREFIX}/bin
+	@${INSTALL_MAN} ${INSTALL_WRKSRC}/cparser.1 ${MAN1PREFIX}/man/man1
 
 .include <bsd.port.post.mk>
Index: distinfo
===================================================================
RCS file: /home/ncvs/ports/lang/cparser/distinfo,v
retrieving revision 1.1
diff -u -r1.1 distinfo
--- distinfo	24 Nov 2008 09:33:54 -0000	1.1
+++ distinfo	1 Dec 2008 18:59:36 -0000
@@ -1,3 +1,3 @@
-MD5 (cparser-0.9.6.tar.bz2) = 3efd0e233292038642ec6c0de065bca5
-SHA256 (cparser-0.9.6.tar.bz2) = cb81ff4838aeb39b7692906d7872ccb9c389326136745da9f3dd602fab092149
-SIZE (cparser-0.9.6.tar.bz2) = 179038
+MD5 (cparser-0.9.7.tar.bz2) = 19af4d2d0fe76d444f043b257dc28970
+SHA256 (cparser-0.9.7.tar.bz2) = 623bf32ccfce4a5676c6172a63e3cbada59919cc862c671b35e881a0c424ee00
+SIZE (cparser-0.9.7.tar.bz2) = 187966
Index: pkg-descr
===================================================================
RCS file: /home/ncvs/ports/lang/cparser/pkg-descr,v
retrieving revision 1.1
diff -u -r1.1 pkg-descr
--- pkg-descr	24 Nov 2008 09:33:54 -0000	1.1
+++ pkg-descr	1 Dec 2008 18:59:36 -0000
@@ -1,12 +1,12 @@
-cparser is a C compiler, which can parse C89 and C99 as well as many GCC and
+cparser is a C compiler, which can parse C90 and C99 as well as many GCC and
 some MSVC extensions.  It also provides many useful analyses for warnings.  It
-uses libFIRM, which provides a SSA-based intermediate representation in form of
+uses libFIRM, which provides an SSA-based intermediate representation in form of
 explicit dependency graphs, for optimization and code generation.  Parsing is
 done with a handwritten recursive descent parser.  The AST representation is
 straightforward, so it can be used for other purposes than code generation.
 
-* fast recursive descent parser, parses C89 and C99
-* handles most GCC extensions, f.e. __attribute__, inline assembler,
+* fast recursive descent parser, parses C90 and C99
+* handles most GCC extensions, e.g. __attribute__, inline assembler,
   computed goto, statement expressions
 * handles some MSVC extensions (like declspec)
 * provides many useful warnings
@@ -18,7 +18,7 @@
   * most warnings switches, which are available for GCC
 * provides concise messages in case of error, for example when encountering
   misspelled typenames
-* compiler driver compatible with with GCC (-fxxx, -Wxxx, -M, ...)
+* compiler driver compatible with GCC (-fxxx, -Wxxx, -M, ...)
 * uses libFIRM for optimization and code generation (devel/libfirm)
 
 WWW: http://www.libfirm.org


>Release-Note:
>Audit-Trail:
>Unformatted:



More information about the freebsd-ports-bugs mailing list