(via Mk/bsd.default-versions.mk and lang/gcc) which has moved from GCC 5.4 to GCC 6.4 under most circumstances. This includes ports - with USE_GCC=yes or USE_GCC=any, - with USES=fortran, - using Mk/bsd.octave.mk which in turn features USES=fortran, and - with USES=compiler specifying openmp, nestedfct, c++11-lib, c++11-lang, c++14-lang, c++0x, c11, or gcc-c++11-lib. PR: 219275
30 lines
773 B
Makefile
30 lines
773 B
Makefile
# Created by: novator24 <novator24@gmail.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= covtool
|
|
PORTVERSION= 2.1
|
|
PORTREVISION= 6
|
|
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>
|