1# Created by: Palle Girgensohn <girgen@partitur.se> 2 3PORTNAME= postgresql 4# Keep the ?=, this port is used as master by the other plperl. 5PORTREVISION?= 0 6CATEGORIES= databases perl5 7PKGNAMESUFFIX?= ${WANT_PGSQL_VER:S/.//}${COMPONENT} 8 9MAINTAINER= ports@MidnightBSD.org 10COMMENT= Write SQL functions for PostgreSQL using Perl5 11 12LICENSE= pgsql 13 14RUN_DEPENDS= postgres:databases/postgresql${WANT_PGSQL_VER:S/.//}-server 15 16MASTERDIR= ${.CURDIR}/../../databases/postgresql${WANT_PGSQL_VER:S/.//}-server 17 18WANT_PGSQL_VER?=13 19 20USES+= perl5 readline 21CONFIGURE_ARGS= --with-perl 22 23BUILD_DIRS= src/backend ${INSTALL_DIRS} 24INSTALL_DIRS?= src/pl/plperl contrib/bool_plperl contrib/hstore_plperl contrib/jsonb_plperl 25SLAVE_ONLY= yes 26COMPONENT= -plperl 27 28# this port fails to build in parallel 29MAKE_JOBS_UNSAFE= yes 30 31.include "${MASTERDIR}/Makefile" 32