mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-18 00:10:04 +00:00
b4e71c8402
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/
28 lines
741 B
Makefile
28 lines
741 B
Makefile
PORTNAME= postgresql
|
|
# Keep the ?=, this port is used as master by the other plperl.
|
|
PORTREVISION?= 0
|
|
CATEGORIES= databases perl5
|
|
PKGNAMESUFFIX?= ${WANT_PGSQL_VER}${COMPONENT}
|
|
|
|
MAINTAINER= pgsql@FreeBSD.org
|
|
COMMENT= Write SQL functions for PostgreSQL using Perl5
|
|
|
|
RUN_DEPENDS= postgres:databases/postgresql${WANT_PGSQL_VER}-server
|
|
|
|
MASTERDIR= ${.CURDIR}/../../databases/postgresql${WANT_PGSQL_VER}-server
|
|
|
|
WANT_PGSQL_VER?=15
|
|
|
|
USES+= perl5 readline
|
|
CONFIGURE_ARGS= --with-perl
|
|
|
|
BUILD_DIRS= src/backend ${INSTALL_DIRS}
|
|
INSTALL_DIRS?= src/pl/plperl contrib/bool_plperl contrib/hstore_plperl contrib/jsonb_plperl
|
|
SLAVE_ONLY= yes
|
|
COMPONENT= -plperl
|
|
|
|
# this port fails to build in parallel
|
|
MAKE_JOBS_UNSAFE= yes
|
|
|
|
.include "${MASTERDIR}/Makefile"
|