1PORTNAME= postgresql 2PORTREVISION= 0 3 4COMMENT= PostgreSQL database (client) 5 6MASTERDIR= ${.CURDIR}/../postgresql13-server 7 8BUILD_DIRS= config src/include src/interfaces src/port \ 9 src/bin/pg_dump src/bin/psql src/bin/scripts src/bin/pg_config \ 10 src/bin/pgbench doc src/makefiles src/test/regress 11INSTALL_DIRS= ${BUILD_DIRS} 12 13CLIENT_ONLY= yes 14COMPONENT= -client 15USE_LDCONFIG= yes 16USES= pkgconfig 17 18OPTIONS_DEFINE+=LIBEDIT DOCS 19LIBEDIT_DESC= Use non-GPL libedit instead of readline 20LIBEDIT_CONFIGURE_ON+=--with-libedit-preferred 21LIBEDIT_USES= libedit 22LIBEDIT_USES_OFF=readline 23 24.include "${MASTERDIR}/Makefile" 25