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
594 B
Makefile
23 lines
594 B
Makefile
# New ports collection makefile for: PostgreSQL-client
|
|
# Date created: Wed Aug 25 00:13:57 CEST 2004
|
|
# Whom: Palle Girgensohn <girgen@pingpong.net>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
# To depend on postgresql-client, set USE_PGSQL=yes.
|
|
# See Mk/bsd.port.mk for more info
|
|
|
|
PORTNAME= postgresql
|
|
PKGNAMESUFFIX= -client
|
|
|
|
COMMENT= PostgreSQL database (client)
|
|
|
|
MASTERDIR= ${.CURDIR}/../postgresql80-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"
|