freebsd-ports/databases/postgresql83-server/Makefile
Palle Girgensohn 9b471aa835 The PostgreSQL Global Development Group today released security updates for all
active branches of the PostgreSQL object-relational database system, including
versions 9.1.3, 9.0.7, 8.4.11 and 8.3.18.

Users of pg_dump, users of SSL certificates for validation or users of triggers
using SECURITY DEFINER should upgrade their installations immediately. All
other database administrators are urged to upgrade your version of PostgreSQL
at the next scheduled downtime. More details on the security fixes here:

URL:	http://www.postgresql.org/about/news/1377/

Security: http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2012-0866
Security: http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2012-0867
Security: http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2012-0868
2012-02-27 16:24:48 +00:00

45 lines
1.3 KiB
Makefile

# New ports collection makefile for: PostgreSQL
# Date created: November 13, 1998
# Whom: Marc G. Fournier <scrappy@FreeBSD.org>
#
# $FreeBSD$
#
DISTVERSION?= 8.3.18
PORTREVISION?= 0
PKGNAMESUFFIX?= -server
MAINTAINER?= crees@FreeBSD.org
CONFIGURE_ARGS+=--with-docdir=${DOCSDIR}
ICU_PATCHFILE= pg-8311-icu-xx-2010-05-14.diff.gz
BUILD_DIRS?= src/port src/timezone src/backend \
src/backend/utils/mb/conversion_procs src/backend/snowball \
src/bin/initdb src/bin/ipcclean src/bin/pg_ctl \
src/bin/pg_controldata src/bin/pg_resetxlog src/pl
.if defined(CLIENT_ONLY)
MAN1= ipcclean.1
MAN7= alter_operator_family.7 alter_text_search_configuration.7 \
alter_text_search_dictionary.7 alter_text_search_parser.7 \
alter_text_search_template.7 alter_view.7 \
create_operator_family.7 discard.7 drop_operator_family.7 \
create_text_search_configuration.7 \
create_text_search_dictionary.7 \
create_text_search_parser.7 \
create_text_search_template.7 \
drop_text_search_configuration.7 \
drop_text_search_dictionary.7 \
drop_text_search_parser.7 \
drop_text_search_template.7
.endif
.if !defined(NO_BUILD)
pre-build:
@ cd ${WRKSRC}/src/backend ;\
${GMAKE} ../../src/include/parser/parse.h \
../../src/include/utils/fmgroids.h
.endif
.include "${.CURDIR}/../postgresql84-server/Makefile"