6b11e89876
Release notes: http://www.postgresql.org/docs/7.3/static/release.html#RELEASE-7-3-17 http://www.postgresql.org/docs/7.4/static/release.html#RELEASE-7-4-15 http://www.postgresql.org/docs/8.0/static/release.html#RELEASE-8-0-10 http://www.postgresql.org/docs/8.1/static/release.html#RELEASE-8-1-6 http://www.postgresql.org/docs/8.2/static/release-8-2-1.html The server-side utilities of postgresql (initdb, initlocation, ipcclean, pg_controldata, pg_ctl, pg_id and pg_resetxlog) are now installed by the respective postgresql*-server port (previously they where installed with the client). If you update the client, you should also update the server to make sure you are not left without the server-side tools. Do something like: portupgrade postgresql-client postgresql-server
24 lines
612 B
Makefile
24 lines
612 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
|
|
PORTREVISION= 0
|
|
|
|
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
|
|
INSTALLS_SHLIB= yes
|
|
|
|
.include "${MASTERDIR}/Makefile"
|