PostgreSQL 17.5, 16.9, 15.13, 14.18, and 13.21 Released! The PostgreSQL Global Development Group has released an update to all supported versions of PostgreSQL, including 17.5, 16.9, 15.13, 14.18, and 13.21. This release fixes 1 security vulnerability and over 60 bugs reported over the last several months. Security: 78b8e808-2c45-11f0-9a65-6cc21735f730 Release notes: https://www.postgresql.org/about/news/postgresql-175-169-1513-1418-and-1321-released-3072/
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?=18
|
|
|
|
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"
|