Files
ports/databases/timescaledb/Makefile
T
sthen 223dd2dcf0 set COMPILER_LANGS=c for various C-only ports
add annotations near COMPILER for some other ports that don't have
COMPILER_LIBCXX in WANTLIB

not changing the actual compiler version of anything here (some could
possibly remove the COMPILER line completely where they only used
COMPILER due to an old WANTLIB entry which has since stopped using
C++, but changing that is too likely to break things)
2025-01-28 11:22:02 +00:00

44 lines
1.0 KiB
Makefile

COMMENT = database designed to make SQL scalable for time-series data
GH_ACCOUNT = timescale
GH_PROJECT = timescaledb
GH_TAGNAME = 2.17.2
REVISION = 0
EXTRAS_COMMIT = daf13d74b02e7dc7b29e250a43806b83c7498ba1
DIST_TUPLE += github timescale timescaledb-extras ${EXTRAS_COMMIT} _extras
CATEGORIES = databases
HOMEPAGE = https://www.timescale.com/
MAINTAINER = Renato Aguiar <renato@renatoaguiar.net>
# Apache 2.0
PERMIT_PACKAGE = Yes
MODULES = devel/cmake
SUBST_VARS += GH_TAGNAME
WANTLIB = pq
COMPILER = base-clang ports-gcc
COMPILER_LANGS = c
LIB_DEPENDS = databases/postgresql
BUILD_DEPENDS = databases/postgresql,-server
RUN_DEPENDS = databases/postgresql,-server
CONFIGURE_ARGS += -DREGRESS_CHECKS=OFF \
-DLINTER=OFF \
-DCLANG_FORMAT=OFF \
-DSEND_TELEMETRY_DEFAULT=OFF \
-DCMAKE_DISABLE_FIND_PACKAGE_Git=ON
post-install:
${INSTALL_DATA_DIR} ${PREFIX}/share/timescaledb
${INSTALL_DATA} \
${WRKSRC}/_extras/utils/2.15.X-fix_hypertable_foreign_keys.sql \
${PREFIX}/share/timescaledb
.include <bsd.port.mk>