Index: head/databases/postgresql92-docs/Makefile =================================================================== --- head/databases/postgresql92-docs/Makefile (revision 423057) +++ head/databases/postgresql92-docs/Makefile (revision 423058) @@ -1,7 +1,7 @@ # Created by: Palle Girgensohn # $FreeBSD$ WANT_PGSQL_VER=9.2 COMPONENT= -docs -.include "${.CURDIR}/../postgresql91-docs/Makefile" +.include "${.CURDIR}/../postgresql96-docs/Makefile" Index: head/databases/postgresql93-docs/Makefile =================================================================== --- head/databases/postgresql93-docs/Makefile (revision 423057) +++ head/databases/postgresql93-docs/Makefile (revision 423058) @@ -1,6 +1,6 @@ # Created by: Palle Girgensohn # $FreeBSD$ WANT_PGSQL_VER=9.3 -.include "${.CURDIR}/../postgresql91-docs/Makefile" +.include "${.CURDIR}/../postgresql96-docs/Makefile" Index: head/databases/postgresql94-docs/Makefile =================================================================== --- head/databases/postgresql94-docs/Makefile (revision 423057) +++ head/databases/postgresql94-docs/Makefile (revision 423058) @@ -1,6 +1,6 @@ # Created by: Palle Girgensohn # $FreeBSD$ WANT_PGSQL_VER=9.4 -.include "${.CURDIR}/../postgresql91-docs/Makefile" +.include "${.CURDIR}/../postgresql96-docs/Makefile" Index: head/databases/postgresql95-docs/Makefile =================================================================== --- head/databases/postgresql95-docs/Makefile (revision 423057) +++ head/databases/postgresql95-docs/Makefile (revision 423058) @@ -1,6 +1,6 @@ # Created by: Palle Girgensohn # $FreeBSD$ WANT_PGSQL_VER=9.5 -.include "${.CURDIR}/../postgresql91-docs/Makefile" +.include "${.CURDIR}/../postgresql96-docs/Makefile" Index: head/databases/postgresql96-docs/Makefile =================================================================== --- head/databases/postgresql96-docs/Makefile (revision 423057) +++ head/databases/postgresql96-docs/Makefile (revision 423058) @@ -1,6 +1,45 @@ # Created by: Palle Girgensohn # $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"