1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-20 04:02:27 +00:00
freebsd-ports/devel/mcpp/Makefile
Martin Wilke e3f5e0823d C/C++ preprocessor 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.  MCPP is especially useful for
debugging the source program which use complicated macros and also
useful for checking portability of the source.  It supports multiple
standards: K&R, ISO C90, ISO C99, and ISO C++98.

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.

WWW: http://mcpp.sourceforge.net/

- Kiyoshi Matsui <kmatsui@t3.rim.or.jp>

PR:		ports/111588
Submitted by:	Kiyoshi Matsui <kmatsui at t3.rim.or.jp>
2007-04-15 18:59:37 +00:00

32 lines
776 B
Makefile

# New ports collection makefile for: mcpp
# Date created: 06 April 2007
# Whom: Kiyoshi Matsui <kmatsui@t3.rim.or.jp>
#
# $FreeBSD$
#
PORTNAME= mcpp
PORTVERSION= 2.6.3
CATEGORIES= devel
MASTER_SITES= http://prdownloads.sourceforge.net/mcpp/ \
http://jaist.dl.sourceforge.net/sourceforge/mcpp/
MAINTAINER= kmatsui@t3.rim.or.jp
COMMENT= Alternative C/C++ preprocessor
GNU_CONFIGURE= yes
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
MAN1= mcpp.1
PLIST_FILES= bin/mcpp \
share/doc/mcpp/LICENSE \
share/doc/mcpp/NEWS \
share/doc/mcpp/README \
share/doc/mcpp/doc-jp/mcpp-manual.html \
share/doc/mcpp/doc/mcpp-manual.html
PLIST_DIRS= share/doc/mcpp/doc-jp \
share/doc/mcpp/doc \
share/doc/mcpp
.include <bsd.port.mk>