freebsd-ports/devel/art/Makefile
Gerald Pfeifer ea8c8ec7da Bump PORTREVISION for ports depending on the canonical version of GCC
as defined in Mk/bsd.default-versions.mk which has moved from GCC 8.3
to GCC 9.1 under most circumstances now after revision 507371.

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, c11, c++0x, c++11-lang,
   c++11-lib, c++14-lang, c++17-lang, or gcc-c++11-lib
plus, everything INDEX-11 shows with a dependency on lang/gcc9 now.

PR:		238330
2019-07-26 20:46:53 +00:00

41 lines
1 KiB
Makefile

# Created by: Vladimir Gorelov <virtual.lark@gmail.com>
# $FreeBSD$
PORTNAME= art
PORTVERSION= 0.9.01
PORTREVISION= 4
CATEGORIES= devel
MASTER_SITES= http://skylark.tsu.ru/art/0.9/download/src/ \
SF/art-project/src/
MAINTAINER= virtual.lark@gmail.com
COMMENT= Resource tracing, debugging, and profiling tool
LICENSE= GPLv3
LIB_DEPENDS= libxml++-2.6.so:textproc/libxml++26
USES= compiler:c++11-lang gmake pkgconfig
USE_CXXSTD= c++11
TEST_TARGET= test # XXX: 17 of 18 tests fail
OPTIONS_DEFINE= DOCS
post-patch:
@${FIND} ${WRKSRC} -type f -name Makefile | ${XARGS} \
${REINPLACE_CMD} -e '/$$(CXX)/s,CFLAGS,CXXFLAGS,' \
-e 's,^CFLAGS+=,CXXFLAGS+=,'
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/artlibgen/src/artlibgen \
${WRKSRC}/artrepgen/artrepgen ${STAGEDIR}${PREFIX}/bin
do-install-DOCS-on:
@${MKDIR} ${STAGEDIR}${DOCSDIR}
.for docs in posix-gcc-mt-file-lint.xml posix-gcc-mt-netw-lint.xml \
posix-gcc-mt-file-special.xml
${INSTALL_DATA} ${WRKSRC}/artlibgen/templates/${docs} \
${STAGEDIR}${DOCSDIR}
.endfor
.include <bsd.port.mk>