1PORTNAME= postgresql 2CATEGORIES= databases python 3# Keep the ?=, it is used as master by the other plpython ports. 4PORTREVISION?= 0 5PKGNAMESUFFIX?= ${WANT_PGSQL_VER:S/.//}${COMPONENT} 6 7MAINTAINER= pgsql@FreeBSD.org 8COMMENT= Module for using Python to write SQL functions 9 10USES+= pgsql:${WANT_PGSQL_VER} ${WANT_PYTHON_USE} 11WANT_PGSQL= server 12 13MASTERDIR= ${.CURDIR}/../postgresql${WANT_PGSQL_VER:S/.//}-server 14 15WANT_PGSQL_VER?= 14 16_WANT_PGSQL_VER=14 17WANT_PYTHON_USE?= python 18 19CONFIGURE_ARGS= --with-python 20COMPONENT= -plpython 21 22BUILD_DIRS= src/backend ${INSTALL_DIRS} 23INSTALL_DIRS?= src/pl/plpython contrib/hstore_plpython contrib/jsonb_plpython contrib/ltree_plpython 24SLAVE_ONLY= yes 25 26# this port fails to build in parallel 27MAKE_JOBS_UNSAFE= yes 28 29.include "${MASTERDIR}/Makefile" 30