- Update to 2.7.1
PR: 123817 Submitted by: Kiyoshi Matsui <kmatsui@t3.rim.or.jp> (maintainer)
This commit is contained in:
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
|
@ -6,7 +6,7 @@
|
||||||
#
|
#
|
||||||
|
|
||||||
PORTNAME= mcpp
|
PORTNAME= mcpp
|
||||||
PORTVERSION= 2.7
|
PORTVERSION= 2.7.1
|
||||||
CATEGORIES= devel
|
CATEGORIES= devel
|
||||||
MASTER_SITES= SF
|
MASTER_SITES= SF
|
||||||
|
|
||||||
|
@ -14,10 +14,15 @@ MAINTAINER= kmatsui@t3.rim.or.jp
|
||||||
COMMENT= Alternative C/C++ preprocessor
|
COMMENT= Alternative C/C++ preprocessor
|
||||||
|
|
||||||
GNU_CONFIGURE= yes
|
GNU_CONFIGURE= yes
|
||||||
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
|
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL} \
|
||||||
|
--enable-mcpplib
|
||||||
MAN1= mcpp.1
|
MAN1= mcpp.1
|
||||||
|
|
||||||
PLIST_FILES= bin/mcpp \
|
PLIST_FILES= bin/mcpp \
|
||||||
|
lib/libmcpp.so \
|
||||||
|
lib/libmcpp.so.2 \
|
||||||
|
lib/libmcpp.a \
|
||||||
|
lib/libmcpp.la \
|
||||||
share/doc/mcpp/LICENSE \
|
share/doc/mcpp/LICENSE \
|
||||||
share/doc/mcpp/NEWS \
|
share/doc/mcpp/NEWS \
|
||||||
share/doc/mcpp/README \
|
share/doc/mcpp/README \
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
MD5 (mcpp-2.7.tar.gz) = 14f9e4155aeb5812fc3ced6345caee02
|
MD5 (mcpp-2.7.1.tar.gz) = 375575ed6b305edd985c7adf9f36202e
|
||||||
SHA256 (mcpp-2.7.tar.gz) = 92ecb4d83682810cf207d248004d0d9e4e242c0ef0b96111d2eecde6fc6a3902
|
SHA256 (mcpp-2.7.1.tar.gz) = 0e079fefe936a7057481630d7190a66421ab15ddabb5f3bf2875a4c520592d9c
|
||||||
SIZE (mcpp-2.7.tar.gz) = 1376480
|
SIZE (mcpp-2.7.1.tar.gz) = 1384826
|
||||||
|
|
|
@ -1,16 +1,15 @@
|
||||||
C/C++ preprocessor expands macros and processes '#if', '#include' and
|
C/C++ preprocessor defines and expands macros and processes '#if',
|
||||||
some other directives.
|
'#include' and some other directives.
|
||||||
|
|
||||||
MCPP is an alternative C/C++ preprocessor with the highest conformance,
|
MCPP is an alternative C/C++ preprocessor with the highest conformance.
|
||||||
implementated by Kiyoshi Matsui. It supports multiple standards: K&R,
|
It supports multiple standards: K&R, ISO C90, ISO C99, and ISO C++98.
|
||||||
ISO C90, ISO C99, and ISO C++98. MCPP is especially useful for
|
MCPP is especially useful for debugging a source program which use
|
||||||
debugging the source program which use complicated macros and also
|
complicated macros and also useful for checking portability of a source.
|
||||||
useful for checking portability of the source.
|
|
||||||
|
|
||||||
Though mcpp could be built as a replacement of GCC's resident
|
Though mcpp could be built as a replacement of GCC's resident
|
||||||
proprocessor or as a subroutine called from some other main program,
|
proprocessor or as a stand-alone program withoug using library build of
|
||||||
this package installs only a stand-alone program named 'mcpp' which
|
mcpp, this package installs a program named 'mcpp' which links shared
|
||||||
behaves independent from GCC.
|
library of libmcpp and behaves independent from GCC.
|
||||||
|
|
||||||
WWW: http://mcpp.sourceforge.net/
|
WWW: http://mcpp.sourceforge.net/
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue