ea8c8ec7da
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
37 lines
701 B
Makefile
37 lines
701 B
Makefile
# Created by: Ying-Chieh Liao <ijliao@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= fastdb
|
|
PORTVERSION= 3.75
|
|
PORTREVISION= 7
|
|
CATEGORIES= databases
|
|
MASTER_SITES= SF
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Main Memory Relational Database Management System
|
|
|
|
LICENSE= MIT
|
|
|
|
USES= gmake dos2unix
|
|
USE_GCC= any
|
|
MAKE_ENV= OSTYPE="${OPSYS}"
|
|
MAKEFILE= makefile
|
|
USE_LDCONFIG= yes
|
|
DOS2UNIX_FILES= ${MAKEFILE}
|
|
CXXFLAGS+= -D_WANT_SEMUN
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
PORTDOCS= FastDB.htm
|
|
|
|
# The port does not build with C++11 or later (bug 219275).
|
|
USE_CXXSTD= gnu++98
|
|
|
|
post-install:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/FastDB.htm ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|