lang/gcc which have moved from GCC 4.8.5 to GCC 4.9.4 (at least under some circumstances such as versions of FreeBSD or platforms). In particular that is ports with USE_GCC=yes, USE_GCC=any, or one of gcc-c++11-lib, openmp, nestedfct, c++11-lib as well as c++14-lang, c++11-lang, c++0x, c11 requested via USES=compiler.
30 lines
773 B
Makefile
30 lines
773 B
Makefile
# Created by: novator24 <novator24@gmail.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= covtool
|
|
PORTVERSION= 2.1
|
|
PORTREVISION= 4
|
|
CATEGORIES= devel
|
|
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/rel_2.0
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= C++ test coverage analyzer
|
|
|
|
WRKSRC= ${WRKDIR}
|
|
USES= gmake zip
|
|
USE_GCC= yes
|
|
MAKEFILE= makefile
|
|
MAKE_ARGS= CC=${CXX} LN=${CXX} INSTALL_DIR=${STAGEDIR}${PREFIX}
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|%%PREFIX%%|${PREFIX}|g' \
|
|
-e 's|%%PORTNAME%%|${PORTNAME}|g' ${WRKSRC}/cov++
|
|
@${REINPLACE_CMD} 's|%%CXXFLAGS%%|${CXXFLAGS}|g' \
|
|
${WRKSRC}/rules.FreeBSD
|
|
|
|
post-install:
|
|
${INSTALL_MAN} ${WRKSRC}/man/man1/*.1 \
|
|
${STAGEDIR}${MANPREFIX}/man/man1/
|
|
${INSTALL_DATA} ${WRKSRC}/cov++.cfg ${STAGEDIR}${PREFIX}/etc/cov++.cfg.sample
|
|
|
|
.include <bsd.port.mk>
|