diff options
author | Palle Girgensohn <girgen@FreeBSD.org> | 2023-05-25 17:53:31 +0200 |
---|---|---|
committer | Palle Girgensohn <girgen@FreeBSD.org> | 2023-07-05 16:11:39 +0200 |
commit | 4ee225f90aa3f81a418859086a0bca660f44e7ef (patch) | |
tree | 64d137d38bcdfa59e7ac540bda0a09633028f918 /databases/postgresql16-docs/Makefile | |
parent | games/eboard: Unbreak for llvm16 (diff) |
databases/postgresql16-*: Introduce postgresql16 beta 1
URL: https://www.postgresql.org/about/news/postgresql-16-beta-1-released-2643/
Release notes: https://www.postgresql.org/docs/16/release-16.html
Diffstat (limited to 'databases/postgresql16-docs/Makefile')
-rw-r--r-- | databases/postgresql16-docs/Makefile | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/databases/postgresql16-docs/Makefile b/databases/postgresql16-docs/Makefile new file mode 100644 index 000000000000..5b17a6c2acb8 --- /dev/null +++ b/databases/postgresql16-docs/Makefile @@ -0,0 +1,41 @@ +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:S/.//}-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" |