diff options
author | Palle Girgensohn <girgen@FreeBSD.org> | 2021-08-12 17:48:09 +0200 |
---|---|---|
committer | Palle Girgensohn <girgen@FreeBSD.org> | 2021-08-12 18:23:00 +0200 |
commit | a271b9d5b7b2c0eb57d1a09fc44f2ecbbad7bc5a (patch) | |
tree | 6d992c5544a0656ede4cdabe6f6ef2bfdd3cb1e0 /databases/postgresql12-docs/Makefile | |
parent | security/vuxml: postgresql??-server vuln CVE-2021-3677 (diff) |
databases/postgresql*: update to latest versions
The PostgreSQL Global Development Group has released an update to all supported
versions of our database system, including 13.4, 12.8, 11.13, 10.18, and
9.6.23, as well as the third beta release of PostgreSQL 14. This release closes
one security vulnerability and fixes over 75 bugs reported over the last three
months.
Turn off parallel builds since we continue to struggle with build problems when
it is activated. [1]
Avoid chasing latest LLVM version. [2]
PR: 256466 [1], 256167 [2]
Release notes: https://www.postgresql.org/docs/release/
Security: b471130b-fb86-11eb-87db-6cc21735f730
Diffstat (limited to 'databases/postgresql12-docs/Makefile')
-rw-r--r-- | databases/postgresql12-docs/Makefile | 44 |
1 files changed, 2 insertions, 42 deletions
diff --git a/databases/postgresql12-docs/Makefile b/databases/postgresql12-docs/Makefile index 29d32bb29759..f977f2b8aeb4 100644 --- a/databases/postgresql12-docs/Makefile +++ b/databases/postgresql12-docs/Makefile @@ -1,45 +1,5 @@ # Created by: Palle Girgensohn <girgen@pingpong.net> -PORTNAME= postgresql -PORTREVISION= 0 -PKGNAMESUFFIX?= ${WANT_PGSQL_VER:S,.,,}-docs +WANT_PGSQL_VER=12 -MAINTAINER= pgsql@FreeBSD.org -COMMENT= The PostgreSQL documentation set - -MASTERDIR= ${.CURDIR}/../../databases/postgresql${WANT_PGSQL_VER:S/.//}-server -WANT_PGSQL_VER?=12 - -DISTV= ${DISTVERSION:R} - -SLAVE_ONLY= YES -COMPONENT= -docs - -PGDOCSREL?= ${DOCSDIR_REL}/release-${PGSQL_VER} -PGDOCSDIR?= ${PREFIX}/${PGDOCSREL} - -sgmldir= ${LOCALBASE}/share/sgml -dbdir= ${sgmldir}/docbook - -BUILD_DEPENDS+= onsgmls:textproc/opensp \ - openjade:textproc/openjade \ - ${sgmldir}/iso8879/catalog:textproc/iso8879 \ - ${dbdir}/dsssl/modular/catalog:textproc/dsssl-docbook-modular \ - docbook-sgml>0:textproc/docbook-sgml -CONFIGURE_ARGS= --without-readline -NO_ARCH= yes - -do-build: - ${MAKE_CMD} -C ${WRKSRC} html - -do-install: - @ ${MKDIR} ${STAGEDIR}${PGDOCSDIR} - ( cd ${WRKSRC}/doc/src/sgml/html && \ - ${COPYTREE_SHARE} . ${STAGEDIR}${PGDOCSDIR} ) - -post-install: - @(cd ${STAGEDIR}${PREFIX} && ${FIND} ${PGDOCSREL} -type f) >> ${TMPPLIST} - @(cd ${STAGEDIR}${PREFIX} && ${FIND} ${PGDOCSREL} -type d) | ${SORT} -r | \ - ${SED} 's,.*,@unexec rmdir %D/& 2>/dev/null || true,' >>${TMPPLIST} - -.include "${MASTERDIR}/Makefile" +.include "${.CURDIR}/../postgresql14-docs/Makefile" |