mirror of
https://git.freebsd.org/ports.git
synced 2025-04-28 09:36:41 -04:00
The PostgreSQL Global Development Group has released an update to all supported versions of PostgreSQL, including 16.4, 15.8, 14.13, 13.16, and 12.20. This release fixes 1 security vulnerability and over 55 bugs reported over the last several months. PR: 279671 - make the rc script service jails aware PR: 279536 - remove LLVM max version restriction PR: 278887 - SETENV -> SETENVI for -contrib ports Release notes: https://www.postgresql.org/docs/release/
32 lines
781 B
Makefile
32 lines
781 B
Makefile
PORTNAME= postgresql
|
|
# Keep the ?=, it is used by the other pltcl ports.
|
|
PORTREVISION?= 0
|
|
CATEGORIES= databases tcl
|
|
PKGNAMESUFFIX?= ${WANT_PGSQL_VER}${COMPONENT}
|
|
|
|
MAINTAINER= pgsql@FreeBSD.org
|
|
COMMENT= Module for using Tcl to write SQL functions
|
|
|
|
MASTERDIR= ${.CURDIR}/../../databases/postgresql${WANT_PGSQL_VER}-server
|
|
|
|
WANT_PGSQL_VER?=13
|
|
|
|
USES+= tcl pgsql:${WANT_PGSQL_VER}
|
|
WANT_PGSQL= server
|
|
|
|
CONFIGURE_ARGS= --with-tcl --without-tk \
|
|
--with-tclconfig="${TCL_LIBDIR}" \
|
|
--with-includes="${TCL_INCLUDEDIR}"
|
|
|
|
CONFIGURE_ENV+= TCLSH="${TCLSH}"
|
|
MAKE_ENV+= TCL_INCDIR="${TCL_INCLUDEDIR}"
|
|
|
|
BUILD_DIRS= src/backend src/pl/tcl
|
|
INSTALL_DIRS= src/pl/tcl
|
|
SLAVE_ONLY= yes
|
|
COMPONENT= -pltcl
|
|
|
|
# this port fails to build in parallel
|
|
MAKE_JOBS_UNSAFE= yes
|
|
|
|
.include "${MASTERDIR}/Makefile"
|