89025407ac
Updates for all maintained versions of PostgreSQL are available today: 8.3.3, 8.2.9, 8.1.13, 8.0.17 and 7.4.21. These releases fix more than two dozen minor issues reported and patched over the last few months. All PostgreSQL users should plan to update at their earliest convenience. People in affected time zones, in particular, should upgrade as soon as possible. Release Notes: http://www.postgresql.org/docs/8.3/static/release.html Also, fix umask error in periodic script [1]. PR: ports/124457 [1] Submitted by: Alexandre Perrin
23 lines
596 B
Makefile
23 lines
596 B
Makefile
# New ports collection makefile for: PostgreSQL-client
|
|
# Date created: Wed Nov 2 00:13:57 CET 2005
|
|
# 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
|
|
PKGNAMESUFFIX= -client
|
|
|
|
COMMENT= PostgreSQL database (client)
|
|
|
|
MASTERDIR= ${.CURDIR}/../postgresql81-server
|
|
|
|
BUILD_DIRS= config src/include src/interfaces \
|
|
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"
|