git: 7fc9eb511a9d - main - devel/py-breathe: RST&Sphinx bridge to Doxygen [NEW PORT]

From: Matthias Andree <mandree_at_FreeBSD.org>
Date: Mon, 18 Oct 2021 19:51:15 UTC
The branch main has been updated by mandree:

URL: https://cgit.FreeBSD.org/ports/commit/?id=7fc9eb511a9de8d22aadc855b2812208e04f7b35

commit 7fc9eb511a9de8d22aadc855b2812208e04f7b35
Author:     Matthias Andree <mandree@FreeBSD.org>
AuthorDate: 2021-10-18 15:01:03 +0000
Commit:     Matthias Andree <mandree@FreeBSD.org>
CommitDate: 2021-10-18 19:49:41 +0000

    devel/py-breathe: RST&Sphinx bridge to Doxygen [NEW PORT]
    
    Breathe provides a bridge between the Sphinx and Doxygen documentation systems.
    
    It is an easy way to include Doxygen information in a set of documentation
    generated by Sphinx. The aim is to produce an autodoc like support for people
    who enjoy using Sphinx but work with languages other than Python. The system
    relies on the Doxygen’s xml output.
    
    WWW: https://github.com/michaeljones/breathe
---
 devel/Makefile             |    1 +
 devel/py-breathe/Makefile  |   63 +++
 devel/py-breathe/distinfo  |    3 +
 devel/py-breathe/pkg-descr |    8 +
 devel/py-breathe/pkg-plist | 1085 ++++++++++++++++++++++++++++++++++++++++++++
 5 files changed, 1160 insertions(+)

diff --git a/devel/Makefile b/devel/Makefile
index 9d2d1770db51..67bfeb46fc35 100644
--- a/devel/Makefile
+++ b/devel/Makefile
@@ -4273,6 +4273,7 @@
     SUBDIR += py-boolean.py
     SUBDIR += py-boto
     SUBDIR += py-botocore
+    SUBDIR += py-breathe
     SUBDIR += py-bsd
     SUBDIR += py-btest
     SUBDIR += py-build
diff --git a/devel/py-breathe/Makefile b/devel/py-breathe/Makefile
new file mode 100644
index 000000000000..f0dbbbb8d6b8
--- /dev/null
+++ b/devel/py-breathe/Makefile
@@ -0,0 +1,63 @@
+PORTNAME=	breathe
+PORTVERSION=	4.31.0
+CATEGORIES=	devel python
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	mandree@FreeBSD.org
+COMMENT=	an extension to reStructuredText and Sphinx to render Doxygen xml output
+
+LICENSE=	BSD2CLAUSE
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+BUILD_DEPENDS=		${RUN_DEPENDS}
+RUN_DEPENDS=		doxygen:devel/doxygen \
+			${PYTHON_PKGNAMEPREFIX}sphinx>=0,1:textproc/py-sphinx@${PY_FLAVOR}
+PDFDOCS_BUILD_DEPENDS=	pdflatex:print/tex-formats
+
+USES=		gmake python:3.6+
+USE_GITHUB=	yes
+USE_PYTHON=	distutils
+GH_TUPLE=	michaeljones:breathe:v${PORTVERSION}
+
+OPTIONS_DEFINE=	DOCS EXAMPLES PDFDOCS
+OPTIONS_SUB=	yes
+PDFDOCS_DESC=	Build PDF documentation (implies DOCS)
+PDFDOCS_IMPLIES=DOCS
+
+post-patch:
+		${REINPLACE_CMD} "s/^git_tag = subprocess.*/git_tag = b'v${PORTVERSION}'/" \
+			${WRKSRC}/documentation/source/conf.py
+
+post-build-DOCS-on:
+		cd ${WRKSRC} && \
+			${SETENV} PYTHONPATH=${WRKSRC}/ \
+				${MAKE_ENV} ${MAKE_CMD} ${MAKE_FLAGS} \
+				${MAKEFILE} ${_MAKE_JOBS} ${MAKE_ARGS:N${DESTDIRNAME}=*} html </dev/null
+
+post-build-PDFDOCS-on:
+		cd ${WRKSRC} && \
+			${SETENV} PYTHONPATH=${WRKSRC}/ \
+				${MAKE_ENV} ${MAKE_CMD} ${MAKE_FLAGS} \
+				${MAKEFILE} ${_MAKE_JOBS} ${MAKE_ARGS:N${DESTDIRNAME}=*} pdf </dev/null
+
+post-install-DOCS-on:
+		${MKDIR} ${STAGEDIR}${DOCSDIR}
+		cd ${WRKSRC}/documentation/build && \
+			${COPYTREE_SHARE} html ${STAGEDIR}${DOCSDIR} && \
+			${RM} -r ${STAGEDIR}${DOCSDIR}/html/_sources
+
+post-install-PDFDOCS-on:
+		${MKDIR} ${STAGEDIR}${DOCSDIR}
+		${INSTALL_MAN} ${WRKSRC}/documentation/build/latex/*.pdf ${STAGEDIR}${DOCSDIR}
+
+post-install-EXAMPLES-on:
+		${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
+		cd ${WRKSRC}/examples && \
+			${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR}
+
+do-test:
+		cd ${WRKSRC}/tests && \
+			PYTHONPATH=../:${STAGEDIR}${PYTHON_SITELIBDIR} \
+			${PYTHON_CMD} -m pytest -v
+
+.include <bsd.port.mk>
diff --git a/devel/py-breathe/distinfo b/devel/py-breathe/distinfo
new file mode 100644
index 000000000000..7dced5253fc2
--- /dev/null
+++ b/devel/py-breathe/distinfo
@@ -0,0 +1,3 @@
+TIMESTAMP = 1634549716
+SHA256 (michaeljones-breathe-4.31.0-v4.31.0_GH0.tar.gz) = 63edd18240b7aeb155c6b3d7de13c1322dd7c150f2ad2e9742e95e51b0dc48a8
+SIZE (michaeljones-breathe-4.31.0-v4.31.0_GH0.tar.gz) = 193629
diff --git a/devel/py-breathe/pkg-descr b/devel/py-breathe/pkg-descr
new file mode 100644
index 000000000000..812d40b2abd5
--- /dev/null
+++ b/devel/py-breathe/pkg-descr
@@ -0,0 +1,8 @@
+Breathe provides a bridge between the Sphinx and Doxygen documentation systems.
+
+It is an easy way to include Doxygen information in a set of documentation
+generated by Sphinx. The aim is to produce an autodoc like support for people
+who enjoy using Sphinx but work with languages other than Python. The system
+relies on the Doxygen’s xml output.
+
+WWW: https://github.com/michaeljones/breathe
diff --git a/devel/py-breathe/pkg-plist b/devel/py-breathe/pkg-plist
new file mode 100644
index 000000000000..872474eb0ca7
--- /dev/null
+++ b/devel/py-breathe/pkg-plist
@@ -0,0 +1,1085 @@
+bin/breathe-apidoc
+@comment %%PYTHON_SITELIBDIR%%/breathe-4.31.0-py%%PYTHON_VER%%.egg-info/PKG-INFO
+@comment %%PYTHON_SITELIBDIR%%/breathe-4.31.0-py%%PYTHON_VER%%.egg-info/SOURCES.txt
+@comment %%PYTHON_SITELIBDIR%%/breathe-4.31.0-py%%PYTHON_VER%%.egg-info/dependency_links.txt
+@comment %%PYTHON_SITELIBDIR%%/breathe-4.31.0-py%%PYTHON_VER%%.egg-info/entry_points.txt
+@comment %%PYTHON_SITELIBDIR%%/breathe-4.31.0-py%%PYTHON_VER%%.egg-info/not-zip-safe
+@comment %%PYTHON_SITELIBDIR%%/breathe-4.31.0-py%%PYTHON_VER%%.egg-info/requires.txt
+@comment %%PYTHON_SITELIBDIR%%/breathe-4.31.0-py%%PYTHON_VER%%.egg-info/top_level.txt
+%%PYTHON_SITELIBDIR%%/breathe/__init__.py
+%%PYTHON_SITELIBDIR%%/breathe/__pycache__/__init__%%PYTHON_EXT_SUFFIX%%.opt-1.pyc
+%%PYTHON_SITELIBDIR%%/breathe/__pycache__/__init__%%PYTHON_EXT_SUFFIX%%.pyc
+%%PYTHON_SITELIBDIR%%/breathe/__pycache__/apidoc%%PYTHON_EXT_SUFFIX%%.opt-1.pyc
+%%PYTHON_SITELIBDIR%%/breathe/__pycache__/apidoc%%PYTHON_EXT_SUFFIX%%.pyc
+%%PYTHON_SITELIBDIR%%/breathe/__pycache__/exception%%PYTHON_EXT_SUFFIX%%.opt-1.pyc
+%%PYTHON_SITELIBDIR%%/breathe/__pycache__/exception%%PYTHON_EXT_SUFFIX%%.pyc
+%%PYTHON_SITELIBDIR%%/breathe/__pycache__/file_state_cache%%PYTHON_EXT_SUFFIX%%.opt-1.pyc
+%%PYTHON_SITELIBDIR%%/breathe/__pycache__/file_state_cache%%PYTHON_EXT_SUFFIX%%.pyc
+%%PYTHON_SITELIBDIR%%/breathe/__pycache__/path_handler%%PYTHON_EXT_SUFFIX%%.opt-1.pyc
+%%PYTHON_SITELIBDIR%%/breathe/__pycache__/path_handler%%PYTHON_EXT_SUFFIX%%.pyc
+%%PYTHON_SITELIBDIR%%/breathe/__pycache__/process%%PYTHON_EXT_SUFFIX%%.opt-1.pyc
+%%PYTHON_SITELIBDIR%%/breathe/__pycache__/process%%PYTHON_EXT_SUFFIX%%.pyc
+%%PYTHON_SITELIBDIR%%/breathe/__pycache__/project%%PYTHON_EXT_SUFFIX%%.opt-1.pyc
+%%PYTHON_SITELIBDIR%%/breathe/__pycache__/project%%PYTHON_EXT_SUFFIX%%.pyc
+%%PYTHON_SITELIBDIR%%/breathe/apidoc.py
+%%PYTHON_SITELIBDIR%%/breathe/directives/__init__.py
+%%PYTHON_SITELIBDIR%%/breathe/directives/__pycache__/__init__%%PYTHON_EXT_SUFFIX%%.opt-1.pyc
+%%PYTHON_SITELIBDIR%%/breathe/directives/__pycache__/__init__%%PYTHON_EXT_SUFFIX%%.pyc
+%%PYTHON_SITELIBDIR%%/breathe/directives/__pycache__/class_like%%PYTHON_EXT_SUFFIX%%.opt-1.pyc
+%%PYTHON_SITELIBDIR%%/breathe/directives/__pycache__/class_like%%PYTHON_EXT_SUFFIX%%.pyc
+%%PYTHON_SITELIBDIR%%/breathe/directives/__pycache__/content_block%%PYTHON_EXT_SUFFIX%%.opt-1.pyc
+%%PYTHON_SITELIBDIR%%/breathe/directives/__pycache__/content_block%%PYTHON_EXT_SUFFIX%%.pyc
+%%PYTHON_SITELIBDIR%%/breathe/directives/__pycache__/file%%PYTHON_EXT_SUFFIX%%.opt-1.pyc
+%%PYTHON_SITELIBDIR%%/breathe/directives/__pycache__/file%%PYTHON_EXT_SUFFIX%%.pyc
+%%PYTHON_SITELIBDIR%%/breathe/directives/__pycache__/function%%PYTHON_EXT_SUFFIX%%.opt-1.pyc
+%%PYTHON_SITELIBDIR%%/breathe/directives/__pycache__/function%%PYTHON_EXT_SUFFIX%%.pyc
+%%PYTHON_SITELIBDIR%%/breathe/directives/__pycache__/index%%PYTHON_EXT_SUFFIX%%.opt-1.pyc
+%%PYTHON_SITELIBDIR%%/breathe/directives/__pycache__/index%%PYTHON_EXT_SUFFIX%%.pyc
+%%PYTHON_SITELIBDIR%%/breathe/directives/__pycache__/item%%PYTHON_EXT_SUFFIX%%.opt-1.pyc
+%%PYTHON_SITELIBDIR%%/breathe/directives/__pycache__/item%%PYTHON_EXT_SUFFIX%%.pyc
+%%PYTHON_SITELIBDIR%%/breathe/directives/__pycache__/setup%%PYTHON_EXT_SUFFIX%%.opt-1.pyc
+%%PYTHON_SITELIBDIR%%/breathe/directives/__pycache__/setup%%PYTHON_EXT_SUFFIX%%.pyc
+%%PYTHON_SITELIBDIR%%/breathe/directives/class_like.py
+%%PYTHON_SITELIBDIR%%/breathe/directives/content_block.py
+%%PYTHON_SITELIBDIR%%/breathe/directives/file.py
+%%PYTHON_SITELIBDIR%%/breathe/directives/function.py
+%%PYTHON_SITELIBDIR%%/breathe/directives/index.py
+%%PYTHON_SITELIBDIR%%/breathe/directives/item.py
+%%PYTHON_SITELIBDIR%%/breathe/directives/setup.py
+%%PYTHON_SITELIBDIR%%/breathe/exception.py
+%%PYTHON_SITELIBDIR%%/breathe/file_state_cache.py
+%%PYTHON_SITELIBDIR%%/breathe/finder/__init__.py
+%%PYTHON_SITELIBDIR%%/breathe/finder/__pycache__/__init__%%PYTHON_EXT_SUFFIX%%.opt-1.pyc
+%%PYTHON_SITELIBDIR%%/breathe/finder/__pycache__/__init__%%PYTHON_EXT_SUFFIX%%.pyc
+%%PYTHON_SITELIBDIR%%/breathe/finder/__pycache__/compound%%PYTHON_EXT_SUFFIX%%.opt-1.pyc
+%%PYTHON_SITELIBDIR%%/breathe/finder/__pycache__/compound%%PYTHON_EXT_SUFFIX%%.pyc
+%%PYTHON_SITELIBDIR%%/breathe/finder/__pycache__/factory%%PYTHON_EXT_SUFFIX%%.opt-1.pyc
+%%PYTHON_SITELIBDIR%%/breathe/finder/__pycache__/factory%%PYTHON_EXT_SUFFIX%%.pyc
+%%PYTHON_SITELIBDIR%%/breathe/finder/__pycache__/index%%PYTHON_EXT_SUFFIX%%.opt-1.pyc
+%%PYTHON_SITELIBDIR%%/breathe/finder/__pycache__/index%%PYTHON_EXT_SUFFIX%%.pyc
+%%PYTHON_SITELIBDIR%%/breathe/finder/compound.py
+%%PYTHON_SITELIBDIR%%/breathe/finder/factory.py
+%%PYTHON_SITELIBDIR%%/breathe/finder/index.py
+%%PYTHON_SITELIBDIR%%/breathe/parser/__init__.py
+%%PYTHON_SITELIBDIR%%/breathe/parser/__pycache__/__init__%%PYTHON_EXT_SUFFIX%%.opt-1.pyc
+%%PYTHON_SITELIBDIR%%/breathe/parser/__pycache__/__init__%%PYTHON_EXT_SUFFIX%%.pyc
+%%PYTHON_SITELIBDIR%%/breathe/parser/__pycache__/compound%%PYTHON_EXT_SUFFIX%%.opt-1.pyc
+%%PYTHON_SITELIBDIR%%/breathe/parser/__pycache__/compound%%PYTHON_EXT_SUFFIX%%.pyc
+%%PYTHON_SITELIBDIR%%/breathe/parser/__pycache__/compoundsuper%%PYTHON_EXT_SUFFIX%%.opt-1.pyc
+%%PYTHON_SITELIBDIR%%/breathe/parser/__pycache__/compoundsuper%%PYTHON_EXT_SUFFIX%%.pyc
+%%PYTHON_SITELIBDIR%%/breathe/parser/__pycache__/index%%PYTHON_EXT_SUFFIX%%.opt-1.pyc
+%%PYTHON_SITELIBDIR%%/breathe/parser/__pycache__/index%%PYTHON_EXT_SUFFIX%%.pyc
+%%PYTHON_SITELIBDIR%%/breathe/parser/__pycache__/indexsuper%%PYTHON_EXT_SUFFIX%%.opt-1.pyc
+%%PYTHON_SITELIBDIR%%/breathe/parser/__pycache__/indexsuper%%PYTHON_EXT_SUFFIX%%.pyc
+%%PYTHON_SITELIBDIR%%/breathe/parser/compound.py
+%%PYTHON_SITELIBDIR%%/breathe/parser/compoundsuper.py
+%%PYTHON_SITELIBDIR%%/breathe/parser/index.py
+%%PYTHON_SITELIBDIR%%/breathe/parser/indexsuper.py
+%%PYTHON_SITELIBDIR%%/breathe/path_handler.py
+%%PYTHON_SITELIBDIR%%/breathe/process.py
+%%PYTHON_SITELIBDIR%%/breathe/project.py
+%%PYTHON_SITELIBDIR%%/breathe/renderer/__init__.py
+%%PYTHON_SITELIBDIR%%/breathe/renderer/__pycache__/__init__%%PYTHON_EXT_SUFFIX%%.opt-1.pyc
+%%PYTHON_SITELIBDIR%%/breathe/renderer/__pycache__/__init__%%PYTHON_EXT_SUFFIX%%.pyc
+%%PYTHON_SITELIBDIR%%/breathe/renderer/__pycache__/filter%%PYTHON_EXT_SUFFIX%%.opt-1.pyc
+%%PYTHON_SITELIBDIR%%/breathe/renderer/__pycache__/filter%%PYTHON_EXT_SUFFIX%%.pyc
+%%PYTHON_SITELIBDIR%%/breathe/renderer/__pycache__/mask%%PYTHON_EXT_SUFFIX%%.opt-1.pyc
+%%PYTHON_SITELIBDIR%%/breathe/renderer/__pycache__/mask%%PYTHON_EXT_SUFFIX%%.pyc
+%%PYTHON_SITELIBDIR%%/breathe/renderer/__pycache__/sphinxrenderer%%PYTHON_EXT_SUFFIX%%.opt-1.pyc
+%%PYTHON_SITELIBDIR%%/breathe/renderer/__pycache__/sphinxrenderer%%PYTHON_EXT_SUFFIX%%.pyc
+%%PYTHON_SITELIBDIR%%/breathe/renderer/__pycache__/target%%PYTHON_EXT_SUFFIX%%.opt-1.pyc
+%%PYTHON_SITELIBDIR%%/breathe/renderer/__pycache__/target%%PYTHON_EXT_SUFFIX%%.pyc
+%%PYTHON_SITELIBDIR%%/breathe/renderer/filter.py
+%%PYTHON_SITELIBDIR%%/breathe/renderer/mask.py
+%%PYTHON_SITELIBDIR%%/breathe/renderer/sphinxrenderer.py
+%%PYTHON_SITELIBDIR%%/breathe/renderer/target.py
+%%PDFDOCS%%%%DOCSDIR%%/BreatheExample.pdf
+%%PORTDOCS%%%%DOCSDIR%%/html/.buildinfo
+%%PORTDOCS%%%%DOCSDIR%%/html/_images/imageExample.png
+%%PORTDOCS%%%%DOCSDIR%%/html/_static/alert_info_32.png
+%%PORTDOCS%%%%DOCSDIR%%/html/_static/alert_warning_32.png
+%%PORTDOCS%%%%DOCSDIR%%/html/_static/basic.css
+%%PORTDOCS%%%%DOCSDIR%%/html/_static/bg-page.png
+%%PORTDOCS%%%%DOCSDIR%%/html/_static/breathe.css
+%%PORTDOCS%%%%DOCSDIR%%/html/_static/bullet_orange.png
+%%PORTDOCS%%%%DOCSDIR%%/html/_static/doctools.js
+%%PORTDOCS%%%%DOCSDIR%%/html/_static/documentation_options.js
+%%PORTDOCS%%%%DOCSDIR%%/html/_static/file.png
+%%PORTDOCS%%%%DOCSDIR%%/html/_static/haiku.css
+%%PORTDOCS%%%%DOCSDIR%%/html/_static/jquery-3.5.1.js
+%%PORTDOCS%%%%DOCSDIR%%/html/_static/jquery.js
+%%PORTDOCS%%%%DOCSDIR%%/html/_static/language_data.js
+%%PORTDOCS%%%%DOCSDIR%%/html/_static/minus.png
+%%PORTDOCS%%%%DOCSDIR%%/html/_static/plus.png
+%%PORTDOCS%%%%DOCSDIR%%/html/_static/pygments.css
+%%PORTDOCS%%%%DOCSDIR%%/html/_static/searchtools.js
+%%PORTDOCS%%%%DOCSDIR%%/html/_static/underscore-1.12.0.js
+%%PORTDOCS%%%%DOCSDIR%%/html/_static/underscore.js
+%%PORTDOCS%%%%DOCSDIR%%/html/autofile.html
+%%PORTDOCS%%%%DOCSDIR%%/html/autoindex.html
+%%PORTDOCS%%%%DOCSDIR%%/html/class.html
+%%PORTDOCS%%%%DOCSDIR%%/html/codeguide.html
+%%PORTDOCS%%%%DOCSDIR%%/html/contributing.html
+%%PORTDOCS%%%%DOCSDIR%%/html/credits.html
+%%PORTDOCS%%%%DOCSDIR%%/html/customcss.html
+%%PORTDOCS%%%%DOCSDIR%%/html/define.html
+%%PORTDOCS%%%%DOCSDIR%%/html/differences.html
+%%PORTDOCS%%%%DOCSDIR%%/html/directives.html
+%%PORTDOCS%%%%DOCSDIR%%/html/domains.html
+%%PORTDOCS%%%%DOCSDIR%%/html/doxygen.html
+%%PORTDOCS%%%%DOCSDIR%%/html/embeddedrst.html
+%%PORTDOCS%%%%DOCSDIR%%/html/enum.html
+%%PORTDOCS%%%%DOCSDIR%%/html/enumvalue.html
+%%PORTDOCS%%%%DOCSDIR%%/html/file.html
+%%PORTDOCS%%%%DOCSDIR%%/html/function.html
+%%PORTDOCS%%%%DOCSDIR%%/html/genindex.html
+%%PORTDOCS%%%%DOCSDIR%%/html/group.html
+%%PORTDOCS%%%%DOCSDIR%%/html/groups.html
+%%PORTDOCS%%%%DOCSDIR%%/html/index.html
+%%PORTDOCS%%%%DOCSDIR%%/html/inline.html
+%%PORTDOCS%%%%DOCSDIR%%/html/latexmath.html
+%%PORTDOCS%%%%DOCSDIR%%/html/lists.html
+%%PORTDOCS%%%%DOCSDIR%%/html/markups.html
+%%PORTDOCS%%%%DOCSDIR%%/html/members.html
+%%PORTDOCS%%%%DOCSDIR%%/html/namespace.html
+%%PORTDOCS%%%%DOCSDIR%%/html/objects.inv
+%%PORTDOCS%%%%DOCSDIR%%/html/page.html
+%%PORTDOCS%%%%DOCSDIR%%/html/quickstart.html
+%%PORTDOCS%%%%DOCSDIR%%/html/readthedocs.html
+%%PORTDOCS%%%%DOCSDIR%%/html/search.html
+%%PORTDOCS%%%%DOCSDIR%%/html/searchindex.js
+%%PORTDOCS%%%%DOCSDIR%%/html/specific.html
+%%PORTDOCS%%%%DOCSDIR%%/html/struct.html
+%%PORTDOCS%%%%DOCSDIR%%/html/tables.html
+%%PORTDOCS%%%%DOCSDIR%%/html/template.html
+%%PORTDOCS%%%%DOCSDIR%%/html/testpages.html
+%%PORTDOCS%%%%DOCSDIR%%/html/tinyxml.html
+%%PORTDOCS%%%%DOCSDIR%%/html/typedef.html
+%%PORTDOCS%%%%DOCSDIR%%/html/union.html
+%%PORTDOCS%%%%DOCSDIR%%/html/variable.html
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/.gitignore
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/Makefile
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/afterdoc.cfg
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/afterdoc.h
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/afterdoc/xml/afterdoc_8h.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/afterdoc/xml/class_test1.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/afterdoc/xml/combine.xslt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/afterdoc/xml/compound.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/afterdoc/xml/index.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/afterdoc/xml/index.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/afterdoc/xml/xml.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/author.cfg
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/author.cpp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/author/xml/author_8cpp.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/author/xml/bug.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/author/xml/class_windows_n_t.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/author/xml/combine.xslt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/author/xml/compound.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/author/xml/index.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/author/xml/index.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/author/xml/xml.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/autolink.cfg
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/autolink.cpp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/autolink/xml/autolink_8cpp.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/autolink/xml/class_test2.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/autolink/xml/combine.xslt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/autolink/xml/compound.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/autolink/xml/index.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/autolink/xml/index.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/autolink/xml/xml.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/class.cfg
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/class.h
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/class/xml/class_8h.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/class/xml/class_test.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/class/xml/class_test3.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/class/xml/combine.xslt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/class/xml/compound.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/class/xml/index.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/class/xml/index.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/class/xml/xml.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/define.cfg
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/define.h
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/define/xml/combine.xslt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/define/xml/compound.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/define/xml/define_8h.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/define/xml/index.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/define/xml/index.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/define/xml/xml.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/diagrams.cfg
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/diagrams/xml/class_a.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/diagrams/xml/class_b.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/diagrams/xml/class_c.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/diagrams/xml/class_d.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/diagrams/xml/class_e.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/diagrams/xml/combine.xslt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/diagrams/xml/compound.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/diagrams/xml/diagrams__a_8h.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/diagrams/xml/diagrams__b_8h.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/diagrams/xml/diagrams__c_8h.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/diagrams/xml/diagrams__d_8h.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/diagrams/xml/diagrams__e_8h.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/diagrams/xml/index.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/diagrams/xml/index.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/diagrams/xml/xml.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/diagrams_a.h
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/diagrams_b.h
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/diagrams_c.h
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/diagrams_d.h
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/diagrams_e.h
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/docstring.cfg
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/docstring.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/docstring/xml/classdocstring_1_1PyClass.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/docstring/xml/combine.xslt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/docstring/xml/compound.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/docstring/xml/docstring_8py.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/docstring/xml/index.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/docstring/xml/index.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/docstring/xml/namespacedocstring.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/docstring/xml/xml.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/enum.cfg
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/enum.h
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/enum/xml/class_test4.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/enum/xml/combine.xslt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/enum/xml/compound.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/enum/xml/enum_8h.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/enum/xml/index.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/enum/xml/index.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/enum/xml/xml.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/example.cfg
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/example.cpp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/example.tag
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/example/xml/class_test5.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/example/xml/combine.xslt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/example/xml/compound.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/example/xml/example_8cpp.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/example/xml/example_test_8cpp-example.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/example/xml/index.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/example/xml/index.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/example/xml/xml.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/example_test.cpp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/file.cfg
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/file.h
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/file/xml/combine.xslt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/file/xml/compound.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/file/xml/file_8h.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/file/xml/index.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/file/xml/index.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/file/xml/xml.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/func.cfg
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/func.h
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/func/xml/class_test6.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/func/xml/combine.xslt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/func/xml/compound.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/func/xml/func_8h.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/func/xml/index.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/func/xml/index.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/func/xml/xml.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/group.cfg
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/group.cpp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/group/xml/class_c1.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/group/xml/class_c2.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/group/xml/class_c3.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/group/xml/class_c4.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/group/xml/class_c5.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/group/xml/combine.xslt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/group/xml/compound.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/group/xml/group_8cpp.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/group/xml/group__group1.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/group/xml/group__group2.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/group/xml/group__group3.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/group/xml/group__group4.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/group/xml/group__group5.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/group/xml/group__group5_mypage1.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/group/xml/group__group5_mypage2.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/group/xml/index.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/group/xml/index.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/group/xml/namespace_n1.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/group/xml/xml.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/include.cfg
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/include.cpp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/include/xml/class_test7.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/include/xml/combine.xslt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/include/xml/compound.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/include/xml/example.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/include/xml/include_8cpp.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/include/xml/index.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/include/xml/index.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/include/xml/xml.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/interface.cfg
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/interface.h
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/interface/xml/class_test_interface.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/interface/xml/combine.xslt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/interface/xml/compound.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/interface/xml/index.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/interface/xml/index.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/interface/xml/interface_8h.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/interface/xml/xml.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/jdstyle.cfg
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/jdstyle.cpp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/jdstyle/xml/class_test8.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/jdstyle/xml/combine.xslt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/jdstyle/xml/compound.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/jdstyle/xml/index.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/jdstyle/xml/index.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/jdstyle/xml/jdstyle_8cpp.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/jdstyle/xml/xml.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/manual.c
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/manual.cfg
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/manual/xml/combine.xslt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/manual/xml/compound.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/manual/xml/index.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/manual/xml/index.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/manual/xml/manual_8c.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/manual/xml/struct_car.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/manual/xml/struct_object.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/manual/xml/struct_truck.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/manual/xml/struct_vehicle.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/manual/xml/xml.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/memgrp.cfg
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/memgrp.cpp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/memgrp/xml/class_test9.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/memgrp/xml/combine.xslt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/memgrp/xml/compound.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/memgrp/xml/index.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/memgrp/xml/index.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/memgrp/xml/memgrp_8cpp.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/memgrp/xml/xml.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/mux.cfg
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/mux.vhdl
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/mux/xml/classmux__using__with.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/mux/xml/classmux__using__with_1_1behavior.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/mux/xml/combine.xslt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/mux/xml/compound.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/mux/xml/index.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/mux/xml/index.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/mux/xml/mux_8vhdl.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/mux/xml/xml.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/overload.cfg
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/overload.cpp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/overload/xml/class_test10.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/overload/xml/combine.xslt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/overload/xml/compound.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/overload/xml/index.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/overload/xml/index.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/overload/xml/overload_8cpp.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/overload/xml/xml.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/page.cfg
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/page.doc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/page/xml/combine.xslt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/page/xml/compound.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/page/xml/index.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/page/xml/index.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/page/xml/page1.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/page/xml/page2.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/page/xml/page_8doc.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/page/xml/xml.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/par.cfg
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/par.cpp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/par/xml/class_test11.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/par/xml/combine.xslt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/par/xml/compound.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/par/xml/index.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/par/xml/index.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/par/xml/par_8cpp.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/par/xml/xml.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/parblock.cfg
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/parblock.cpp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/parblock/xml/class_test15.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/parblock/xml/combine.xslt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/parblock/xml/compound.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/parblock/xml/index.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/parblock/xml/index.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/parblock/xml/parblock_8cpp.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/parblock/xml/xml.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/pyexample.cfg
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/pyexample.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/pyexample/xml/classpyexample_1_1PyClass.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/pyexample/xml/combine.xslt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/pyexample/xml/compound.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/pyexample/xml/index.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/pyexample/xml/index.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/pyexample/xml/namespacepyexample.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/pyexample/xml/pyexample_8py.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/pyexample/xml/xml.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/qtstyle.cfg
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/qtstyle.cpp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/qtstyle/xml/class_test12.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/qtstyle/xml/combine.xslt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/qtstyle/xml/compound.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/qtstyle/xml/index.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/qtstyle/xml/index.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/qtstyle/xml/qtstyle_8cpp.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/qtstyle/xml/xml.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/relates.cfg
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/relates.cpp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/relates/xml/class_string.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/relates/xml/combine.xslt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/relates/xml/compound.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/relates/xml/index.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/relates/xml/index.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/relates/xml/relates_8cpp.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/relates/xml/xml.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/restypedef.cfg
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/restypedef.cpp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/restypedef/xml/combine.xslt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/restypedef/xml/compound.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/restypedef/xml/index.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/restypedef/xml/index.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/restypedef/xml/restypedef_8cpp.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/restypedef/xml/struct_coord_struct.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/restypedef/xml/xml.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/structcmd.cfg
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/structcmd.h
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/structcmd/xml/combine.xslt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/structcmd/xml/compound.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/structcmd/xml/index.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/structcmd/xml/index.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/structcmd/xml/structcmd_8h.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/structcmd/xml/xml.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/tag.cfg
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/tag.cpp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/tag/xml/class_tag.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/tag/xml/combine.xslt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/tag/xml/compound.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/tag/xml/index.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/tag/xml/index.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/tag/xml/tag_8cpp.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/tag/xml/xml.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/templ.cfg
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/templ.cpp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/template/xml/class_test14.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/template/xml/class_test14_3_01_t_01_5_01_4.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/template/xml/class_test14_3_01void_01_5_00_01200_01_4.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/template/xml/combine.xslt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/template/xml/compound.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/template/xml/index.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/template/xml/index.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/template/xml/templ_8cpp.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doxygen/template/xml/xml.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/.gitignore
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/Makefile
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/alias.cfg
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/alias.h
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/alias/xml/alias_8h.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/alias/xml/combine.xslt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/alias/xml/compound.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/alias/xml/index.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/alias/xml/index.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/alias/xml/xml.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/array.cfg
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/array.h
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/array/xml/array_8h.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/array/xml/combine.xslt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/array/xml/compound.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/array/xml/index.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/array/xml/index.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/array/xml/xml.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/auto.cfg
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/auto/xml/auto__class_8h.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/auto/xml/auto__function_8h.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/auto/xml/class_auto_class_test.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/auto/xml/combine.xslt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/auto/xml/compound.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/auto/xml/index.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/auto/xml/index.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/auto/xml/xml.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/auto_class.h
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/auto_function.h
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/c_enum.cfg
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/c_enum.h
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/c_enum/xml/c__enum_8h.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/c_enum/xml/combine.xslt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/c_enum/xml/compound.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/c_enum/xml/index.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/c_enum/xml/index.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/c_enum/xml/xml.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/c_file.cfg
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/c_file.h
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/c_file/xml/c__file_8h.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/c_file/xml/combine.xslt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/c_file/xml/compound.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/c_file/xml/index.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/c_file/xml/index.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/c_file/xml/structcache__tree.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/c_file/xml/structcache__tree__sub.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/c_file/xml/xml.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/c_macro.cfg
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/c_macro.h
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/c_macro/xml/c__macro_8h.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/c_macro/xml/combine.xslt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/c_macro/xml/compound.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/c_macro/xml/index.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/c_macro/xml/index.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/c_macro/xml/xml.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/c_struct.cfg
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/c_struct.h
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/c_struct/xml/c__struct_8h.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/c_struct/xml/combine.xslt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/c_struct/xml/compound.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/c_struct/xml/index.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/c_struct/xml/index.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/c_struct/xml/struct_a_c_struct.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/c_struct/xml/struct_a_c_struct_1_1_a_nested_struct.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/c_struct/xml/xml.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/c_typedef.cfg
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/c_typedef.h
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/c_typedef/xml/c__typedef_8h.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/c_typedef/xml/combine.xslt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/c_typedef/xml/compound.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/c_typedef/xml/index.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/c_typedef/xml/index.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/c_typedef/xml/xml.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/c_union.cfg
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/c_union.h
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/c_union/xml/c__union_8h.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/c_union/xml/combine.xslt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/c_union/xml/compound.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/c_union/xml/index.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/c_union/xml/index.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/c_union/xml/union_a_c_union.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/c_union/xml/xml.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/class.cfg
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/class.cpp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/class.h
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/class/xml/class_8cpp.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/class/xml/class_8h.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/class/xml/class_class_test.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/class/xml/class_class_test_1_1_private_class.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/class/xml/class_class_test_1_1_protected_class.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/class/xml/class_class_test_1_1_public_class.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/class/xml/class_class_test_1_1_undocumented_private_class.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/class/xml/class_class_test_1_1_undocumented_protected_class.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/class/xml/class_class_test_1_1_undocumented_public_class.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/class/xml/class_outer_class.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/class/xml/class_outer_class_1_1_inner_class.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/class/xml/classtestnamespace_1_1_class_test.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/class/xml/classtestnamespace_1_1_namespaced_class_test.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/class/xml/combine.xslt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/class/xml/compound.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/class/xml/index.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/class/xml/index.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/class/xml/namespacetestnamespace.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/class/xml/struct_class_test_1_1_private_struct.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/class/xml/struct_class_test_1_1_protected_struct.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/class/xml/struct_class_test_1_1_public_struct.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/class/xml/struct_class_test_1_1_undocumented_private_struct.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/class/xml/struct_class_test_1_1_undocumented_protected_struct.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/class/xml/struct_class_test_1_1_undocumented_public_struct.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/class/xml/xml.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/cpp_anon.cfg
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/cpp_anon.h
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/cpp_anon/xml/combine.xslt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/cpp_anon/xml/compound.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/cpp_anon/xml/cpp__anon_8h.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/cpp_anon/xml/index.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/cpp_anon/xml/index.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/cpp_anon/xml/struct_class_with_anon_entities.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/cpp_anon/xml/xml.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/cpp_constexpr_hax.cfg
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/cpp_constexpr_hax.h
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/cpp_constexpr_hax/xml/combine.xslt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/cpp_constexpr_hax/xml/compound.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/cpp_constexpr_hax/xml/cpp__constexpr__hax_8h.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/cpp_constexpr_hax/xml/index.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/cpp_constexpr_hax/xml/index.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/cpp_constexpr_hax/xml/xml.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/cpp_enum.cfg
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/cpp_enum.h
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/cpp_enum/xml/combine.xslt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/cpp_enum/xml/compound.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/cpp_enum/xml/cpp__enum_8h.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/cpp_enum/xml/index.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/cpp_enum/xml/index.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/cpp_enum/xml/xml.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/cpp_friendclass.cfg
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/cpp_friendclass.h
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/cpp_friendclass/xml/combine.xslt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/cpp_friendclass/xml/compound.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/cpp_friendclass/xml/cpp__friendclass_8h.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/cpp_friendclass/xml/index.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/cpp_friendclass/xml/index.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/cpp_friendclass/xml/struct_a.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/cpp_friendclass/xml/struct_b.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/cpp_friendclass/xml/struct_c.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/cpp_friendclass/xml/xml.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/cpp_function.cfg
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/cpp_function.h
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/cpp_function/xml/combine.xslt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/cpp_function/xml/compound.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/cpp_function/xml/cpp__function_8h.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/cpp_function/xml/index.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/cpp_function/xml/index.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/cpp_function/xml/struct_class.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/cpp_function/xml/xml.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/cpp_function_lookup.cfg
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/cpp_function_lookup.h
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/cpp_function_lookup/xml/class_a.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/cpp_function_lookup/xml/combine.xslt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/cpp_function_lookup/xml/compound.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/cpp_function_lookup/xml/cpp__function__lookup_8h.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/cpp_function_lookup/xml/index.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/cpp_function_lookup/xml/index.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/cpp_function_lookup/xml/xml.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/cpp_inherited_members.cfg
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/cpp_inherited_members.h
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/cpp_inherited_members/xml/class_a.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/cpp_inherited_members/xml/class_b.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/cpp_inherited_members/xml/class_base.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/cpp_inherited_members/xml/combine.xslt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/cpp_inherited_members/xml/compound.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/cpp_inherited_members/xml/cpp__inherited__members_8h.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/cpp_inherited_members/xml/index.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/cpp_inherited_members/xml/index.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/cpp_inherited_members/xml/xml.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/cpp_trailing_return_type.cfg
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/cpp_trailing_return_type.h
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/cpp_trailing_return_type/xml/combine.xslt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/cpp_trailing_return_type/xml/compound.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/cpp_trailing_return_type/xml/cpp__trailing__return__type_8h.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/cpp_trailing_return_type/xml/index.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/cpp_trailing_return_type/xml/index.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/cpp_trailing_return_type/xml/xml.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/cpp_union.cfg
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/cpp_union.h
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/cpp_union/xml/combine.xslt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/cpp_union/xml/compound.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/cpp_union/xml/cpp__union_8h.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/cpp_union/xml/index.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/cpp_union/xml/index.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/cpp_union/xml/struct_class.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/cpp_union/xml/union_class_1_1_union.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/cpp_union/xml/union_union.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/cpp_union/xml/xml.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/decl_impl.c
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/decl_impl.cfg
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/decl_impl.h
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/decl_impl/xml/combine.xslt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/decl_impl/xml/compound.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/decl_impl/xml/decl__impl_8c.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/decl_impl/xml/decl__impl_8h.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/decl_impl/xml/index.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/decl_impl/xml/index.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/decl_impl/xml/namespacetestnamespace.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/decl_impl/xml/xml.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/define.cfg
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/define.h
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/define/xml/combine.xslt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/define/xml/compound.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/define/xml/define_8h.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/define/xml/index.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/define/xml/index.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/define/xml/xml.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/enum.cfg
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/enum.h
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/enum/xml/combine.xslt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/enum/xml/compound.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/enum/xml/enum_8h.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/enum/xml/index.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/enum/xml/index.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/enum/xml/namespacetestnamespace.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/enum/xml/xml.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/fixedwidthfont.cfg
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/fixedwidthfont.h
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/fixedwidthfont/xml/class_out.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/fixedwidthfont/xml/combine.xslt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/fixedwidthfont/xml/compound.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/fixedwidthfont/xml/fixedwidthfont_8h.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/fixedwidthfont/xml/index.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/fixedwidthfont/xml/index.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/fixedwidthfont/xml/xml.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/functionOverload.cfg
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/functionOverload.h
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/functionOverload/xml/class_my_other_type.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/functionOverload/xml/class_my_type.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/functionOverload/xml/combine.xslt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/functionOverload/xml/compound.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/functionOverload/xml/function_overload_8h.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/functionOverload/xml/index.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/functionOverload/xml/index.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/functionOverload/xml/namespacetest.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/functionOverload/xml/xml.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/group.cfg
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/group.h
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/group/xml/class_grouped_class_test.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/group/xml/class_grouped_class_test_1_1_private_class.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/group/xml/class_grouped_class_test_1_1_protected_class.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/group/xml/class_grouped_class_test_1_1_public_class.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/group/xml/class_grouped_class_test_1_1_undocumented_private_class.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/group/xml/class_grouped_class_test_1_1_undocumented_protected_class.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/group/xml/class_grouped_class_test_1_1_undocumented_public_class.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/group/xml/class_inner_group_class_test.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/group/xml/class_inner_group_class_test_1_1_private_class.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/group/xml/class_ungrouped_class_test.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/group/xml/class_ungrouped_class_test_1_1_private_class.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/group/xml/combine.xslt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/group/xml/compound.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/group/xml/group_8h.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/group/xml/group__innergroup.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/group/xml/group__mygroup.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/group/xml/index.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/group/xml/index.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/group/xml/xml.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/headerfile.cfg
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/headerfile.h
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/headings.cfg
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/headings.h
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/headings/xml/class_test.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/headings/xml/combine.xslt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/headings/xml/compound.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/headings/xml/headings_8h.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/headings/xml/index.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/headings/xml/index.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/headings/xml/xml.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/image.cfg
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/image.h
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/image/xml/class_image_class.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/image/xml/combine.xslt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/image/xml/compound.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/image/xml/imageExample.png
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/image/xml/image_8h.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/image/xml/index.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/image/xml/index.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/image/xml/xml.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/imageExample.png
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/inheritance.cfg
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/inheritance.h
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/inheritance/xml/class_base_a.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/inheritance/xml/class_base_b.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/inheritance/xml/class_child_a.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/inheritance/xml/class_child_b.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/inheritance/xml/class_main.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/inheritance/xml/combine.xslt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/inheritance/xml/compound.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/inheritance/xml/index.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/inheritance/xml/index.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/inheritance/xml/inheritance_8h.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/inheritance/xml/xml.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/inline.cfg
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/inline.h
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/inline/xml/class_test.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/inline/xml/combine.xslt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/inline/xml/compound.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/inline/xml/index.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/inline/xml/index.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/inline/xml/inline_8h.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/inline/xml/xml.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/interface.cfg
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/interface.h
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/interface/xml/class_interface_class.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/interface/xml/combine.xslt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/interface/xml/compound.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/interface/xml/index.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/interface/xml/index.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/interface/xml/interface_8h.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/interface/xml/xml.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/latexmath.cfg
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/latexmath.h
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/latexmath/xml/class_math_helper.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/latexmath/xml/combine.xslt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/latexmath/xml/compound.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/latexmath/xml/index.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/latexmath/xml/index.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/latexmath/xml/latexmath_8h.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/latexmath/xml/xml.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/links.cfg
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/links.h
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/links/xml/class_test.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/links/xml/combine.xslt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/links/xml/compound.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/links/xml/index.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/links/xml/index.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/links/xml/links_8h.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/links/xml/xml.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/lists.cfg
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/lists.h
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/lists/xml/class_nested_lists__1.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/lists/xml/class_nested_lists__2.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/lists/xml/class_nested_lists__3.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/lists/xml/class_nested_lists__4.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/lists/xml/class_nested_lists__5.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/lists/xml/class_simple_list__1.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/lists/xml/class_simple_list__2.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/lists/xml/class_simple_list__3.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/lists/xml/class_simple_list__4.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/lists/xml/class_simple_list__5.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/lists/xml/class_simple_list__6.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/lists/xml/combine.xslt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/lists/xml/compound.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/lists/xml/index.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/lists/xml/index.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/lists/xml/lists_8h.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/lists/xml/xml.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/membergroups.cfg
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/membergroups.h
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/membergroups/xml/class_grouped_members.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/membergroups/xml/combine.xslt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/membergroups/xml/compound.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/membergroups/xml/index.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/membergroups/xml/index.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/membergroups/xml/membergroups_8h.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/membergroups/xml/xml.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/members.cfg
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/members.h
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/members/xml/classtestnamespace_1_1_namespaced_class_test.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/members/xml/combine.xslt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/members/xml/compound.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/members/xml/index.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/members/xml/index.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/members/xml/members_8h.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/members/xml/namespacetestnamespace.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/members/xml/xml.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/multifile.cfg
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/multifile/one/Util.h
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/multifile/two/Util.h
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/multifilexml/xml/class_test_class.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/multifilexml/xml/combine.xslt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/multifilexml/xml/compound.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/multifilexml/xml/dir_16bd770a52678a3a9c778e21ddb56f43.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/multifilexml/xml/dir_675c4aa7cf38bfc2a60476f7b309bf97.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/multifilexml/xml/dir_fe2042b4b70411889b163b9101a1e7a4.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/multifilexml/xml/index.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/multifilexml/xml/index.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/multifilexml/xml/namespacetest.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/multifilexml/xml/one_2_util_8h.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/multifilexml/xml/structtest_1_1_test_struct.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/multifilexml/xml/two_2_util_8h.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/multifilexml/xml/xml.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/name.cfg
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/name.h
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/specific/name/xml/class_failing.xml
*** 236 LINES SKIPPED ***