- Update to 2.7.1

PR:		123817
Submitted by:	Kiyoshi Matsui <kmatsui@t3.rim.or.jp> (maintainer)
This commit is contained in:
Martin Wilke 2008-05-22 00:06:46 +00:00
parent a9b12de60c
commit ca020ac19d
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=213486
3 changed files with 19 additions and 15 deletions

View file

@ -6,7 +6,7 @@
#
PORTNAME= mcpp
PORTVERSION= 2.7
PORTVERSION= 2.7.1
CATEGORIES= devel
MASTER_SITES= SF
@ -14,10 +14,15 @@ MAINTAINER= kmatsui@t3.rim.or.jp
COMMENT= Alternative C/C++ preprocessor
GNU_CONFIGURE= yes
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL} \
--enable-mcpplib
MAN1= mcpp.1
PLIST_FILES= bin/mcpp \
lib/libmcpp.so \
lib/libmcpp.so.2 \
lib/libmcpp.a \
lib/libmcpp.la \
share/doc/mcpp/LICENSE \
share/doc/mcpp/NEWS \
share/doc/mcpp/README \

View file

@ -1,3 +1,3 @@
MD5 (mcpp-2.7.tar.gz) = 14f9e4155aeb5812fc3ced6345caee02
SHA256 (mcpp-2.7.tar.gz) = 92ecb4d83682810cf207d248004d0d9e4e242c0ef0b96111d2eecde6fc6a3902
SIZE (mcpp-2.7.tar.gz) = 1376480
MD5 (mcpp-2.7.1.tar.gz) = 375575ed6b305edd985c7adf9f36202e
SHA256 (mcpp-2.7.1.tar.gz) = 0e079fefe936a7057481630d7190a66421ab15ddabb5f3bf2875a4c520592d9c
SIZE (mcpp-2.7.1.tar.gz) = 1384826

View file

@ -1,16 +1,15 @@
C/C++ preprocessor expands macros and processes '#if', '#include' and
some other directives.
C/C++ preprocessor defines and expands macros and processes '#if',
'#include' and some other directives.
MCPP is an alternative C/C++ preprocessor with the highest conformance,
implementated by Kiyoshi Matsui. It supports multiple standards: K&R,
ISO C90, ISO C99, and ISO C++98. MCPP is especially useful for
debugging the source program which use complicated macros and also
useful for checking portability of the source.
MCPP is an alternative C/C++ preprocessor with the highest conformance.
It supports multiple standards: K&R, ISO C90, ISO C99, and ISO C++98.
MCPP is especially useful for debugging a source program which use
complicated macros and also useful for checking portability of a source.
Though mcpp could be built as a replacement of GCC's resident
proprocessor or as a subroutine called from some other main program,
this package installs only a stand-alone program named 'mcpp' which
behaves independent from GCC.
proprocessor or as a stand-alone program withoug using library build of
mcpp, this package installs a program named 'mcpp' which links shared
library of libmcpp and behaves independent from GCC.
WWW: http://mcpp.sourceforge.net/