freebsd-ports/devel/cccc/Makefile
Satoshi Asami fb1e4a901e Mark this broken, doesn't build on either 3-stable or 4-current with
a message like the one below:

===
g++ -c -O -pipe -I/usr/include/g++-include -I. -I/usr/local/include/pccts  -o cccc.o cccc.cpp
cccc.cpp: In method `void CParser::start(class ASTBase **)':
cccc.cpp:47: `zzTracePrevRuleName' undeclared (first use this function)
cccc.cpp:47: (Each undeclared identifier is reported only once
cccc.cpp:47: for each function it appears in.)
 :
===

My guess is that this one was left behind after the pccts upgrade.
1999-09-21 09:35:06 +00:00

37 lines
907 B
Makefile

# New ports collection makefile for: cccc
# Version required: 2.1.1
# Date created: 12 September 1997
# Whom: Andrey Zakhvatov
#
# $FreeBSD$
#
DISTNAME= cccc-2.1.1.src
PKGNAME= cccc-2.1.1
CATEGORIES= devel textproc www
MASTER_SITES= ${MASTER_SITE_SUNSITE}
MASTER_SITE_SUBDIR= devel/lang/c++
MAINTAINER= andy@icc.surw.chel.su
BUILD_DEPENDS= antlr:${PORTSDIR}/devel/pccts \
dlg:${PORTSDIR}/devel/pccts
BROKEN= pccts upgrade
WRKSRC= ${WRKDIR}/usr/local/src/cccc-2.1.1
USE_GMAKE= yes
MAKEFILE= makefile
MAKE_ENV= OSTYPE=FreeBSD
do-install:
@ ${INSTALL_PROGRAM} ${WRKSRC}/cccc ${PREFIX}/bin
@ ${MKDIR} ${PREFIX}/share/cccc
.for file in cccc_inf.dat cccc_met.dat cccc_tmt.dat cccc_ug.htm
@ ${INSTALL_DATA} ${WRKSRC}/${file} ${PREFIX}/share/cccc
.endfor
@ ${MKDIR} ${PREFIX}/share/doc/cccc
@ ${INSTALL_DATA} ${WRKSRC}/readme.txt ${PREFIX}/share/doc/cccc
.include <bsd.port.mk>