Files
claudio 255d573c71 Switch to ports-gcc
cc1: error: -Werror=vla: No option -Wvla
cc1: error: unrecognized command line option "-Wimplicit-fallthrough=3"
cc1: error: unrecognized command line option "-Wcast-function-type"
cc1: error: unrecognized command line option "-Wshadow=compatible-local"
cc1: error: unrecognized command line option "-fexcess-precision=standard"
cc1: error: unrecognized command line option "-Wno-stringop-truncation"

OK jca@, go for it tb@
2025-11-25 12:54:44 +00:00

44 lines
1.0 KiB
Makefile

COMMENT = Lua procedural language support for PostgreSQL
VERSION = 2.0.12
GH_ACCOUNT = pllua
GH_PROJECT = pllua
GH_TAGNAME = REL_${VERSION:S/./_/g}
PKGNAME = postgresql-pllua-${VERSION}
REVISION = 1
SITES.p = https://github.com/pllua/pllua/commit/
PATCHFILES.p = pllua-pg18-fix{bb2f44b542e650ddd250e4e27c73e86aadb09dde}.patch
PATCH_DIST_STRIP = -p1
CATEGORIES = databases
HOMEPAGE = https://github.com/pllua/pllua
MAINTAINER = Jeremy Evans <jeremy@openbsd.org>
# MIT
PERMIT_PACKAGE = Yes
WANTLIB = c ${MODLUA_WANTLIB}
# -Wvla and other unrecognized command line options
COMPILER = base-clang ports-gcc
COMPILER_LANGS = c
MODULES = lang/lua
MODLUA_VERSION = 5.3
BUILD_DEPENDS = ${RUN_DEPENDS} \
postgresql-client->=18,<19:databases/postgresql,-main
RUN_DEPENDS = postgresql-server->=18,<19:databases/postgresql,-server
USE_GMAKE = Yes
SUBST_VARS = MODLUA_INCL_DIR MODLUA_WANTLIB MODLUA_BIN LLD_EMUL
pre-configure:
${SUBST_CMD} ${WRKSRC}/Makefile
.include <bsd.port.mk>