diff options
author | Cheng-Lung Sung <clsung@FreeBSD.org> | 2007-02-26 07:24:17 +0000 |
---|---|---|
committer | Cheng-Lung Sung <clsung@FreeBSD.org> | 2007-02-26 07:24:17 +0000 |
commit | 641a669cdfa0d422b71860c8eaeaf5f887994131 (patch) | |
tree | 2872b9dd1551d5caef3d36b400b04af677b17f25 /devel/doxygen | |
parent | 2a818b8e1a22ff44c9f1e87359110ed560be3bc4 (diff) |
Notes
Diffstat (limited to 'devel/doxygen')
-rw-r--r-- | devel/doxygen/Makefile | 69 | ||||
-rw-r--r-- | devel/doxygen/distinfo | 6 | ||||
-rw-r--r-- | devel/doxygen/files/patch-configure | 27 | ||||
-rw-r--r-- | devel/doxygen/pkg-descr | 9 | ||||
-rw-r--r-- | devel/doxygen/pkg-plist | 576 |
5 files changed, 70 insertions, 617 deletions
diff --git a/devel/doxygen/Makefile b/devel/doxygen/Makefile index 9b2f41015fde..6511e642d00e 100644 --- a/devel/doxygen/Makefile +++ b/devel/doxygen/Makefile @@ -6,23 +6,27 @@ # PORTNAME= doxygen -PORTVERSION= 1.4.7 +PORTVERSION= 1.5.1 CATEGORIES= devel MASTER_SITES= ftp://ftp.stack.nl/pub/users/dimitri/ EXTRACT_SUFX= .src.tar.gz MAINTAINER= mwisnicki+freebsd@gmail.com -COMMENT= A documentation system for C and C++ +COMMENT= A documentation system for C, C++ and other languages BUILD_DEPENDS= tmake:${PORTSDIR}/devel/tmake LIB_DEPENDS= png:${PORTSDIR}/graphics/png ALL_TARGET= all -EXTRACT_AFTER_ARGS=|${TAR} -xpf - --exclude '*/libmd5' \ - --exclude '*/libpng' --exclude '*/tmake' +EXTRACT_AFTER_ARGS=|${TAR} -xpf - \ + --exclude '*/libmd5' \ + --exclude '*/libpng' \ + --exclude '*/tmake' \ + --exclude '*/.gdb_history' # XXX: remove this when no longer needed CONFIGURE_ENV+= CXX="${CXX}" + .if !defined(NOPORTDOCS) ALL_TARGET+= docs BUILD_DEPENDS+= python:${PORTSDIR}/lang/python # XXX: Replace with USE_PYTHON_BUILD @@ -30,14 +34,10 @@ BUILD_DEPENDS+= dot:${PORTSDIR}/graphics/graphviz .if !defined(WITHOUT_LATEX) ALL_TARGET+= pdf -PLIST_SUB+= HAVE_LATEX="" -GSPORT?= print/ghostscript-gnu BUILD_DEPENDS+= dvips:${PORTSDIR}/print/dvipsk-tetex \ - latex:${PORTSDIR}/print/teTeX \ - gs:${PORTSDIR}/${GHOSTSCRIPT_PORT} + latex:${PORTSDIR}/print/teTeX +USE_GHOSTSCRIPT_BUILD= yes MAKE_ARGS+= HAVE_LATEX=yes -.else # !defined(WITHOUT_LATEX) -PLIST_SUB+= HAVE_LATEX="@comment " .endif # !defined(WITHOUT_LATEX) .endif # !defined(NOPORTDOCS) @@ -53,9 +53,6 @@ CFLAGS+= ${PTHREAD_CFLAGS} QTDIR?= ${QT_PREFIX} CONFIGURE_ENV+= QTDIR="${QTDIR}" CONFIGURE_ARGS+=--with-doxywizard -PLIST_SUB+= HAVE_DOXYWIZARD="" -.else # !WITHOUT_DOXYWIZARD -PLIST_SUB+= HAVE_DOXYWIZARD="@comment " .endif # !WITHOUT_DOXYWIZARD USE_PERL5= yes @@ -69,6 +66,16 @@ CONFIGURE_ARGS+=--prefix ${PREFIX} --perl ${PERL} --make ${GMAKE} \ CONFIGURE_ARGS+= --enable-langs no .endif +PLIST= ${WRKDIR}/plist +TMPDOCDEST= ${WRKDIR}/tmpdocdest + +PLIST_FILES= bin/doxygen \ + bin/doxytag + +.ifndef WITHOUT_DOXYWIZARD +PLIST_FILES+= bin/doxywizard +.endif + post-configure: @${REINPLACE_CMD} -e 's|TMAKE *=.*|TMAKE=${LOCALBASE}/bin/tmake|' \ -e 's|TMAKEPATH *=.*|TMAKEPATH=${LOCALBASE}/share/tmake/freebsd-g++|' \ @@ -79,29 +86,43 @@ post-build: cd ${BUILD_WRKSRC}/examples; \ ${SETENV} ${MAKE_ENV} ${GMAKE} ${MAKE_FLAGS} Makefile ${MAKE_ARGS} all -do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/bin/doxygen ${PREFIX}/bin - ${INSTALL_PROGRAM} ${WRKSRC}/bin/doxytag ${PREFIX}/bin -.ifndef WITHOUT_DOXYWIZARD - ${INSTALL_PROGRAM} ${WRKSRC}/bin/doxywizard ${PREFIX}/bin -.endif +pre-install: + ${RM} -rf ${TMPDOCDEST} ${PLIST} + ${TOUCH} ${PLIST} .ifndef NOPORTDOCS - ${MKDIR} ${PREFIX}/share/doc/doxygen/html + ${MKDIR} ${TMPDOCDEST}/doxygen ${RM} -f ${WRKSRC}/examples/diagrams/html/*.md5 \ ${WRKSRC}/examples/diagrams/html/*.map ${TAR} -C ${WRKSRC} --exclude '*/_*' -cf - html \ - | ${TAR} -C ${PREFIX}/share/doc/doxygen --unlink -xf - + | ${TAR} -C ${TMPDOCDEST}/doxygen --unlink -xf - ${TAR} -C ${WRKSRC} --exclude '*/Makefile*' --exclude '*.dot' \ -cf - examples \ - | ${TAR} -C ${PREFIX}/share/doc/doxygen --unlink -xf - + | ${TAR} -C ${TMPDOCDEST}/doxygen --unlink -xf - .ifndef WITHOUT_LATEX ${INSTALL_DATA} ${WRKSRC}/latex/doxygen_manual.dvi \ ${WRKSRC}/latex/doxygen_manual.pdf \ ${WRKSRC}/latex/doxygen_manual.ps \ ${WRKSRC}/latex/archoverview.eps \ ${WRKSRC}/latex/doxygen_logo.eps \ - ${PREFIX}/share/doc/doxygen -.endif # WITHOUT_LATEXT + ${TMPDOCDEST}/doxygen +.endif # WITHOUT_LATEX + @cd ${TMPDOCDEST} \ + && ${FIND} -s * -type f -o -type l \ + | ${SED} -e 's|^|share/doc/|'>> ${PLIST} \ + && ${FIND} -d * -type d \ + | ${SED} -e 's|^|@dirrm share/doc/|' >> ${PLIST} +.endif # ! NOPORTDOCS + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/bin/doxygen ${PREFIX}/bin + ${INSTALL_PROGRAM} ${WRKSRC}/bin/doxytag ${PREFIX}/bin +.ifndef WITHOUT_DOXYWIZARD + ${INSTALL_PROGRAM} ${WRKSRC}/bin/doxywizard ${PREFIX}/bin +.endif +.ifndef NOPORTDOCS + ${MKDIR} ${PREFIX}/share/doc/doxygen + ${TAR} -C ${TMPDOCDEST} -cf - doxygen \ + | ${TAR} -C ${PREFIX}/share/doc --unlink -xf - .endif # ! NOPORTDOCS .include <bsd.port.mk> diff --git a/devel/doxygen/distinfo b/devel/doxygen/distinfo index 1e7ff26e4421..2b5f89fff52c 100644 --- a/devel/doxygen/distinfo +++ b/devel/doxygen/distinfo @@ -1,3 +1,3 @@ -MD5 (doxygen-1.4.7.src.tar.gz) = 11db63a72bd3b510fd2fa7ae48086979 -SHA256 (doxygen-1.4.7.src.tar.gz) = 5db0e9ddf6fe74273096419d53d3835e9f1822581f20f5f20c057500a5e512ed -SIZE (doxygen-1.4.7.src.tar.gz) = 2928354 +MD5 (doxygen-1.5.1.src.tar.gz) = 43b8e58e5ca70cb8f1285c35a171014e +SHA256 (doxygen-1.5.1.src.tar.gz) = c00233e17f64b9da8d05b7bc2b077abebc03edbfa9fbc063359ef17ec6e11578 +SIZE (doxygen-1.5.1.src.tar.gz) = 2888159 diff --git a/devel/doxygen/files/patch-configure b/devel/doxygen/files/patch-configure index 6a721452d144..8ba6ca7fb6a0 100644 --- a/devel/doxygen/files/patch-configure +++ b/devel/doxygen/files/patch-configure @@ -1,26 +1,33 @@ ---- configure Sat Jun 10 15:25:54 2006 -+++ configure Sun Jun 11 20:21:07 2006 -@@ -522,5 +522,5 @@ +--- configure.orig Sat Oct 28 18:20:11 2006 ++++ configure Sun Feb 25 15:23:52 2007 +@@ -525,7 +525,7 @@ + EOF fi --f_inmakefiles="Makefile.in qtools/Makefile.in src/Makefile.in examples/Makefile.in doc/Makefile.in addon/doxywizard/Makefile.in addon/doxmlparser/src/Makefile.in addon/doxmlparser/test/Makefile.in addon/doxmlparser/examples/metrics/Makefile.in libpng/Makefile.in libmd5/Makefile.in" -+f_inmakefiles="Makefile.in qtools/Makefile.in src/Makefile.in examples/Makefile.in doc/Makefile.in addon/doxywizard/Makefile.in addon/doxmlparser/src/Makefile.in addon/doxmlparser/test/Makefile.in addon/doxmlparser/examples/metrics/Makefile.in" +-f_inmakefiles="Makefile.in qtools/Makefile.in src/Makefile.in examples/Makefile.in doc/Makefile.in addon/doxywizard/Makefile.in addon/doxmlparser/src/Makefile.in addon/doxmlparser/test/Makefile.in addon/doxmlparser/examples/metrics/Makefile.in libpng/Makefile.in libmd5/Makefile.in addon/doxyapp/Makefile.in" ++f_inmakefiles="Makefile.in qtools/Makefile.in src/Makefile.in examples/Makefile.in doc/Makefile.in addon/doxywizard/Makefile.in addon/doxmlparser/src/Makefile.in addon/doxmlparser/test/Makefile.in addon/doxmlparser/examples/metrics/Makefile.in addon/doxyapp/Makefile.in" for i in $f_inmakefiles ; do -@@ -538,7 +538,5 @@ + SRC=$i +@@ -541,10 +541,8 @@ + if test $i = Makefile.in; then echo "" >> $DST echo "all: src/version.cpp " >> $DST - echo " \$(MAKE) -C qtools" >> $DST -+ echo " \$(MAKE) -j2 -C qtools" >> $DST - echo " \$(MAKE) -C libpng" >> $DST - echo " \$(MAKE) -C libmd5" >> $DST - echo " \$(MAKE) -C src" >> $DST ++ echo " \$(MAKE) -j2 -C qtools" >> $DST + echo " \$(MAKE) -j2 -C src" >> $DST if test $f_wizard = YES; then -@@ -556,5 +553,5 @@ + echo " \$(MAKE) -C addon/doxywizard" >> $DST + fi +@@ -562,7 +560,7 @@ + echo " Created $DST from $SRC..." done --f_inprofiles="qtools/qtools.pro.in src/libdoxygen.pro.in src/libdoxycfg.pro.in src/doxygen.pro.in src/doxytag.pro.in addon/doxywizard/doxywizard.pro.in addon/doxmlparser/src/doxmlparser.pro.in addon/doxmlparser/test/xmlparse.pro.in addon/doxmlparser/examples/metrics/metrics.pro.in libpng/libpng.pro.in libmd5/libmd5.pro.in" -+f_inprofiles="qtools/qtools.pro.in src/libdoxygen.pro.in src/libdoxycfg.pro.in src/doxygen.pro.in src/doxytag.pro.in addon/doxywizard/doxywizard.pro.in addon/doxmlparser/src/doxmlparser.pro.in addon/doxmlparser/test/xmlparse.pro.in addon/doxmlparser/examples/metrics/metrics.pro.in" +-f_inprofiles="qtools/qtools.pro.in src/libdoxygen.pro.in src/libdoxycfg.pro.in src/doxygen.pro.in src/doxytag.pro.in addon/doxywizard/doxywizard.pro.in addon/doxmlparser/src/doxmlparser.pro.in addon/doxmlparser/test/xmlparse.pro.in addon/doxmlparser/examples/metrics/metrics.pro.in libpng/libpng.pro.in libmd5/libmd5.pro.in addon/doxyapp/doxyapp.pro.in" ++f_inprofiles="qtools/qtools.pro.in src/libdoxygen.pro.in src/libdoxycfg.pro.in src/doxygen.pro.in src/doxytag.pro.in addon/doxywizard/doxywizard.pro.in addon/doxmlparser/src/doxmlparser.pro.in addon/doxmlparser/test/xmlparse.pro.in addon/doxmlparser/examples/metrics/metrics.pro.in addon/doxyapp/doxyapp.pro.in" for i in $f_inprofiles ; do + SRC=$i diff --git a/devel/doxygen/pkg-descr b/devel/doxygen/pkg-descr index 64e1689019e8..6db98f4ef984 100644 --- a/devel/doxygen/pkg-descr +++ b/devel/doxygen/pkg-descr @@ -1,6 +1,7 @@ -Doxygen is a documentation system for C and C++, Java, IDL and to some extent C# -and PHP. It can generate an on-line class browser (in HTML) and/or an off-line -reference manual (in LaTeX/ps/pdf) from a set of documented source files. The -documentation is extracted directly from the sources. +Doxygen is a documentation system for C++, C, Java, Objective-C, Python, IDL +(Corba and Microsoft flavors) and to some extent PHP, C#, and D. It can +generate an on-line class browser (in HTML) and/or an off-line reference +manual (in LaTeX/ps/pdf) from a set of documented source files. +The documentation is extracted directly from the sources. WWW: http://www.doxygen.org/ diff --git a/devel/doxygen/pkg-plist b/devel/doxygen/pkg-plist deleted file mode 100644 index 314858391cef..000000000000 --- a/devel/doxygen/pkg-plist +++ /dev/null @@ -1,576 +0,0 @@ -bin/doxygen -bin/doxytag -%%HAVE_DOXYWIZARD%%bin/doxywizard -%%PORTDOCS%%%%HAVE_LATEX%%%%DOCSDIR%%/archoverview.eps -%%PORTDOCS%%%%HAVE_LATEX%%%%DOCSDIR%%/doxygen_logo.eps -%%PORTDOCS%%%%HAVE_LATEX%%%%DOCSDIR%%/doxygen_manual.dvi -%%PORTDOCS%%%%HAVE_LATEX%%%%DOCSDIR%%/doxygen_manual.pdf -%%PORTDOCS%%%%HAVE_LATEX%%%%DOCSDIR%%/doxygen_manual.ps -%%PORTDOCS%%%%DOCSDIR%%/examples/afterdoc.cfg -%%PORTDOCS%%%%DOCSDIR%%/examples/afterdoc.h -%%PORTDOCS%%%%DOCSDIR%%/examples/afterdoc/html/afterdoc_8h-source.html -%%PORTDOCS%%%%DOCSDIR%%/examples/afterdoc/html/annotated.html -%%PORTDOCS%%%%DOCSDIR%%/examples/afterdoc/html/class_test-members.html -%%PORTDOCS%%%%DOCSDIR%%/examples/afterdoc/html/class_test.html -%%PORTDOCS%%%%DOCSDIR%%/examples/afterdoc/html/doxygen.css -%%PORTDOCS%%%%DOCSDIR%%/examples/afterdoc/html/doxygen.png -%%PORTDOCS%%%%DOCSDIR%%/examples/afterdoc/html/files.html -%%PORTDOCS%%%%DOCSDIR%%/examples/afterdoc/html/functions.html -%%PORTDOCS%%%%DOCSDIR%%/examples/afterdoc/html/functions_enum.html -%%PORTDOCS%%%%DOCSDIR%%/examples/afterdoc/html/functions_eval.html -%%PORTDOCS%%%%DOCSDIR%%/examples/afterdoc/html/functions_func.html -%%PORTDOCS%%%%DOCSDIR%%/examples/afterdoc/html/functions_vars.html -%%PORTDOCS%%%%DOCSDIR%%/examples/afterdoc/html/index.html -%%PORTDOCS%%%%DOCSDIR%%/examples/afterdoc/html/tab_b.gif -%%PORTDOCS%%%%DOCSDIR%%/examples/afterdoc/html/tab_l.gif -%%PORTDOCS%%%%DOCSDIR%%/examples/afterdoc/html/tab_r.gif -%%PORTDOCS%%%%DOCSDIR%%/examples/afterdoc/html/tabs.css -%%PORTDOCS%%%%DOCSDIR%%/examples/author.cfg -%%PORTDOCS%%%%DOCSDIR%%/examples/author.cpp -%%PORTDOCS%%%%DOCSDIR%%/examples/author/html/annotated.html -%%PORTDOCS%%%%DOCSDIR%%/examples/author/html/bug.html -%%PORTDOCS%%%%DOCSDIR%%/examples/author/html/class_windows_n_t.html -%%PORTDOCS%%%%DOCSDIR%%/examples/author/html/doxygen.css -%%PORTDOCS%%%%DOCSDIR%%/examples/author/html/doxygen.png -%%PORTDOCS%%%%DOCSDIR%%/examples/author/html/index.html -%%PORTDOCS%%%%DOCSDIR%%/examples/author/html/pages.html -%%PORTDOCS%%%%DOCSDIR%%/examples/author/html/tab_b.gif -%%PORTDOCS%%%%DOCSDIR%%/examples/author/html/tab_l.gif -%%PORTDOCS%%%%DOCSDIR%%/examples/author/html/tab_r.gif -%%PORTDOCS%%%%DOCSDIR%%/examples/author/html/tabs.css -%%PORTDOCS%%%%DOCSDIR%%/examples/autolink.cfg -%%PORTDOCS%%%%DOCSDIR%%/examples/autolink.cpp -%%PORTDOCS%%%%DOCSDIR%%/examples/autolink/html/annotated.html -%%PORTDOCS%%%%DOCSDIR%%/examples/autolink/html/autolink_8cpp.html -%%PORTDOCS%%%%DOCSDIR%%/examples/autolink/html/class_test-members.html -%%PORTDOCS%%%%DOCSDIR%%/examples/autolink/html/class_test.html -%%PORTDOCS%%%%DOCSDIR%%/examples/autolink/html/doxygen.css -%%PORTDOCS%%%%DOCSDIR%%/examples/autolink/html/doxygen.png -%%PORTDOCS%%%%DOCSDIR%%/examples/autolink/html/files.html -%%PORTDOCS%%%%DOCSDIR%%/examples/autolink/html/functions.html -%%PORTDOCS%%%%DOCSDIR%%/examples/autolink/html/functions_enum.html -%%PORTDOCS%%%%DOCSDIR%%/examples/autolink/html/functions_eval.html -%%PORTDOCS%%%%DOCSDIR%%/examples/autolink/html/functions_func.html -%%PORTDOCS%%%%DOCSDIR%%/examples/autolink/html/functions_vars.html -%%PORTDOCS%%%%DOCSDIR%%/examples/autolink/html/globals.html -%%PORTDOCS%%%%DOCSDIR%%/examples/autolink/html/globals_defs.html -%%PORTDOCS%%%%DOCSDIR%%/examples/autolink/html/globals_enum.html -%%PORTDOCS%%%%DOCSDIR%%/examples/autolink/html/globals_eval.html -%%PORTDOCS%%%%DOCSDIR%%/examples/autolink/html/globals_type.html -%%PORTDOCS%%%%DOCSDIR%%/examples/autolink/html/globals_vars.html -%%PORTDOCS%%%%DOCSDIR%%/examples/autolink/html/index.html -%%PORTDOCS%%%%DOCSDIR%%/examples/autolink/html/tab_b.gif -%%PORTDOCS%%%%DOCSDIR%%/examples/autolink/html/tab_l.gif -%%PORTDOCS%%%%DOCSDIR%%/examples/autolink/html/tab_r.gif -%%PORTDOCS%%%%DOCSDIR%%/examples/autolink/html/tabs.css -%%PORTDOCS%%%%DOCSDIR%%/examples/class.cfg -%%PORTDOCS%%%%DOCSDIR%%/examples/class.h -%%PORTDOCS%%%%DOCSDIR%%/examples/class/html/annotated.html -%%PORTDOCS%%%%DOCSDIR%%/examples/class/html/class_8h-source.html -%%PORTDOCS%%%%DOCSDIR%%/examples/class/html/class_test.html -%%PORTDOCS%%%%DOCSDIR%%/examples/class/html/doxygen.css -%%PORTDOCS%%%%DOCSDIR%%/examples/class/html/doxygen.png -%%PORTDOCS%%%%DOCSDIR%%/examples/class/html/files.html -%%PORTDOCS%%%%DOCSDIR%%/examples/class/html/index.html -%%PORTDOCS%%%%DOCSDIR%%/examples/class/html/tab_b.gif -%%PORTDOCS%%%%DOCSDIR%%/examples/class/html/tab_l.gif -%%PORTDOCS%%%%DOCSDIR%%/examples/class/html/tab_r.gif -%%PORTDOCS%%%%DOCSDIR%%/examples/class/html/tabs.css -%%PORTDOCS%%%%DOCSDIR%%/examples/define.cfg -%%PORTDOCS%%%%DOCSDIR%%/examples/define.h -%%PORTDOCS%%%%DOCSDIR%%/examples/define/html/define_8h-source.html -%%PORTDOCS%%%%DOCSDIR%%/examples/define/html/define_8h.html -%%PORTDOCS%%%%DOCSDIR%%/examples/define/html/doxygen.css -%%PORTDOCS%%%%DOCSDIR%%/examples/define/html/doxygen.png -%%PORTDOCS%%%%DOCSDIR%%/examples/define/html/files.html -%%PORTDOCS%%%%DOCSDIR%%/examples/define/html/globals.html -%%PORTDOCS%%%%DOCSDIR%%/examples/define/html/globals_defs.html -%%PORTDOCS%%%%DOCSDIR%%/examples/define/html/index.html -%%PORTDOCS%%%%DOCSDIR%%/examples/define/html/tab_b.gif -%%PORTDOCS%%%%DOCSDIR%%/examples/define/html/tab_l.gif -%%PORTDOCS%%%%DOCSDIR%%/examples/define/html/tab_r.gif -%%PORTDOCS%%%%DOCSDIR%%/examples/define/html/tabs.css -%%PORTDOCS%%%%DOCSDIR%%/examples/diagrams.cfg -%%PORTDOCS%%%%DOCSDIR%%/examples/diagrams/html/annotated.html -%%PORTDOCS%%%%DOCSDIR%%/examples/diagrams/html/class_a-members.html -%%PORTDOCS%%%%DOCSDIR%%/examples/diagrams/html/class_a.html -%%PORTDOCS%%%%DOCSDIR%%/examples/diagrams/html/class_a__coll__graph.png -%%PORTDOCS%%%%DOCSDIR%%/examples/diagrams/html/class_a__inherit__graph.png -%%PORTDOCS%%%%DOCSDIR%%/examples/diagrams/html/class_b-members.html -%%PORTDOCS%%%%DOCSDIR%%/examples/diagrams/html/class_b.html -%%PORTDOCS%%%%DOCSDIR%%/examples/diagrams/html/class_b__coll__graph.png -%%PORTDOCS%%%%DOCSDIR%%/examples/diagrams/html/class_b__inherit__graph.png -%%PORTDOCS%%%%DOCSDIR%%/examples/diagrams/html/class_c-members.html -%%PORTDOCS%%%%DOCSDIR%%/examples/diagrams/html/class_c.html -%%PORTDOCS%%%%DOCSDIR%%/examples/diagrams/html/class_c__coll__graph.png -%%PORTDOCS%%%%DOCSDIR%%/examples/diagrams/html/class_c__inherit__graph.png -%%PORTDOCS%%%%DOCSDIR%%/examples/diagrams/html/class_d-members.html -%%PORTDOCS%%%%DOCSDIR%%/examples/diagrams/html/class_d.html -%%PORTDOCS%%%%DOCSDIR%%/examples/diagrams/html/class_d__coll__graph.png -%%PORTDOCS%%%%DOCSDIR%%/examples/diagrams/html/class_d__inherit__graph.png -%%PORTDOCS%%%%DOCSDIR%%/examples/diagrams/html/class_e-members.html -%%PORTDOCS%%%%DOCSDIR%%/examples/diagrams/html/class_e.html -%%PORTDOCS%%%%DOCSDIR%%/examples/diagrams/html/class_e__coll__graph.png -%%PORTDOCS%%%%DOCSDIR%%/examples/diagrams/html/class_e__inherit__graph.png -%%PORTDOCS%%%%DOCSDIR%%/examples/diagrams/html/diagrams__a_8h-source.html -%%PORTDOCS%%%%DOCSDIR%%/examples/diagrams/html/diagrams__a_8h.html -%%PORTDOCS%%%%DOCSDIR%%/examples/diagrams/html/diagrams__a_8h__dep__incl.png -%%PORTDOCS%%%%DOCSDIR%%/examples/diagrams/html/diagrams__b_8h-source.html -%%PORTDOCS%%%%DOCSDIR%%/examples/diagrams/html/diagrams__b_8h.html -%%PORTDOCS%%%%DOCSDIR%%/examples/diagrams/html/diagrams__b_8h__dep__incl.png -%%PORTDOCS%%%%DOCSDIR%%/examples/diagrams/html/diagrams__c_8h-source.html -%%PORTDOCS%%%%DOCSDIR%%/examples/diagrams/html/diagrams__c_8h.html -%%PORTDOCS%%%%DOCSDIR%%/examples/diagrams/html/diagrams__c_8h__dep__incl.png -%%PORTDOCS%%%%DOCSDIR%%/examples/diagrams/html/diagrams__c_8h__incl.png -%%PORTDOCS%%%%DOCSDIR%%/examples/diagrams/html/diagrams__d_8h-source.html -%%PORTDOCS%%%%DOCSDIR%%/examples/diagrams/html/diagrams__d_8h.html -%%PORTDOCS%%%%DOCSDIR%%/examples/diagrams/html/diagrams__d_8h__dep__incl.png -%%PORTDOCS%%%%DOCSDIR%%/examples/diagrams/html/diagrams__d_8h__incl.png -%%PORTDOCS%%%%DOCSDIR%%/examples/diagrams/html/diagrams__e_8h-source.html -%%PORTDOCS%%%%DOCSDIR%%/examples/diagrams/html/diagrams__e_8h.html -%%PORTDOCS%%%%DOCSDIR%%/examples/diagrams/html/diagrams__e_8h__incl.png -%%PORTDOCS%%%%DOCSDIR%%/examples/diagrams/html/doxygen.css -%%PORTDOCS%%%%DOCSDIR%%/examples/diagrams/html/doxygen.png -%%PORTDOCS%%%%DOCSDIR%%/examples/diagrams/html/files.html -%%PORTDOCS%%%%DOCSDIR%%/examples/diagrams/html/functions.html -%%PORTDOCS%%%%DOCSDIR%%/examples/diagrams/html/functions_vars.html -%%PORTDOCS%%%%DOCSDIR%%/examples/diagrams/html/graph_legend.html -%%PORTDOCS%%%%DOCSDIR%%/examples/diagrams/html/graph_legend.png -%%PORTDOCS%%%%DOCSDIR%%/examples/diagrams/html/hierarchy.html -%%PORTDOCS%%%%DOCSDIR%%/examples/diagrams/html/index.html -%%PORTDOCS%%%%DOCSDIR%%/examples/diagrams/html/inherit__graph__0.png -%%PORTDOCS%%%%DOCSDIR%%/examples/diagrams/html/inherits.html -%%PORTDOCS%%%%DOCSDIR%%/examples/diagrams/html/tab_b.gif -%%PORTDOCS%%%%DOCSDIR%%/examples/diagrams/html/tab_l.gif -%%PORTDOCS%%%%DOCSDIR%%/examples/diagrams/html/tab_r.gif -%%PORTDOCS%%%%DOCSDIR%%/examples/diagrams/html/tabs.css -%%PORTDOCS%%%%DOCSDIR%%/examples/diagrams_a.h -%%PORTDOCS%%%%DOCSDIR%%/examples/diagrams_b.h -%%PORTDOCS%%%%DOCSDIR%%/examples/diagrams_c.h -%%PORTDOCS%%%%DOCSDIR%%/examples/diagrams_d.h -%%PORTDOCS%%%%DOCSDIR%%/examples/diagrams_e.h -%%PORTDOCS%%%%DOCSDIR%%/examples/docstring.cfg -%%PORTDOCS%%%%DOCSDIR%%/examples/docstring.py -%%PORTDOCS%%%%DOCSDIR%%/examples/docstring/html/annotated.html -%%PORTDOCS%%%%DOCSDIR%%/examples/docstring/html/classdocstring_1_1PyClass-members.html -%%PORTDOCS%%%%DOCSDIR%%/examples/docstring/html/classdocstring_1_1PyClass.html -%%PORTDOCS%%%%DOCSDIR%%/examples/docstring/html/doxygen.css -%%PORTDOCS%%%%DOCSDIR%%/examples/docstring/html/doxygen.png -%%PORTDOCS%%%%DOCSDIR%%/examples/docstring/html/functions.html -%%PORTDOCS%%%%DOCSDIR%%/examples/docstring/html/functions_func.html -%%PORTDOCS%%%%DOCSDIR%%/examples/docstring/html/index.html -%%PORTDOCS%%%%DOCSDIR%%/examples/docstring/html/tab_b.gif -%%PORTDOCS%%%%DOCSDIR%%/examples/docstring/html/tab_l.gif -%%PORTDOCS%%%%DOCSDIR%%/examples/docstring/html/tab_r.gif -%%PORTDOCS%%%%DOCSDIR%%/examples/docstring/html/tabs.css -%%PORTDOCS%%%%DOCSDIR%%/examples/enum.cfg -%%PORTDOCS%%%%DOCSDIR%%/examples/enum.h -%%PORTDOCS%%%%DOCSDIR%%/examples/enum/html/annotated.html -%%PORTDOCS%%%%DOCSDIR%%/examples/enum/html/class_test-members.html -%%PORTDOCS%%%%DOCSDIR%%/examples/enum/html/class_test.html -%%PORTDOCS%%%%DOCSDIR%%/examples/enum/html/doxygen.css -%%PORTDOCS%%%%DOCSDIR%%/examples/enum/html/doxygen.png -%%PORTDOCS%%%%DOCSDIR%%/examples/enum/html/enum_8h-source.html -%%PORTDOCS%%%%DOCSDIR%%/examples/enum/html/files.html -%%PORTDOCS%%%%DOCSDIR%%/examples/enum/html/functions.html -%%PORTDOCS%%%%DOCSDIR%%/examples/enum/html/functions_enum.html -%%PORTDOCS%%%%DOCSDIR%%/examples/enum/html/functions_eval.html -%%PORTDOCS%%%%DOCSDIR%%/examples/enum/html/index.html -%%PORTDOCS%%%%DOCSDIR%%/examples/enum/html/tab_b.gif -%%PORTDOCS%%%%DOCSDIR%%/examples/enum/html/tab_l.gif -%%PORTDOCS%%%%DOCSDIR%%/examples/enum/html/tab_r.gif -%%PORTDOCS%%%%DOCSDIR%%/examples/enum/html/tabs.css -%%PORTDOCS%%%%DOCSDIR%%/examples/example.cfg -%%PORTDOCS%%%%DOCSDIR%%/examples/example.cpp -%%PORTDOCS%%%%DOCSDIR%%/examples/example.tag -%%PORTDOCS%%%%DOCSDIR%%/examples/example/html/annotated.html -%%PORTDOCS%%%%DOCSDIR%%/examples/example/html/class_test-members.html -%%PORTDOCS%%%%DOCSDIR%%/examples/example/html/class_test.html -%%PORTDOCS%%%%DOCSDIR%%/examples/example/html/doxygen.css -%%PORTDOCS%%%%DOCSDIR%%/examples/example/html/doxygen.png -%%PORTDOCS%%%%DOCSDIR%%/examples/example/html/example__test_8cpp-example.html -%%PORTDOCS%%%%DOCSDIR%%/examples/example/html/examples.html -%%PORTDOCS%%%%DOCSDIR%%/examples/example/html/functions.html -%%PORTDOCS%%%%DOCSDIR%%/examples/example/html/functions_func.html -%%PORTDOCS%%%%DOCSDIR%%/examples/example/html/index.html -%%PORTDOCS%%%%DOCSDIR%%/examples/example/html/tab_b.gif -%%PORTDOCS%%%%DOCSDIR%%/examples/example/html/tab_l.gif -%%PORTDOCS%%%%DOCSDIR%%/examples/example/html/tab_r.gif -%%PORTDOCS%%%%DOCSDIR%%/examples/example/html/tabs.css -%%PORTDOCS%%%%DOCSDIR%%/examples/example_test.cpp -%%PORTDOCS%%%%DOCSDIR%%/examples/file.cfg -%%PORTDOCS%%%%DOCSDIR%%/examples/file.h -%%PORTDOCS%%%%DOCSDIR%%/examples/file/html/doxygen.css -%%PORTDOCS%%%%DOCSDIR%%/examples/file/html/doxygen.png -%%PORTDOCS%%%%DOCSDIR%%/examples/file/html/file_8h-source.html -%%PORTDOCS%%%%DOCSDIR%%/examples/file/html/file_8h.html -%%PORTDOCS%%%%DOCSDIR%%/examples/file/html/files.html -%%PORTDOCS%%%%DOCSDIR%%/examples/file/html/globals.html -%%PORTDOCS%%%%DOCSDIR%%/examples/file/html/globals_vars.html -%%PORTDOCS%%%%DOCSDIR%%/examples/file/html/index.html -%%PORTDOCS%%%%DOCSDIR%%/examples/file/html/tab_b.gif -%%PORTDOCS%%%%DOCSDIR%%/examples/file/html/tab_l.gif -%%PORTDOCS%%%%DOCSDIR%%/examples/file/html/tab_r.gif -%%PORTDOCS%%%%DOCSDIR%%/examples/file/html/tabs.css -%%PORTDOCS%%%%DOCSDIR%%/examples/func.cfg -%%PORTDOCS%%%%DOCSDIR%%/examples/func.h -%%PORTDOCS%%%%DOCSDIR%%/examples/func/html/annotated.html -%%PORTDOCS%%%%DOCSDIR%%/examples/func/html/class_test-members.html -%%PORTDOCS%%%%DOCSDIR%%/examples/func/html/class_test.html -%%PORTDOCS%%%%DOCSDIR%%/examples/func/html/doxygen.css -%%PORTDOCS%%%%DOCSDIR%%/examples/func/html/doxygen.png -%%PORTDOCS%%%%DOCSDIR%%/examples/func/html/files.html -%%PORTDOCS%%%%DOCSDIR%%/examples/func/html/func_8h-source.html -%%PORTDOCS%%%%DOCSDIR%%/examples/func/html/functions.html -%%PORTDOCS%%%%DOCSDIR%%/examples/func/html/functions_func.html -%%PORTDOCS%%%%DOCSDIR%%/examples/func/html/index.html -%%PORTDOCS%%%%DOCSDIR%%/examples/func/html/tab_b.gif -%%PORTDOCS%%%%DOCSDIR%%/examples/func/html/tab_l.gif -%%PORTDOCS%%%%DOCSDIR%%/examples/func/html/tab_r.gif -%%PORTDOCS%%%%DOCSDIR%%/examples/func/html/tabs.css -%%PORTDOCS%%%%DOCSDIR%%/examples/group.cfg -%%PORTDOCS%%%%DOCSDIR%%/examples/group.cpp -%%PORTDOCS%%%%DOCSDIR%%/examples/group/html/annotated.html -%%PORTDOCS%%%%DOCSDIR%%/examples/group/html/class_c1.html -%%PORTDOCS%%%%DOCSDIR%%/examples/group/html/class_c2.html -%%PORTDOCS%%%%DOCSDIR%%/examples/group/html/class_c3.html -%%PORTDOCS%%%%DOCSDIR%%/examples/group/html/class_c4.html -%%PORTDOCS%%%%DOCSDIR%%/examples/group/html/class_c5.html -%%PORTDOCS%%%%DOCSDIR%%/examples/group/html/doxygen.css -%%PORTDOCS%%%%DOCSDIR%%/examples/group/html/doxygen.png -%%PORTDOCS%%%%DOCSDIR%%/examples/group/html/files.html -%%PORTDOCS%%%%DOCSDIR%%/examples/group/html/globals.html -%%PORTDOCS%%%%DOCSDIR%%/examples/group/html/globals_func.html -%%PORTDOCS%%%%DOCSDIR%%/examples/group/html/group_8cpp.html -%%PORTDOCS%%%%DOCSDIR%%/examples/group/html/group__group1.html -%%PORTDOCS%%%%DOCSDIR%%/examples/group/html/group__group2.html -%%PORTDOCS%%%%DOCSDIR%%/examples/group/html/group__group3.html -%%PORTDOCS%%%%DOCSDIR%%/examples/group/html/group__group4.html -%%PORTDOCS%%%%DOCSDIR%%/examples/group/html/group__group5.html -%%PORTDOCS%%%%DOCSDIR%%/examples/group/html/index.html -%%PORTDOCS%%%%DOCSDIR%%/examples/group/html/modules.html -%%PORTDOCS%%%%DOCSDIR%%/examples/group/html/namespace_n1.html -%%PORTDOCS%%%%DOCSDIR%%/examples/group/html/namespaces.html -%%PORTDOCS%%%%DOCSDIR%%/examples/group/html/tab_b.gif -%%PORTDOCS%%%%DOCSDIR%%/examples/group/html/tab_l.gif -%%PORTDOCS%%%%DOCSDIR%%/examples/group/html/tab_r.gif -%%PORTDOCS%%%%DOCSDIR%%/examples/group/html/tabs.css -%%PORTDOCS%%%%DOCSDIR%%/examples/include.cfg -%%PORTDOCS%%%%DOCSDIR%%/examples/include.cpp -%%PORTDOCS%%%%DOCSDIR%%/examples/include/html/annotated.html -%%PORTDOCS%%%%DOCSDIR%%/examples/include/html/class_test-members.html -%%PORTDOCS%%%%DOCSDIR%%/examples/include/html/class_test.html -%%PORTDOCS%%%%DOCSDIR%%/examples/include/html/doxygen.css -%%PORTDOCS%%%%DOCSDIR%%/examples/include/html/doxygen.png -%%PORTDOCS%%%%DOCSDIR%%/examples/include/html/example.html -%%PORTDOCS%%%%DOCSDIR%%/examples/include/html/functions.html -%%PORTDOCS%%%%DOCSDIR%%/examples/include/html/functions_func.html -%%PORTDOCS%%%%DOCSDIR%%/examples/include/html/index.html -%%PORTDOCS%%%%DOCSDIR%%/examples/include/html/pages.html -%%PORTDOCS%%%%DOCSDIR%%/examples/include/html/tab_b.gif -%%PORTDOCS%%%%DOCSDIR%%/examples/include/html/tab_l.gif -%%PORTDOCS%%%%DOCSDIR%%/examples/include/html/tab_r.gif -%%PORTDOCS%%%%DOCSDIR%%/examples/include/html/tabs.css -%%PORTDOCS%%%%DOCSDIR%%/examples/jdstyle.cfg -%%PORTDOCS%%%%DOCSDIR%%/examples/jdstyle.cpp -%%PORTDOCS%%%%DOCSDIR%%/examples/jdstyle/html/annotated.html -%%PORTDOCS%%%%DOCSDIR%%/examples/jdstyle/html/class_test-members.html -%%PORTDOCS%%%%DOCSDIR%%/examples/jdstyle/html/class_test.html -%%PORTDOCS%%%%DOCSDIR%%/examples/jdstyle/html/doxygen.css -%%PORTDOCS%%%%DOCSDIR%%/examples/jdstyle/html/doxygen.png -%%PORTDOCS%%%%DOCSDIR%%/examples/jdstyle/html/functions.html -%%PORTDOCS%%%%DOCSDIR%%/examples/jdstyle/html/functions_enum.html -%%PORTDOCS%%%%DOCSDIR%%/examples/jdstyle/html/functions_eval.html -%%PORTDOCS%%%%DOCSDIR%%/examples/jdstyle/html/functions_func.html -%%PORTDOCS%%%%DOCSDIR%%/examples/jdstyle/html/functions_vars.html -%%PORTDOCS%%%%DOCSDIR%%/examples/jdstyle/html/index.html -%%PORTDOCS%%%%DOCSDIR%%/examples/jdstyle/html/tab_b.gif -%%PORTDOCS%%%%DOCSDIR%%/examples/jdstyle/html/tab_l.gif -%%PORTDOCS%%%%DOCSDIR%%/examples/jdstyle/html/tab_r.gif -%%PORTDOCS%%%%DOCSDIR%%/examples/jdstyle/html/tabs.css -%%PORTDOCS%%%%DOCSDIR%%/examples/memgrp.cfg -%%PORTDOCS%%%%DOCSDIR%%/examples/memgrp.cpp -%%PORTDOCS%%%%DOCSDIR%%/examples/memgrp/html/annotated.html -%%PORTDOCS%%%%DOCSDIR%%/examples/memgrp/html/class_test-members.html -%%PORTDOCS%%%%DOCSDIR%%/examples/memgrp/html/class_test.html -%%PORTDOCS%%%%DOCSDIR%%/examples/memgrp/html/doxygen.css -%%PORTDOCS%%%%DOCSDIR%%/examples/memgrp/html/doxygen.png -%%PORTDOCS%%%%DOCSDIR%%/examples/memgrp/html/files.html -%%PORTDOCS%%%%DOCSDIR%%/examples/memgrp/html/functions.html -%%PORTDOCS%%%%DOCSDIR%%/examples/memgrp/html/functions_func.html -%%PORTDOCS%%%%DOCSDIR%%/examples/memgrp/html/globals.html -%%PORTDOCS%%%%DOCSDIR%%/examples/memgrp/html/globals_defs.html -%%PORTDOCS%%%%DOCSDIR%%/examples/memgrp/html/globals_func.html -%%PORTDOCS%%%%DOCSDIR%%/examples/memgrp/html/index.html -%%PORTDOCS%%%%DOCSDIR%%/examples/memgrp/html/memgrp_8cpp.html -%%PORTDOCS%%%%DOCSDIR%%/examples/memgrp/html/tab_b.gif -%%PORTDOCS%%%%DOCSDIR%%/examples/memgrp/html/tab_l.gif -%%PORTDOCS%%%%DOCSDIR%%/examples/memgrp/html/tab_r.gif -%%PORTDOCS%%%%DOCSDIR%%/examples/memgrp/html/tabs.css -%%PORTDOCS%%%%DOCSDIR%%/examples/overload.cfg -%%PORTDOCS%%%%DOCSDIR%%/examples/overload.cpp -%%PORTDOCS%%%%DOCSDIR%%/examples/overload/html/annotated.html -%%PORTDOCS%%%%DOCSDIR%%/examples/overload/html/class_test-members.html -%%PORTDOCS%%%%DOCSDIR%%/examples/overload/html/class_test.html -%%PORTDOCS%%%%DOCSDIR%%/examples/overload/html/doxygen.css -%%PORTDOCS%%%%DOCSDIR%%/examples/overload/html/doxygen.png -%%PORTDOCS%%%%DOCSDIR%%/examples/overload/html/functions.html -%%PORTDOCS%%%%DOCSDIR%%/examples/overload/html/functions_func.html -%%PORTDOCS%%%%DOCSDIR%%/examples/overload/html/index.html -%%PORTDOCS%%%%DOCSDIR%%/examples/overload/html/tab_b.gif -%%PORTDOCS%%%%DOCSDIR%%/examples/overload/html/tab_l.gif -%%PORTDOCS%%%%DOCSDIR%%/examples/overload/html/tab_r.gif -%%PORTDOCS%%%%DOCSDIR%%/examples/overload/html/tabs.css -%%PORTDOCS%%%%DOCSDIR%%/examples/page.cfg -%%PORTDOCS%%%%DOCSDIR%%/examples/page.doc -%%PORTDOCS%%%%DOCSDIR%%/examples/page/html/doxygen.css -%%PORTDOCS%%%%DOCSDIR%%/examples/page/html/doxygen.png -%%PORTDOCS%%%%DOCSDIR%%/examples/page/html/index.html -%%PORTDOCS%%%%DOCSDIR%%/examples/page/html/page1.html -%%PORTDOCS%%%%DOCSDIR%%/examples/page/html/page2.html -%%PORTDOCS%%%%DOCSDIR%%/examples/page/html/pages.html -%%PORTDOCS%%%%DOCSDIR%%/examples/page/html/tab_b.gif -%%PORTDOCS%%%%DOCSDIR%%/examples/page/html/tab_l.gif -%%PORTDOCS%%%%DOCSDIR%%/examples/page/html/tab_r.gif -%%PORTDOCS%%%%DOCSDIR%%/examples/page/html/tabs.css -%%PORTDOCS%%%%DOCSDIR%%/examples/par.cfg -%%PORTDOCS%%%%DOCSDIR%%/examples/par.cpp -%%PORTDOCS%%%%DOCSDIR%%/examples/par/html/annotated.html -%%PORTDOCS%%%%DOCSDIR%%/examples/par/html/class_test.html -%%PORTDOCS%%%%DOCSDIR%%/examples/par/html/doxygen.css -%%PORTDOCS%%%%DOCSDIR%%/examples/par/html/doxygen.png -%%PORTDOCS%%%%DOCSDIR%%/examples/par/html/index.html -%%PORTDOCS%%%%DOCSDIR%%/examples/par/html/tab_b.gif -%%PORTDOCS%%%%DOCSDIR%%/examples/par/html/tab_l.gif -%%PORTDOCS%%%%DOCSDIR%%/examples/par/html/tab_r.gif -%%PORTDOCS%%%%DOCSDIR%%/examples/par/html/tabs.css -%%PORTDOCS%%%%DOCSDIR%%/examples/pyexample.cfg -%%PORTDOCS%%%%DOCSDIR%%/examples/pyexample.py -%%PORTDOCS%%%%DOCSDIR%%/examples/pyexample/html/annotated.html -%%PORTDOCS%%%%DOCSDIR%%/examples/pyexample/html/classpyexample_1_1PyClass-members.html -%%PORTDOCS%%%%DOCSDIR%%/examples/pyexample/html/classpyexample_1_1PyClass.html -%%PORTDOCS%%%%DOCSDIR%%/examples/pyexample/html/doxygen.css -%%PORTDOCS%%%%DOCSDIR%%/examples/pyexample/html/doxygen.png -%%PORTDOCS%%%%DOCSDIR%%/examples/pyexample/html/functions.html -%%PORTDOCS%%%%DOCSDIR%%/examples/pyexample/html/functions_func.html -%%PORTDOCS%%%%DOCSDIR%%/examples/pyexample/html/functions_vars.html -%%PORTDOCS%%%%DOCSDIR%%/examples/pyexample/html/index.html -%%PORTDOCS%%%%DOCSDIR%%/examples/pyexample/html/tab_b.gif -%%PORTDOCS%%%%DOCSDIR%%/examples/pyexample/html/tab_l.gif -%%PORTDOCS%%%%DOCSDIR%%/examples/pyexample/html/tab_r.gif -%%PORTDOCS%%%%DOCSDIR%%/examples/pyexample/html/tabs.css -%%PORTDOCS%%%%DOCSDIR%%/examples/qtstyle.cfg -%%PORTDOCS%%%%DOCSDIR%%/examples/qtstyle.cpp -%%PORTDOCS%%%%DOCSDIR%%/examples/qtstyle/html/annotated.html -%%PORTDOCS%%%%DOCSDIR%%/examples/qtstyle/html/class_test-members.html -%%PORTDOCS%%%%DOCSDIR%%/examples/qtstyle/html/class_test.html -%%PORTDOCS%%%%DOCSDIR%%/examples/qtstyle/html/doxygen.css -%%PORTDOCS%%%%DOCSDIR%%/examples/qtstyle/html/doxygen.png -%%PORTDOCS%%%%DOCSDIR%%/examples/qtstyle/html/functions.html -%%PORTDOCS%%%%DOCSDIR%%/examples/qtstyle/html/functions_enum.html -%%PORTDOCS%%%%DOCSDIR%%/examples/qtstyle/html/functions_eval.html -%%PORTDOCS%%%%DOCSDIR%%/examples/qtstyle/html/functions_func.html -%%PORTDOCS%%%%DOCSDIR%%/examples/qtstyle/html/functions_vars.html -%%PORTDOCS%%%%DOCSDIR%%/examples/qtstyle/html/index.html -%%PORTDOCS%%%%DOCSDIR%%/examples/qtstyle/html/tab_b.gif -%%PORTDOCS%%%%DOCSDIR%%/examples/qtstyle/html/tab_l.gif -%%PORTDOCS%%%%DOCSDIR%%/examples/qtstyle/html/tab_r.gif -%%PORTDOCS%%%%DOCSDIR%%/examples/qtstyle/html/tabs.css -%%PORTDOCS%%%%DOCSDIR%%/examples/relates.cfg -%%PORTDOCS%%%%DOCSDIR%%/examples/relates.cpp -%%PORTDOCS%%%%DOCSDIR%%/examples/relates/html/annotated.html -%%PORTDOCS%%%%DOCSDIR%%/examples/relates/html/class_string-members.html -%%PORTDOCS%%%%DOCSDIR%%/examples/relates/html/class_string.html -%%PORTDOCS%%%%DOCSDIR%%/examples/relates/html/doxygen.css -%%PORTDOCS%%%%DOCSDIR%%/examples/relates/html/doxygen.png -%%PORTDOCS%%%%DOCSDIR%%/examples/relates/html/functions.html -%%PORTDOCS%%%%DOCSDIR%%/examples/relates/html/functions_func.html -%%PORTDOCS%%%%DOCSDIR%%/examples/relates/html/functions_rela.html -%%PORTDOCS%%%%DOCSDIR%%/examples/relates/html/index.html -%%PORTDOCS%%%%DOCSDIR%%/examples/relates/html/tab_b.gif -%%PORTDOCS%%%%DOCSDIR%%/examples/relates/html/tab_l.gif -%%PORTDOCS%%%%DOCSDIR%%/examples/relates/html/tab_r.gif -%%PORTDOCS%%%%DOCSDIR%%/examples/relates/html/tabs.css -%%PORTDOCS%%%%DOCSDIR%%/examples/restypedef.cfg -%%PORTDOCS%%%%DOCSDIR%%/examples/restypedef.cpp -%%PORTDOCS%%%%DOCSDIR%%/examples/restypedef/html/annotated.html -%%PORTDOCS%%%%DOCSDIR%%/examples/restypedef/html/doxygen.css -%%PORTDOCS%%%%DOCSDIR%%/examples/restypedef/html/doxygen.png -%%PORTDOCS%%%%DOCSDIR%%/examples/restypedef/html/files.html -%%PORTDOCS%%%%DOCSDIR%%/examples/restypedef/html/functions.html -%%PORTDOCS%%%%DOCSDIR%%/examples/restypedef/html/functions_vars.html -%%PORTDOCS%%%%DOCSDIR%%/examples/restypedef/html/globals.html -%%PORTDOCS%%%%DOCSDIR%%/examples/restypedef/html/globals_func.html -%%PORTDOCS%%%%DOCSDIR%%/examples/restypedef/html/globals_type.html -%%PORTDOCS%%%%DOCSDIR%%/examples/restypedef/html/index.html -%%PORTDOCS%%%%DOCSDIR%%/examples/restypedef/html/restypedef_8cpp.html -%%PORTDOCS%%%%DOCSDIR%%/examples/restypedef/html/struct_coord_struct-members.html -%%PORTDOCS%%%%DOCSDIR%%/examples/restypedef/html/struct_coord_struct.html -%%PORTDOCS%%%%DOCSDIR%%/examples/restypedef/html/tab_b.gif -%%PORTDOCS%%%%DOCSDIR%%/examples/restypedef/html/tab_l.gif -%%PORTDOCS%%%%DOCSDIR%%/examples/restypedef/html/tab_r.gif -%%PORTDOCS%%%%DOCSDIR%%/examples/restypedef/html/tabs.css -%%PORTDOCS%%%%DOCSDIR%%/examples/structcmd.cfg -%%PORTDOCS%%%%DOCSDIR%%/examples/structcmd.h -%%PORTDOCS%%%%DOCSDIR%%/examples/structcmd/html/doxygen.css -%%PORTDOCS%%%%DOCSDIR%%/examples/structcmd/html/doxygen.png -%%PORTDOCS%%%%DOCSDIR%%/examples/structcmd/html/files.html -%%PORTDOCS%%%%DOCSDIR%%/examples/structcmd/html/globals.html -%%PORTDOCS%%%%DOCSDIR%%/examples/structcmd/html/globals_defs.html -%%PORTDOCS%%%%DOCSDIR%%/examples/structcmd/html/globals_func.html -%%PORTDOCS%%%%DOCSDIR%%/examples/structcmd/html/globals_type.html -%%PORTDOCS%%%%DOCSDIR%%/examples/structcmd/html/globals_vars.html -%%PORTDOCS%%%%DOCSDIR%%/examples/structcmd/html/index.html -%%PORTDOCS%%%%DOCSDIR%%/examples/structcmd/html/structcmd_8h-source.html -%%PORTDOCS%%%%DOCSDIR%%/examples/structcmd/html/structcmd_8h.html -%%PORTDOCS%%%%DOCSDIR%%/examples/structcmd/html/tab_b.gif -%%PORTDOCS%%%%DOCSDIR%%/examples/structcmd/html/tab_l.gif -%%PORTDOCS%%%%DOCSDIR%%/examples/structcmd/html/tab_r.gif -%%PORTDOCS%%%%DOCSDIR%%/examples/structcmd/html/tabs.css -%%PORTDOCS%%%%DOCSDIR%%/examples/tag.cfg -%%PORTDOCS%%%%DOCSDIR%%/examples/tag.cpp -%%PORTDOCS%%%%DOCSDIR%%/examples/tag/html/annotated.html -%%PORTDOCS%%%%DOCSDIR%%/examples/tag/html/class_tag-members.html -%%PORTDOCS%%%%DOCSDIR%%/examples/tag/html/class_tag.html -%%PORTDOCS%%%%DOCSDIR%%/examples/tag/html/class_tag.png -%%PORTDOCS%%%%DOCSDIR%%/examples/tag/html/doxygen.css -%%PORTDOCS%%%%DOCSDIR%%/examples/tag/html/doxygen.png -%%PORTDOCS%%%%DOCSDIR%%/examples/tag/html/functions.html -%%PORTDOCS%%%%DOCSDIR%%/examples/tag/html/functions_func.html -%%PORTDOCS%%%%DOCSDIR%%/examples/tag/html/hierarchy.html -%%PORTDOCS%%%%DOCSDIR%%/examples/tag/html/index.html -%%PORTDOCS%%%%DOCSDIR%%/examples/tag/html/installdox -%%PORTDOCS%%%%DOCSDIR%%/examples/tag/html/tab_b.gif -%%PORTDOCS%%%%DOCSDIR%%/examples/tag/html/tab_l.gif -%%PORTDOCS%%%%DOCSDIR%%/examples/tag/html/tab_r.gif -%%PORTDOCS%%%%DOCSDIR%%/examples/tag/html/tabs.css -%%PORTDOCS%%%%DOCSDIR%%/examples/templ.cfg -%%PORTDOCS%%%%DOCSDIR%%/examples/templ.cpp -%%PORTDOCS%%%%DOCSDIR%%/examples/template/html/annotated.html -%%PORTDOCS%%%%DOCSDIR%%/examples/template/html/class_test-members.html -%%PORTDOCS%%%%DOCSDIR%%/examples/template/html/class_test.html -%%PORTDOCS%%%%DOCSDIR%%/examples/template/html/class_test_3_01_t_01_5_01_4-members.html -%%PORTDOCS%%%%DOCSDIR%%/examples/template/html/class_test_3_01_t_01_5_01_4.html -%%PORTDOCS%%%%DOCSDIR%%/examples/template/html/class_test_3_01_t_01_5_01_4.png -%%PORTDOCS%%%%DOCSDIR%%/examples/template/html/class_test_3_01void_01_5_00_01200_01_4-members.html -%%PORTDOCS%%%%DOCSDIR%%/examples/template/html/class_test_3_01void_01_5_00_01200_01_4.html -%%PORTDOCS%%%%DOCSDIR%%/examples/template/html/class_test_3_01void_01_5_00_01200_01_4.png -%%PORTDOCS%%%%DOCSDIR%%/examples/template/html/doxygen.css -%%PORTDOCS%%%%DOCSDIR%%/examples/template/html/doxygen.png -%%PORTDOCS%%%%DOCSDIR%%/examples/template/html/functions.html -%%PORTDOCS%%%%DOCSDIR%%/examples/template/html/functions_func.html -%%PORTDOCS%%%%DOCSDIR%%/examples/template/html/hierarchy.html -%%PORTDOCS%%%%DOCSDIR%%/examples/template/html/index.html -%%PORTDOCS%%%%DOCSDIR%%/examples/template/html/tab_b.gif -%%PORTDOCS%%%%DOCSDIR%%/examples/template/html/tab_l.gif -%%PORTDOCS%%%%DOCSDIR%%/examples/template/html/tab_r.gif -%%PORTDOCS%%%%DOCSDIR%%/examples/template/html/tabs.css -%%PORTDOCS%%%%DOCSDIR%%/html/arch.html -%%PORTDOCS%%%%DOCSDIR%%/html/archoverview.gif -%%PORTDOCS%%%%DOCSDIR%%/html/autolink.html -%%PORTDOCS%%%%DOCSDIR%%/html/commands.html -%%PORTDOCS%%%%DOCSDIR%%/html/config.html -%%PORTDOCS%%%%DOCSDIR%%/html/diagrams.html -%%PORTDOCS%%%%DOCSDIR%%/html/docblocks.html -%%PORTDOCS%%%%DOCSDIR%%/html/doxygen.css -%%PORTDOCS%%%%DOCSDIR%%/html/doxygen.png -%%PORTDOCS%%%%DOCSDIR%%/html/doxygen_logo.gif -%%PORTDOCS%%%%DOCSDIR%%/html/doxygen_logo_low.gif -%%PORTDOCS%%%%DOCSDIR%%/html/doxygen_usage.html -%%PORTDOCS%%%%DOCSDIR%%/html/doxytag_usage.html -%%PORTDOCS%%%%DOCSDIR%%/html/doxywizard_expert.png -%%PORTDOCS%%%%DOCSDIR%%/html/doxywizard_main.png -%%PORTDOCS%%%%DOCSDIR%%/html/doxywizard_menu.png -%%PORTDOCS%%%%DOCSDIR%%/html/doxywizard_page1.png -%%PORTDOCS%%%%DOCSDIR%%/html/doxywizard_page2.png -%%PORTDOCS%%%%DOCSDIR%%/html/doxywizard_page3.png -%%PORTDOCS%%%%DOCSDIR%%/html/doxywizard_page4.png -%%PORTDOCS%%%%DOCSDIR%%/html/doxywizard_usage.html -%%PORTDOCS%%%%DOCSDIR%%/html/external.html -%%PORTDOCS%%%%DOCSDIR%%/html/faq.html -%%PORTDOCS%%%%DOCSDIR%%/html/features.html -%%PORTDOCS%%%%HAVE_LATEX%%%%DOCSDIR%%/html/form_0.png -%%PORTDOCS%%%%HAVE_LATEX%%%%DOCSDIR%%/html/form_1.png -%%PORTDOCS%%%%HAVE_LATEX%%%%DOCSDIR%%/html/form_2.png -%%PORTDOCS%%%%HAVE_LATEX%%%%DOCSDIR%%/html/form_3.png -%%PORTDOCS%%%%HAVE_LATEX%%%%DOCSDIR%%/html/form_4.png -%%PORTDOCS%%%%HAVE_LATEX%%%%DOCSDIR%%/html/form_5.png -%%PORTDOCS%%%%HAVE_LATEX%%%%DOCSDIR%%/html/formula.repository -%%PORTDOCS%%%%DOCSDIR%%/html/formulas.html -%%PORTDOCS%%%%DOCSDIR%%/html/grouping.html -%%PORTDOCS%%%%DOCSDIR%%/html/history.html -%%PORTDOCS%%%%DOCSDIR%%/html/htmlcmds.html -%%PORTDOCS%%%%DOCSDIR%%/html/index.hhc -%%PORTDOCS%%%%DOCSDIR%%/html/index.hhk -%%PORTDOCS%%%%DOCSDIR%%/html/index.hhp -%%PORTDOCS%%%%DOCSDIR%%/html/index.html -%%PORTDOCS%%%%DOCSDIR%%/html/infoflow.gif -%%PORTDOCS%%%%DOCSDIR%%/html/install.html -%%PORTDOCS%%%%DOCSDIR%%/html/installdox_usage.html -%%PORTDOCS%%%%DOCSDIR%%/html/langhowto.html -%%PORTDOCS%%%%DOCSDIR%%/html/lists.html -%%PORTDOCS%%%%DOCSDIR%%/html/output.html -%%PORTDOCS%%%%DOCSDIR%%/html/pages.html -%%PORTDOCS%%%%DOCSDIR%%/html/perlmod.html -%%PORTDOCS%%%%DOCSDIR%%/html/perlmod_tree.html -%%PORTDOCS%%%%DOCSDIR%%/html/preprocessing.html -%%PORTDOCS%%%%DOCSDIR%%/html/starting.html -%%PORTDOCS%%%%DOCSDIR%%/html/tab_b.gif -%%PORTDOCS%%%%DOCSDIR%%/html/tab_l.gif -%%PORTDOCS%%%%DOCSDIR%%/html/tab_r.gif -%%PORTDOCS%%%%DOCSDIR%%/html/tabs.css -%%PORTDOCS%%%%DOCSDIR%%/html/trouble.html -%%PORTDOCS%%%%DOCSDIR%%/html/xmlcmds.html -%%PORTDOCS%%@dirrm %%DOCSDIR%%/html -%%PORTDOCS%%@dirrm %%DOCSDIR%%/examples/template/html -%%PORTDOCS%%@dirrm %%DOCSDIR%%/examples/template -%%PORTDOCS%%@dirrm %%DOCSDIR%%/examples/tag/html -%%PORTDOCS%%@dirrm %%DOCSDIR%%/examples/tag -%%PORTDOCS%%@dirrm %%DOCSDIR%%/examples/structcmd/html -%%PORTDOCS%%@dirrm %%DOCSDIR%%/examples/structcmd -%%PORTDOCS%%@dirrm %%DOCSDIR%%/examples/restypedef/html -%%PORTDOCS%%@dirrm %%DOCSDIR%%/examples/restypedef -%%PORTDOCS%%@dirrm %%DOCSDIR%%/examples/relates/html -%%PORTDOCS%%@dirrm %%DOCSDIR%%/examples/relates -%%PORTDOCS%%@dirrm %%DOCSDIR%%/examples/qtstyle/html -%%PORTDOCS%%@dirrm %%DOCSDIR%%/examples/qtstyle -%%PORTDOCS%%@dirrm %%DOCSDIR%%/examples/pyexample/html -%%PORTDOCS%%@dirrm %%DOCSDIR%%/examples/pyexample -%%PORTDOCS%%@dirrm %%DOCSDIR%%/examples/par/html -%%PORTDOCS%%@dirrm %%DOCSDIR%%/examples/par -%%PORTDOCS%%@dirrm %%DOCSDIR%%/examples/page/html -%%PORTDOCS%%@dirrm %%DOCSDIR%%/examples/page -%%PORTDOCS%%@dirrm %%DOCSDIR%%/examples/overload/html -%%PORTDOCS%%@dirrm %%DOCSDIR%%/examples/overload -%%PORTDOCS%%@dirrm %%DOCSDIR%%/examples/memgrp/html -%%PORTDOCS%%@dirrm %%DOCSDIR%%/examples/memgrp -%%PORTDOCS%%@dirrm %%DOCSDIR%%/examples/jdstyle/html -%%PORTDOCS%%@dirrm %%DOCSDIR%%/examples/jdstyle -%%PORTDOCS%%@dirrm %%DOCSDIR%%/examples/include/html -%%PORTDOCS%%@dirrm %%DOCSDIR%%/examples/include -%%PORTDOCS%%@dirrm %%DOCSDIR%%/examples/group/html -%%PORTDOCS%%@dirrm %%DOCSDIR%%/examples/group -%%PORTDOCS%%@dirrm %%DOCSDIR%%/examples/func/html -%%PORTDOCS%%@dirrm %%DOCSDIR%%/examples/func -%%PORTDOCS%%@dirrm %%DOCSDIR%%/examples/file/html -%%PORTDOCS%%@dirrm %%DOCSDIR%%/examples/file -%%PORTDOCS%%@dirrm %%DOCSDIR%%/examples/example/html -%%PORTDOCS%%@dirrm %%DOCSDIR%%/examples/example -%%PORTDOCS%%@dirrm %%DOCSDIR%%/examples/enum/html -%%PORTDOCS%%@dirrm %%DOCSDIR%%/examples/enum -%%PORTDOCS%%@dirrm %%DOCSDIR%%/examples/docstring/html -%%PORTDOCS%%@dirrm %%DOCSDIR%%/examples/docstring -%%PORTDOCS%%@dirrm %%DOCSDIR%%/examples/diagrams/html -%%PORTDOCS%%@dirrm %%DOCSDIR%%/examples/diagrams -%%PORTDOCS%%@dirrm %%DOCSDIR%%/examples/define/html -%%PORTDOCS%%@dirrm %%DOCSDIR%%/examples/define -%%PORTDOCS%%@dirrm %%DOCSDIR%%/examples/class/html -%%PORTDOCS%%@dirrm %%DOCSDIR%%/examples/class -%%PORTDOCS%%@dirrm %%DOCSDIR%%/examples/autolink/html -%%PORTDOCS%%@dirrm %%DOCSDIR%%/examples/autolink -%%PORTDOCS%%@dirrm %%DOCSDIR%%/examples/author/html -%%PORTDOCS%%@dirrm %%DOCSDIR%%/examples/author -%%PORTDOCS%%@dirrm %%DOCSDIR%%/examples/afterdoc/html -%%PORTDOCS%%@dirrm %%DOCSDIR%%/examples/afterdoc -%%PORTDOCS%%@dirrm %%DOCSDIR%%/examples -%%PORTDOCS%%@dirrm %%DOCSDIR%% |