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= pgsql@FreeBSD.org 10COMMENT= Write SQL functions for PostgreSQL using Perl5 11 12RUN_DEPENDS= postgres:databases/postgresql${WANT_PGSQL_VER:S/.//}-server 13 14MASTERDIR= ${.CURDIR}/../../databases/postgresql${WANT_PGSQL_VER:S/.//}-server 15 16WANT_PGSQL_VER?=14 17 18USES+= perl5 readline 19CONFIGURE_ARGS= --with-perl 20 21BUILD_DIRS= src/backend ${INSTALL_DIRS} 22INSTALL_DIRS?= src/pl/plperl contrib/bool_plperl contrib/hstore_plperl contrib/jsonb_plperl 23SLAVE_ONLY= yes 24COMPONENT= -plperl 25 26# this port fails to build in parallel 27MAKE_JOBS_UNSAFE= yes 28 29.include "${MASTERDIR}/Makefile" 30