mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-28 10:08:24 +00:00
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
24 lines
593 B
Makefile
24 lines
593 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}/../postgresql74-server
|
|
|
|
BUILD_DIRS= src/bin/pg_config src/bin/pg_encoding src/bin/psql \
|
|
src/bin/pg_dump src/bin/scripts src/include \
|
|
src/interfaces doc
|
|
CLIENT_ONLY= yes
|
|
USE_LDCONFIG= yes
|
|
|
|
.include "${MASTERDIR}/Makefile"
|