mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-26 00:55:14 +00:00
6030e71fcc
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/
29 lines
757 B
Makefile
29 lines
757 B
Makefile
# Created by: Marc G. Fournier <scrappy@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
DISTVERSION?= 9.0.15
|
|
PORTREVISION= 0
|
|
PKGNAMESUFFIX?= ${DISTVERSION:R:S/.//}${COMPONENT}
|
|
|
|
MAINTAINER?= pgsql@FreeBSD.org
|
|
|
|
ICU_PATCHFILE?= pg-900-icu-2010-09-19.diff.gz
|
|
ICU_EXTRAPATCH= ${FILESDIR}/extra-patch-icu4
|
|
BUILD_DIRS?= 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
|
|
INSTALL_DIRS?= ${BUILD_DIRS}
|
|
COMPONENT?= -server
|
|
|
|
.if defined(CLIENT_ONLY)
|
|
MAN1= # no MAN1 for 9.0 only
|
|
|
|
MAN3= # no MAN3 for 9.0 only
|
|
|
|
MAN7= CREATE_CONSTRAINT_TRIGGER.7
|
|
.endif
|
|
|
|
NO_STAGE= yes
|
|
.include "${.CURDIR}/../postgresql91-server/Makefile"
|