mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-18 00:10:04 +00:00
b4e71c8402
The PostgreSQL Global Development Group has released an update to all supported versions of PostgreSQL, including 16.4, 15.8, 14.13, 13.16, and 12.20. This release fixes 1 security vulnerability and over 55 bugs reported over the last several months. PR: 279671 - make the rc script service jails aware PR: 279536 - remove LLVM max version restriction PR: 278887 - SETENV -> SETENVI for -contrib ports Release notes: https://www.postgresql.org/docs/release/
42 lines
1.0 KiB
Makefile
42 lines
1.0 KiB
Makefile
PORTNAME= postgresql
|
|
PORTREVISION= 0
|
|
PKGNAMESUFFIX?= ${WANT_PGSQL_VER:S,.,,}-docs
|
|
|
|
MAINTAINER= pgsql@FreeBSD.org
|
|
COMMENT= The PostgreSQL documentation set
|
|
|
|
MASTERDIR= ${.CURDIR}/../../databases/postgresql${WANT_PGSQL_VER}-server
|
|
WANT_PGSQL_VER?=16
|
|
|
|
DISTV= ${DISTVERSION:R}
|
|
|
|
SLAVE_ONLY= YES
|
|
COMPONENT= -docs
|
|
|
|
PGDOCSREL?= ${DOCSDIR_REL}/release-${WANT_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 --without-icu
|
|
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}
|
|
|
|
.include "${MASTERDIR}/Makefile"
|