mirror of
https://git.freebsd.org/ports.git
synced 2025-04-30 18:46:38 -04:00
Upstream Python package maintainers recommend using the psycopg 3.x over psycopg2 for new projects since the latter is in maintenance mode only. Approved by: girgen (pgsql) Differential Revision: https://reviews.freebsd.org/D48493
24 lines
632 B
Makefile
24 lines
632 B
Makefile
PORTNAME= postgresql
|
|
PORTREVISION= 1
|
|
|
|
COMMENT= PostgreSQL database (client)
|
|
|
|
MASTERDIR= ${.CURDIR}/../postgresql16-server
|
|
|
|
BUILD_DIRS= config src/include src/interfaces src/port src/bin/pg_amcheck \
|
|
src/bin/pg_dump src/bin/psql src/bin/scripts src/bin/pg_config \
|
|
src/bin/pgbench doc src/makefiles src/test/regress
|
|
INSTALL_DIRS= ${BUILD_DIRS}
|
|
|
|
CLIENT_ONLY= yes
|
|
COMPONENT= -client
|
|
USE_LDCONFIG= yes
|
|
USES= pkgconfig
|
|
|
|
OPTIONS_DEFINE+=LIBEDIT DOCS
|
|
LIBEDIT_DESC= Use non-GPL libedit instead of readline
|
|
LIBEDIT_CONFIGURE_ON+=--with-libedit-preferred
|
|
LIBEDIT_USES= libedit
|
|
LIBEDIT_USES_OFF=readline
|
|
|
|
.include "${MASTERDIR}/Makefile"
|