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