svn commit: r51048 - in head/en_US.ISO8859-1/htdocs/releases/12.0R: errata hardware readme relnotes

Glen Barber gjb at FreeBSD.org
Thu Oct 5 19:01:55 UTC 2017


Author: gjb
Date: Thu Oct  5 19:01:54 2017
New Revision: 51048
URL: https://svnweb.freebsd.org/changeset/doc/51048

Log:
  Add Makefiles for the new release documentation structure.
  This is not yet connected to the build.
  
  Sponsored by:	The FreeBSD Foundation

Added:
  head/en_US.ISO8859-1/htdocs/releases/12.0R/errata/Makefile   (contents, props changed)
  head/en_US.ISO8859-1/htdocs/releases/12.0R/hardware/Makefile   (contents, props changed)
  head/en_US.ISO8859-1/htdocs/releases/12.0R/readme/Makefile   (contents, props changed)
  head/en_US.ISO8859-1/htdocs/releases/12.0R/relnotes/Makefile   (contents, props changed)

Added: head/en_US.ISO8859-1/htdocs/releases/12.0R/errata/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/en_US.ISO8859-1/htdocs/releases/12.0R/errata/Makefile	Thu Oct  5 19:01:54 2017	(r51048)
@@ -0,0 +1,28 @@
+# $FreeBSD$
+
+.if exists(../Makefile.conf)
+.include "../Makefile.conf"
+.endif
+.if exists(../Makefile.inc)
+.include "../Makefile.inc"
+.endif
+
+DOC_PREFIX?=	${.CURDIR}/../../../../..
+RELN_ROOT?=	${.CURDIR}/..
+
+DOC?=			errata
+FORMATS?=		html
+INSTALL_COMPRESSED?=	gz
+INSTALL_ONLY_COMPRESSED=
+
+JADEFLAGS+=		-V %generate-article-toc%
+
+SRCS?=			errata.xml
+
+DATA+=			${DOC}.html
+
+install: ${DOC}.html
+	mkdir -p ${DOCINSTALLDIR}
+	${INSTALL_DOCS} ${DATA} ${DOCINSTALLDIR}
+
+.include "${DOC_PREFIX}/share/mk/doc.project.mk"

Added: head/en_US.ISO8859-1/htdocs/releases/12.0R/hardware/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/en_US.ISO8859-1/htdocs/releases/12.0R/hardware/Makefile	Thu Oct  5 19:01:54 2017	(r51048)
@@ -0,0 +1,28 @@
+# $FreeBSD$
+
+.if exists(../Makefile.conf)
+.include "../Makefile.conf"
+.endif
+.if exists(../Makefile.inc)
+.include "../Makefile.inc"
+.endif
+
+DOC_PREFIX?=	${.CURDIR}/../../../../..
+RELN_ROOT?=	${.CURDIR}/..
+
+JADEFLAGS+=		-V %generate-article-toc%
+
+DOC?=			hardware
+FORMATS?=		html
+INSTALL_COMPRESSED?=	gz
+INSTALL_ONLY_COMPRESSED=
+
+SRCS?=			hardware.xml
+
+DATA+=			${DOC}.html
+
+install: ${DOC}.html
+	mkdir -p ${DOCINSTALLDIR}
+	${INSTALL_DOCS} ${DATA} ${DOCINSTALLDIR}
+
+.include "${DOC_PREFIX}/share/mk/doc.project.mk"

Added: head/en_US.ISO8859-1/htdocs/releases/12.0R/readme/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/en_US.ISO8859-1/htdocs/releases/12.0R/readme/Makefile	Thu Oct  5 19:01:54 2017	(r51048)
@@ -0,0 +1,28 @@
+# $FreeBSD$
+
+.if exists(../Makefile.conf)
+.include "../Makefile.conf"
+.endif
+.if exists(../Makefile.inc)
+.include "../Makefile.inc"
+.endif
+
+DOC_PREFIX?=	${.CURDIR}/../../../../..
+RELN_ROOT?=	${.CURDIR}/..
+
+DOC=			readme
+FORMATS?=		html
+INSTALL_COMPRESSED?=	gz
+INSTALL_ONLY_COMPRESSED=
+
+JADEFLAGS+=		-V %generate-article-toc%
+
+SRCS?=			readme.xml
+
+DATA+=			${DOC}.html
+
+install: ${DOC}.html
+	mkdir -p ${DOCINSTALLDIR}
+	${INSTALL_DOCS} ${DATA} ${DOCINSTALLDIR}
+
+.include "${DOC_PREFIX}/share/mk/doc.project.mk"

Added: head/en_US.ISO8859-1/htdocs/releases/12.0R/relnotes/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/en_US.ISO8859-1/htdocs/releases/12.0R/relnotes/Makefile	Thu Oct  5 19:01:54 2017	(r51048)
@@ -0,0 +1,28 @@
+# $FreeBSD$
+
+.if exists(../Makefile.conf)
+.include "../Makefile.conf"
+.endif
+.if exists(../Makefile.inc)
+.include "../Makefile.inc"
+.endif
+
+DOC_PREFIX?=	${.CURDIR}/../../../../..
+RELN_ROOT?=	${.CURDIR}/..
+
+DOC=			relnotes
+FORMATS?=		html
+INSTALL_COMPRESSED?=	gz
+INSTALL_ONLY_COMPRESSED=
+
+JADEFLAGS+=		-V %generate-article-toc%
+
+SRCS?=			relnotes.xml
+
+DATA+=			${DOC}.html
+
+install: ${DOC}.html
+	mkdir -p ${DOCINSTALLDIR}
+	${INSTALL_DOCS} ${DATA} ${DOCINSTALLDIR}
+
+.include "${DOC_PREFIX}/share/mk/doc.project.mk"


More information about the svn-doc-all mailing list