d9a60ff20f
for all active branches of the PostgreSQL object-relational database system, including versions 9.1.1, 9.0.5, 8.4.9, 8.3.16 and 8.2.22. All users are strongly urged to update their installations at the next scheduled downtime. URL: http://www.postgresql.org/about/news.1355 Cleanup ports. Better handling of the knob PG_USER. Also add uuid to 9.0 and 9.1 contrib ports.
24 lines
604 B
Makefile
24 lines
604 B
Makefile
# New ports collection makefile for: PostgreSQL-client
|
|
# Date created: 2009-07-08
|
|
# Whom: Palle Girgensohn <girgen@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
# To depend on postgresql-client, set USE_PGSQL=yes.
|
|
# See Mk/bsd.databases.mk for more info
|
|
|
|
PORTNAME= postgresql
|
|
PORTREVISION= 0
|
|
PKGNAMESUFFIX= -client
|
|
|
|
COMMENT= PostgreSQL database (client)
|
|
|
|
MASTERDIR= ${.CURDIR}/../postgresql90-server
|
|
|
|
BUILD_DIRS= config src/include src/interfaces src/port \
|
|
src/bin/pg_dump src/bin/psql src/bin/scripts src/bin/pg_config \
|
|
doc src/makefiles
|
|
CLIENT_ONLY= yes
|
|
USE_LDCONFIG= yes
|
|
|
|
.include "${MASTERDIR}/Makefile"
|