forked from Lainports/freebsd-ports
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
39 lines
970 B
Makefile
39 lines
970 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= cppunit
|
|
PORTVERSION= 1.14.0
|
|
PORTREVISION= 8
|
|
CATEGORIES= devel
|
|
MASTER_SITES= https://dev-www.libreoffice.org/src/
|
|
|
|
MAINTAINER= bdrewery@FreeBSD.org
|
|
COMMENT= C++ port of the JUnit framework for unit testing
|
|
|
|
LICENSE= LGPL21
|
|
|
|
OPTIONS_DEFINE= DOCS DOXYGEN
|
|
|
|
DOXYGEN_BUILD_DEPENDS= doxygen:devel/doxygen \
|
|
dot:graphics/graphviz
|
|
DOXYGEN_CONFIGURE_ENABLE= dot doxygen html-docs
|
|
DOXYGEN_CONFIGURE_ON= --htmldir="${DOCSDIR}/html"
|
|
|
|
GNU_CONFIGURE= yes
|
|
INSTALL_TARGET= install-strip
|
|
OPTIONS_SUB= yes
|
|
USE_LDCONFIG= yes
|
|
USES= libtool pathfix compiler:c++11-lang
|
|
|
|
SUB_FILES= cppunit-config
|
|
SUB_LIST+= DISTVERSION=${DISTVERSION}
|
|
|
|
post-install:
|
|
${INSTALL_SCRIPT} ${WRKDIR}/cppunit-config ${STAGEDIR}${PREFIX}/bin/
|
|
|
|
post-install-DOCS-on:
|
|
${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/doc/FAQ ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/NEWS ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|