Modify postgresql9[2-5]-docs to include postgresql96-docs/Makefile

instead of expired postgresql91-docs/Makefile
This commit is contained in:
Antoine Brodin 2016-10-01 13:16:04 +00:00
parent 0c50813345
commit ec419424bf
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=423058
5 changed files with 45 additions and 6 deletions

View File

@ -4,4 +4,4 @@
WANT_PGSQL_VER=9.2
COMPONENT= -docs
.include "${.CURDIR}/../postgresql91-docs/Makefile"
.include "${.CURDIR}/../postgresql96-docs/Makefile"

View File

@ -3,4 +3,4 @@
WANT_PGSQL_VER=9.3
.include "${.CURDIR}/../postgresql91-docs/Makefile"
.include "${.CURDIR}/../postgresql96-docs/Makefile"

View File

@ -3,4 +3,4 @@
WANT_PGSQL_VER=9.4
.include "${.CURDIR}/../postgresql91-docs/Makefile"
.include "${.CURDIR}/../postgresql96-docs/Makefile"

View File

@ -3,4 +3,4 @@
WANT_PGSQL_VER=9.5
.include "${.CURDIR}/../postgresql91-docs/Makefile"
.include "${.CURDIR}/../postgresql96-docs/Makefile"

View File

@ -1,6 +1,45 @@
# Created by: Palle Girgensohn <girgen@pingpong.net>
# $FreeBSD$
WANT_PGSQL_VER=9.6
PORTNAME= postgresql
PKGNAMESUFFIX?= ${DISTV:S/.//}-docs
DISTV= ${DISTVERSION:R}
.include "${.CURDIR}/../postgresql91-docs/Makefile"
MAINTAINER= pgsql@FreeBSD.org
COMMENT= The PostgreSQL documentation set
MASTERDIR= ${.CURDIR}/../../databases/postgresql${WANT_PGSQL_VER:S/.//}-server
USES+= pgsql:${WANT_PGSQL_VER}
WANT_PGSQL_VER?=9.6
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
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"