blob: e244f4417e43ea4b5e5cf22315e156c9d01e6aff (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
# New ports collection makefile for: PostgreSQL
# Date created: November 13, 1998
# Whom: Marc G. Fournier <scrappy@FreeBSD.org>
#
# $FreeBSD$
#
DISTVERSION?= 9.0.7
PORTREVISION= 1
PKGNAMESUFFIX?= -server
MAINTAINER?= crees@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}
.if defined(CLIENT_ONLY)
MAN1= # no MAN1 for 9.0 only
MAN3= # no MAN3 for 9.0 only
MAN7= CREATE_CONSTRAINT_TRIGGER.7
.endif
.include "${.CURDIR}/../postgresql91-server/Makefile"
|