freebsd-ports/databases/postgresql93-server/Makefile
Palle Girgensohn 6030e71fcc The PostgreSQL Global Development Group has released a critical update
to all supported versions of the PostgreSQL database system, which
includes minor versions 9.3.2, 9.2.6, 9.1.11, 9.0.15, and 8.4.19. This
update fixes three serious data-loss bugs affecting replication and
database maintenance.  All users are urged to update their
installations at the earliest opportunity.

URL:	http://www.postgresql.org/about/news/1492/
2013-12-05 15:59:53 +00:00

32 lines
1 KiB
Makefile

# Created by: Marc G. Fournier <scrappy@FreeBSD.org>
# $FreeBSD$
DISTVERSION?= 9.3.2
PORTREVISION?= 0
PKGNAMESUFFIX?= ${DISTVERSION:R:S/.//}${COMPONENT}
MAINTAINER?= pgsql@FreeBSD.org
.if defined(CLIENT_ONLY)
MAN1= pg_basebackup.1 pg_isready.1 pg_xlogdump.1
MAN3= # no MAN3 for 9.0 only
MAN7= ALTER_COLLATION.7 ALTER_EVENT_TRIGGER.7 ALTER_EXTENSION.7 \
ALTER_FOREIGN_TABLE.7 ALTER_MATERIALIZED_VIEW.7 ALTER_RULE.7 \
CREATE_COLLATION.7 CREATE_EVENT_TRIGGER.7 CREATE_EXTENSION.7 \
CREATE_FOREIGN_TABLE.7 CREATE_MATERIALIZED_VIEW.7 DROP_COLLATION.7 \
DROP_EVENT_TRIGGER.7 DROP_EXTENSION.7 DROP_FOREIGN_TABLE.7 \
DROP_MATERIALIZED_VIEW.7 REFRESH_MATERIALIZED_VIEW.7 SECURITY_LABEL.7
.endif
INSTALL_DIRS?= src/common src/timezone src/backend \
src/backend/utils/mb/conversion_procs \
src/backend/snowball src/backend/replication/libpqwalreceiver \
src/bin/initdb src/bin/pg_ctl \
src/bin/pg_controldata src/bin/pg_resetxlog src/pl \
src/bin/pg_basebackup
NO_STAGE= yes
.include "${.CURDIR}/../postgresql92-server/Makefile"