pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/devel



Module Name:    pkgsrc
Committed By:   scole
Date:           Mon Jun 15 15:11:50 UTC 2020

Modified Files:
        pkgsrc/devel: Makefile
Added Files:
        pkgsrc/devel/RE-flex: DESCR MESSAGE Makefile PLIST buildlink3.mk
            distinfo options.mk
        pkgsrc/devel/RE-flex/patches: patch-examples_gz.l patch-lib_Makefile.in
            patch-src_Makefile.in

Log Message:
devel/RE-flex: import RE-flex 2.0.1

The regex-centric, fast lexical analyzer generator for C++ with full
Unicode support. Faster than Flex and other regex matchers. Accepts
Flex specifications. Generates reusable source code that is easy to
understand. Easily integrates with Bison and other parsers. Includes a
fast stand-alone regex engine and library.


To generate a diff of this commit:
cvs rdiff -u -r1.3143 -r1.3144 pkgsrc/devel/Makefile
cvs rdiff -u -r0 -r1.1 pkgsrc/devel/RE-flex/DESCR \
    pkgsrc/devel/RE-flex/MESSAGE pkgsrc/devel/RE-flex/Makefile \
    pkgsrc/devel/RE-flex/PLIST pkgsrc/devel/RE-flex/buildlink3.mk \
    pkgsrc/devel/RE-flex/distinfo pkgsrc/devel/RE-flex/options.mk
cvs rdiff -u -r0 -r1.1 pkgsrc/devel/RE-flex/patches/patch-examples_gz.l \
    pkgsrc/devel/RE-flex/patches/patch-lib_Makefile.in \
    pkgsrc/devel/RE-flex/patches/patch-src_Makefile.in

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/devel/Makefile
diff -u pkgsrc/devel/Makefile:1.3143 pkgsrc/devel/Makefile:1.3144
--- pkgsrc/devel/Makefile:1.3143        Fri Jun 12 11:38:32 2020
+++ pkgsrc/devel/Makefile       Mon Jun 15 15:11:50 2020
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.3143 2020/06/12 11:38:32 nia Exp $
+# $NetBSD: Makefile,v 1.3144 2020/06/15 15:11:50 scole Exp $
 #
 
 COMMENT=       Development utilities
@@ -72,6 +72,7 @@ SUBDIR+=      R-whisker
 SUBDIR+=       R-withr
 SUBDIR+=       R-xfun
 SUBDIR+=       RBTools
+SUBDIR+=       RE-flex
 SUBDIR+=       Renaissance
 SUBDIR+=       SDL
 SUBDIR+=       SDL-intro-en

Added files:

Index: pkgsrc/devel/RE-flex/DESCR
diff -u /dev/null pkgsrc/devel/RE-flex/DESCR:1.1
--- /dev/null   Mon Jun 15 15:11:50 2020
+++ pkgsrc/devel/RE-flex/DESCR  Mon Jun 15 15:11:50 2020
@@ -0,0 +1,10 @@
+RE-flex is a regex-centric, fast lexical analyzer generator for C++
+with full Unicode support.
+
+Faster than Flex and other regex matchers.  Accepts Flex
+specifications.  Generates reusable source code that is easy to
+understand.  Easily integrates with Bison and other parsers.  Includes
+a fast stand-alone regex engine and library.
+
+It also can use regex matchers from boost or pcre2, as well as
+visualizing FSM graphs with graphviz.
Index: pkgsrc/devel/RE-flex/MESSAGE
diff -u /dev/null pkgsrc/devel/RE-flex/MESSAGE:1.1
--- /dev/null   Mon Jun 15 15:11:50 2020
+++ pkgsrc/devel/RE-flex/MESSAGE        Mon Jun 15 15:11:50 2020
@@ -0,0 +1,19 @@
+===========================================================================
+$NetBSD: MESSAGE,v 1.1 2020/06/15 15:11:50 scole Exp $
+
+RE/flex has its own built-in regex engine, but other regex engines from the
+following packages may be used as well:
+
+    devel/boost-libs
+    devel/pcre2
+
+It is possible to generate FSM graphs by using 'reflex' with the
+'--graphs-file' option and installing this package:
+
+    graphics/graphviz
+
+A vim Flex and RE/flex syntax highlighting mode file is included in
+the package and can by used by copying
+    ${PREFIX}/share/RE-Flex/lex.vim to ~/.vim/syntax
+
+===========================================================================
Index: pkgsrc/devel/RE-flex/Makefile
diff -u /dev/null pkgsrc/devel/RE-flex/Makefile:1.1
--- /dev/null   Mon Jun 15 15:11:50 2020
+++ pkgsrc/devel/RE-flex/Makefile       Mon Jun 15 15:11:50 2020
@@ -0,0 +1,49 @@
+# $NetBSD: Makefile,v 1.1 2020/06/15 15:11:50 scole Exp $
+
+GITHUB_PROJECT=        RE-flex
+GITHUB_TAG=    v2.0.1
+DISTNAME=      v2.0.1
+PKGNAME=       ${GITHUB_PROJECT}-${DISTNAME:S,^v,,}
+CATEGORIES=    devel
+MASTER_SITES=  ${MASTER_SITE_GITHUB:=Genivia/}
+DIST_SUBDIR=   ${GITHUB_PROJECT}
+
+MAINTAINER=    pkgsrc-users%NetBSD.org@localhost
+HOMEPAGE=      https://github.com/Genivia/RE-flex/
+COMMENT=       Fast lexical analyzer generator for C++ with full Unicode support
+LICENSE=       modified-bsd
+
+.include "../../mk/bsd.prefs.mk"
+.include "options.mk"
+
+INSTALLATION_DIRS+=    bin lib share/RE-flex include/reflex ${PKGMANDIR}/man1
+
+WRKSRC=                ${WRKDIR}/RE-flex-2.0.1
+GNU_CONFIGURE= yes
+USE_LANGUAGES= c c++
+
+USE_TOOLS+=    gmake
+USE_LIBTOOL=   yes
+
+do-build:
+       cd ${WRKSRC}/lib && ${SETENV} ${MAKE_ENV} ${MAKE_PROGRAM}
+       cd ${WRKSRC}/src && ${SETENV} ${MAKE_ENV} ${MAKE_PROGRAM}
+
+do-install:
+       ${LIBTOOL} --mode=install ${INSTALL_PROGRAM} \
+               ${WRKSRC}/src/reflex ${DESTDIR}${PREFIX}/bin
+       ${LIBTOOL} --mode=install ${INSTALL_LIB} \
+               ${WRKSRC}/lib/libreflex.la ${DESTDIR}${PREFIX}/lib
+       ${LIBTOOL} --mode=install ${INSTALL_LIB} \
+               ${WRKSRC}/lib/libreflexmin.la ${DESTDIR}${PREFIX}/lib
+       ${INSTALL_DATA} ${WRKSRC}/include/reflex/*.h \
+               ${DESTDIR}${PREFIX}/include/reflex
+       ${INSTALL_MAN} ${WRKSRC}/doc/man/reflex.1 \
+               ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1
+
+post-install: post-install-doxygen post-install-examples
+.for f in README.md LICENSE.txt CONTRIBUTING.md CODE_OF_CONDUCT.md lex.vim
+       ${INSTALL_DATA} ${WRKSRC}/${f} ${DESTDIR}${PREFIX}/share/RE-flex
+.endfor
+
+.include "../../mk/bsd.pkg.mk"
Index: pkgsrc/devel/RE-flex/PLIST
diff -u /dev/null pkgsrc/devel/RE-flex/PLIST:1.1
--- /dev/null   Mon Jun 15 15:11:50 2020
+++ pkgsrc/devel/RE-flex/PLIST  Mon Jun 15 15:11:50 2020
@@ -0,0 +1,821 @@
+@comment $NetBSD: PLIST,v 1.1 2020/06/15 15:11:50 scole Exp $
+bin/reflex
+include/reflex/abslexer.h
+include/reflex/absmatcher.h
+include/reflex/bits.h
+include/reflex/boostmatcher.h
+include/reflex/convert.h
+include/reflex/debug.h
+include/reflex/error.h
+include/reflex/flexlexer.h
+include/reflex/input.h
+include/reflex/matcher.h
+include/reflex/pattern.h
+include/reflex/pcre2matcher.h
+include/reflex/posix.h
+include/reflex/ranges.h
+include/reflex/setop.h
+include/reflex/stdmatcher.h
+include/reflex/timer.h
+include/reflex/traits.h
+include/reflex/unicode.h
+include/reflex/utf8.h
+lib/libreflex.la
+lib/libreflexmin.la
+man/man1/reflex.1
+share/RE-flex/CODE_OF_CONDUCT.md
+share/RE-flex/CONTRIBUTING.md
+share/RE-flex/LICENSE.txt
+share/RE-flex/README.md
+share/RE-flex/lex.vim
+${PLIST.doxygen}share/RE-flex/html/abslexer_8h.html
+${PLIST.doxygen}share/RE-flex/html/abslexer_8h__dep__incl.map
+${PLIST.doxygen}share/RE-flex/html/abslexer_8h__dep__incl.md5
+${PLIST.doxygen}share/RE-flex/html/abslexer_8h__dep__incl.png
+${PLIST.doxygen}share/RE-flex/html/abslexer_8h__incl.map
+${PLIST.doxygen}share/RE-flex/html/abslexer_8h__incl.md5
+${PLIST.doxygen}share/RE-flex/html/abslexer_8h__incl.png
+${PLIST.doxygen}share/RE-flex/html/absmatcher_8h.html
+${PLIST.doxygen}share/RE-flex/html/absmatcher_8h__dep__incl.map
+${PLIST.doxygen}share/RE-flex/html/absmatcher_8h__dep__incl.md5
+${PLIST.doxygen}share/RE-flex/html/absmatcher_8h__dep__incl.png
+${PLIST.doxygen}share/RE-flex/html/absmatcher_8h__incl.map
+${PLIST.doxygen}share/RE-flex/html/absmatcher_8h__incl.md5
+${PLIST.doxygen}share/RE-flex/html/absmatcher_8h__incl.png
+${PLIST.doxygen}share/RE-flex/html/annotated.html
+${PLIST.doxygen}share/RE-flex/html/bc_s.png
+${PLIST.doxygen}share/RE-flex/html/bdwn.png
+${PLIST.doxygen}share/RE-flex/html/bits_8h.html
+${PLIST.doxygen}share/RE-flex/html/bits_8h__dep__incl.map
+${PLIST.doxygen}share/RE-flex/html/bits_8h__dep__incl.md5
+${PLIST.doxygen}share/RE-flex/html/bits_8h__dep__incl.png
+${PLIST.doxygen}share/RE-flex/html/bits_8h__incl.map
+${PLIST.doxygen}share/RE-flex/html/bits_8h__incl.md5
+${PLIST.doxygen}share/RE-flex/html/bits_8h__incl.png
+${PLIST.doxygen}share/RE-flex/html/boostmatcher_8h.html
+${PLIST.doxygen}share/RE-flex/html/boostmatcher_8h__incl.map
+${PLIST.doxygen}share/RE-flex/html/boostmatcher_8h__incl.md5
+${PLIST.doxygen}share/RE-flex/html/boostmatcher_8h__incl.png
+${PLIST.doxygen}share/RE-flex/html/class_reflex-members.html
+${PLIST.doxygen}share/RE-flex/html/class_reflex.html
+${PLIST.doxygen}share/RE-flex/html/class_reflex__coll__graph.map
+${PLIST.doxygen}share/RE-flex/html/class_reflex__coll__graph.md5
+${PLIST.doxygen}share/RE-flex/html/class_reflex__coll__graph.png
+${PLIST.doxygen}share/RE-flex/html/classes.html
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_abstract_lexer-members.html
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_abstract_lexer.html
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_abstract_lexer_1_1_matcher-members.html
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_abstract_lexer_1_1_matcher.html
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_abstract_lexer_1_1_matcher__coll__graph.map
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_abstract_lexer_1_1_matcher__coll__graph.md5
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_abstract_lexer_1_1_matcher__coll__graph.png
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_abstract_lexer_1_1_matcher__inherit__graph.map
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_abstract_lexer_1_1_matcher__inherit__graph.md5
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_abstract_lexer_1_1_matcher__inherit__graph.png
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_abstract_lexer__coll__graph.map
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_abstract_lexer__coll__graph.md5
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_abstract_lexer__coll__graph.png
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_abstract_lexer__inherit__graph.map
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_abstract_lexer__inherit__graph.md5
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_abstract_lexer__inherit__graph.png
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_abstract_matcher-members.html
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_abstract_matcher.html
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_abstract_matcher_1_1_iterator-members.html
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_abstract_matcher_1_1_iterator.html
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_abstract_matcher_1_1_iterator__coll__graph.map
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_abstract_matcher_1_1_iterator__coll__graph.md5
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_abstract_matcher_1_1_iterator__coll__graph.png
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_abstract_matcher_1_1_iterator__inherit__graph.map
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_abstract_matcher_1_1_iterator__inherit__graph.md5
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_abstract_matcher_1_1_iterator__inherit__graph.png
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_abstract_matcher_1_1_operation-members.html
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_abstract_matcher_1_1_operation.html
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_abstract_matcher_1_1_operation__coll__graph.map
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_abstract_matcher_1_1_operation__coll__graph.md5
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_abstract_matcher_1_1_operation__coll__graph.png
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_abstract_matcher__coll__graph.map
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_abstract_matcher__coll__graph.md5
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_abstract_matcher__coll__graph.png
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_abstract_matcher__inherit__graph.map
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_abstract_matcher__inherit__graph.md5
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_abstract_matcher__inherit__graph.png
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_bits-members.html
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_bits.html
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_boost_matcher-members.html
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_boost_matcher.html
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_boost_matcher__coll__graph.map
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_boost_matcher__coll__graph.md5
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_boost_matcher__coll__graph.png
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_boost_matcher__inherit__graph.map
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_boost_matcher__inherit__graph.md5
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_boost_matcher__inherit__graph.png
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_boost_perl_matcher-members.html
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_boost_perl_matcher.html
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_boost_perl_matcher__coll__graph.map
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_boost_perl_matcher__coll__graph.md5
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_boost_perl_matcher__coll__graph.png
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_boost_perl_matcher__inherit__graph.map
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_boost_perl_matcher__inherit__graph.md5
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_boost_perl_matcher__inherit__graph.png
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_boost_posix_matcher-members.html
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_boost_posix_matcher.html
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_boost_posix_matcher__coll__graph.map
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_boost_posix_matcher__coll__graph.md5
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_boost_posix_matcher__coll__graph.png
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_boost_posix_matcher__inherit__graph.map
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_boost_posix_matcher__inherit__graph.md5
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_boost_posix_matcher__inherit__graph.png
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_buffered_input-members.html
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_buffered_input.html
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_buffered_input_1_1dos__streambuf-members.html
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_buffered_input_1_1dos__streambuf.html
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_buffered_input_1_1dos__streambuf__coll__graph.map
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_buffered_input_1_1dos__streambuf__coll__graph.md5
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_buffered_input_1_1dos__streambuf__coll__graph.png
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_buffered_input_1_1dos__streambuf__inherit__graph.map
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_buffered_input_1_1dos__streambuf__inherit__graph.md5
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_buffered_input_1_1dos__streambuf__inherit__graph.png
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_buffered_input_1_1streambuf-members.html
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_buffered_input_1_1streambuf.html
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_buffered_input_1_1streambuf__coll__graph.map
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_buffered_input_1_1streambuf__coll__graph.md5
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_buffered_input_1_1streambuf__coll__graph.png
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_buffered_input_1_1streambuf__inherit__graph.map
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_buffered_input_1_1streambuf__inherit__graph.md5
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_buffered_input_1_1streambuf__inherit__graph.png
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_buffered_input__coll__graph.map
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_buffered_input__coll__graph.md5
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_buffered_input__coll__graph.png
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_buffered_input__inherit__graph.map
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_buffered_input__inherit__graph.md5
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_buffered_input__inherit__graph.png
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_flex_lexer-members.html
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_flex_lexer.html
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_flex_lexer_1_1_matcher-members.html
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_flex_lexer_1_1_matcher.html
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_flex_lexer_1_1_matcher__coll__graph.map
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_flex_lexer_1_1_matcher__coll__graph.md5
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_flex_lexer_1_1_matcher__coll__graph.png
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_flex_lexer_1_1_matcher__inherit__graph.map
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_flex_lexer_1_1_matcher__inherit__graph.md5
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_flex_lexer_1_1_matcher__inherit__graph.png
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_flex_lexer__coll__graph.map
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_flex_lexer__coll__graph.md5
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_flex_lexer__coll__graph.png
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_flex_lexer__inherit__graph.map
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_flex_lexer__inherit__graph.md5
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_flex_lexer__inherit__graph.png
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_input-members.html
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_input.html
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_input_1_1dos__streambuf-members.html
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_input_1_1dos__streambuf.html
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_input_1_1dos__streambuf__coll__graph.map
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_input_1_1dos__streambuf__coll__graph.md5
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_input_1_1dos__streambuf__coll__graph.png
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_input_1_1dos__streambuf__inherit__graph.map
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_input_1_1dos__streambuf__inherit__graph.md5
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_input_1_1dos__streambuf__inherit__graph.png
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_input_1_1streambuf-members.html
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_input_1_1streambuf.html
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_input_1_1streambuf__coll__graph.map
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_input_1_1streambuf__coll__graph.md5
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_input_1_1streambuf__coll__graph.png
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_input_1_1streambuf__inherit__graph.map
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_input_1_1streambuf__inherit__graph.md5
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_input_1_1streambuf__inherit__graph.png
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_input__coll__graph.map
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_input__coll__graph.md5
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_input__coll__graph.png
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_input__inherit__graph.map
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_input__inherit__graph.md5
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_input__inherit__graph.png
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_matcher-members.html
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_matcher.html
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_matcher__coll__graph.map
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_matcher__coll__graph.md5
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_matcher__coll__graph.png
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_matcher__inherit__graph.map
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_matcher__inherit__graph.md5
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_matcher__inherit__graph.png
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_o_ranges-members.html
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_o_ranges.html
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_o_ranges__coll__graph.map
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_o_ranges__coll__graph.md5
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_o_ranges__coll__graph.png
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_o_ranges__inherit__graph.map
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_o_ranges__inherit__graph.md5
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_o_ranges__inherit__graph.png
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_p_c_r_e2_matcher-members.html
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_p_c_r_e2_matcher.html
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_p_c_r_e2_matcher__coll__graph.map
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_p_c_r_e2_matcher__coll__graph.md5
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_p_c_r_e2_matcher__coll__graph.png
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_p_c_r_e2_matcher__inherit__graph.map
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_p_c_r_e2_matcher__inherit__graph.md5
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_p_c_r_e2_matcher__inherit__graph.png
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_p_c_r_e2_u_t_f_matcher-members.html
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_p_c_r_e2_u_t_f_matcher.html
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_p_c_r_e2_u_t_f_matcher__coll__graph.map
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_p_c_r_e2_u_t_f_matcher__coll__graph.md5
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_p_c_r_e2_u_t_f_matcher__coll__graph.png
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_p_c_r_e2_u_t_f_matcher__inherit__graph.map
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_p_c_r_e2_u_t_f_matcher__inherit__graph.md5
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_p_c_r_e2_u_t_f_matcher__inherit__graph.png
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_pattern-members.html
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_pattern.html
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_pattern__coll__graph.map
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_pattern__coll__graph.md5
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_pattern__coll__graph.png
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_pattern_matcher-members.html
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_pattern_matcher.html
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_pattern_matcher_3_01std_1_1string_01_4-members.html
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_pattern_matcher_3_01std_1_1string_01_4.html
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_pattern_matcher_3_01std_1_1string_01_4__coll__graph.map
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_pattern_matcher_3_01std_1_1string_01_4__coll__graph.md5
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_pattern_matcher_3_01std_1_1string_01_4__coll__graph.png
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_pattern_matcher_3_01std_1_1string_01_4__inherit__graph.map
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_pattern_matcher_3_01std_1_1string_01_4__inherit__graph.md5
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_pattern_matcher_3_01std_1_1string_01_4__inherit__graph.png
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_pattern_matcher__coll__graph.map
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_pattern_matcher__coll__graph.md5
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_pattern_matcher__coll__graph.png
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_pattern_matcher__inherit__graph.map
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_pattern_matcher__inherit__graph.md5
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_pattern_matcher__inherit__graph.png
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_posix_1_1_tables-members.html
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_posix_1_1_tables.html
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_posix_1_1_tables__coll__graph.map
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_posix_1_1_tables__coll__graph.md5
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_posix_1_1_tables__coll__graph.png
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_posix_1_1_tables__inherit__graph.map
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_posix_1_1_tables__inherit__graph.md5
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_posix_1_1_tables__inherit__graph.png
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_ranges-members.html
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_ranges.html
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_ranges__coll__graph.map
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_ranges__coll__graph.md5
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_ranges__coll__graph.png
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_ranges__inherit__graph.map
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_ranges__inherit__graph.md5
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_ranges__inherit__graph.png
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_std_ecma_matcher-members.html
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_std_ecma_matcher.html
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_std_ecma_matcher__coll__graph.map
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_std_ecma_matcher__coll__graph.md5
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_std_ecma_matcher__coll__graph.png
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_std_ecma_matcher__inherit__graph.map
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_std_ecma_matcher__inherit__graph.md5
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_std_ecma_matcher__inherit__graph.png
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_std_matcher-members.html
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_std_matcher.html
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_std_matcher__coll__graph.map
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_std_matcher__coll__graph.md5
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_std_matcher__coll__graph.png
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_std_matcher__inherit__graph.map
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_std_matcher__inherit__graph.md5
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_std_matcher__inherit__graph.png
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_std_posix_matcher-members.html
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_std_posix_matcher.html
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_std_posix_matcher__coll__graph.map
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_std_posix_matcher__coll__graph.md5
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_std_posix_matcher__coll__graph.png
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_std_posix_matcher__inherit__graph.map
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_std_posix_matcher__inherit__graph.md5
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_std_posix_matcher__inherit__graph.png
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_unicode_1_1_tables-members.html
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_unicode_1_1_tables.html
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_unicode_1_1_tables__coll__graph.map
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_unicode_1_1_tables__coll__graph.md5
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_unicode_1_1_tables__coll__graph.png
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_unicode_1_1_tables__inherit__graph.map
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_unicode_1_1_tables__inherit__graph.md5
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1_unicode_1_1_tables__inherit__graph.png
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1regex__error-members.html
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1regex__error.html
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1regex__error__coll__graph.map
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1regex__error__coll__graph.md5
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1regex__error__coll__graph.png
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1regex__error__inherit__graph.map
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1regex__error__inherit__graph.md5
+${PLIST.doxygen}share/RE-flex/html/classreflex_1_1regex__error__inherit__graph.png
+${PLIST.doxygen}share/RE-flex/html/closed.png
+${PLIST.doxygen}share/RE-flex/html/convert_8h.html
+${PLIST.doxygen}share/RE-flex/html/convert_8h__dep__incl.map
+${PLIST.doxygen}share/RE-flex/html/convert_8h__dep__incl.md5
+${PLIST.doxygen}share/RE-flex/html/convert_8h__dep__incl.png
+${PLIST.doxygen}share/RE-flex/html/convert_8h__incl.map
+${PLIST.doxygen}share/RE-flex/html/convert_8h__incl.md5
+${PLIST.doxygen}share/RE-flex/html/convert_8h__incl.png
+${PLIST.doxygen}share/RE-flex/html/debug_8h.html
+${PLIST.doxygen}share/RE-flex/html/debug_8h__dep__incl.map
+${PLIST.doxygen}share/RE-flex/html/debug_8h__dep__incl.md5
+${PLIST.doxygen}share/RE-flex/html/debug_8h__dep__incl.png
+${PLIST.doxygen}share/RE-flex/html/debug_8h__incl.map
+${PLIST.doxygen}share/RE-flex/html/debug_8h__incl.md5
+${PLIST.doxygen}share/RE-flex/html/debug_8h__incl.png
+${PLIST.doxygen}share/RE-flex/html/dir_000000.html
+${PLIST.doxygen}share/RE-flex/html/dir_000001.html
+${PLIST.doxygen}share/RE-flex/html/dir_000002.html
+${PLIST.doxygen}share/RE-flex/html/dir_000002_000000.html
+${PLIST.doxygen}share/RE-flex/html/dir_000002_dep.map
+${PLIST.doxygen}share/RE-flex/html/dir_000002_dep.md5
+${PLIST.doxygen}share/RE-flex/html/dir_000002_dep.png
+${PLIST.doxygen}share/RE-flex/html/doc.png
+${PLIST.doxygen}share/RE-flex/html/dot_inline_dotgraph_1.png
+${PLIST.doxygen}share/RE-flex/html/dot_inline_dotgraph_2.png
+${PLIST.doxygen}share/RE-flex/html/dot_inline_dotgraph_3.png
+${PLIST.doxygen}share/RE-flex/html/dot_inline_dotgraph_4.png
+${PLIST.doxygen}share/RE-flex/html/doxygen.css
+${PLIST.doxygen}share/RE-flex/html/doxygen.png
+${PLIST.doxygen}share/RE-flex/html/doxygen_content.css
+${PLIST.doxygen}share/RE-flex/html/doxygen_tabs.css
+${PLIST.doxygen}share/RE-flex/html/dynsections.js
+${PLIST.doxygen}share/RE-flex/html/error_8h.html
+${PLIST.doxygen}share/RE-flex/html/error_8h__dep__incl.map
+${PLIST.doxygen}share/RE-flex/html/error_8h__dep__incl.md5
+${PLIST.doxygen}share/RE-flex/html/error_8h__dep__incl.png
+${PLIST.doxygen}share/RE-flex/html/error_8h__incl.map
+${PLIST.doxygen}share/RE-flex/html/error_8h__incl.md5
+${PLIST.doxygen}share/RE-flex/html/error_8h__incl.png
+${PLIST.doxygen}share/RE-flex/html/files.html
+${PLIST.doxygen}share/RE-flex/html/flexlexer_8h.html
+${PLIST.doxygen}share/RE-flex/html/flexlexer_8h__incl.map
+${PLIST.doxygen}share/RE-flex/html/flexlexer_8h__incl.md5
+${PLIST.doxygen}share/RE-flex/html/flexlexer_8h__incl.png
+${PLIST.doxygen}share/RE-flex/html/folderclosed.png
+${PLIST.doxygen}share/RE-flex/html/folderopen.png
+${PLIST.doxygen}share/RE-flex/html/functions.html
+${PLIST.doxygen}share/RE-flex/html/functions_b.html
+${PLIST.doxygen}share/RE-flex/html/functions_c.html
+${PLIST.doxygen}share/RE-flex/html/functions_d.html
+${PLIST.doxygen}share/RE-flex/html/functions_e.html
+${PLIST.doxygen}share/RE-flex/html/functions_enum.html
+${PLIST.doxygen}share/RE-flex/html/functions_eval.html
+${PLIST.doxygen}share/RE-flex/html/functions_f.html
+${PLIST.doxygen}share/RE-flex/html/functions_func.html
+${PLIST.doxygen}share/RE-flex/html/functions_func_b.html
+${PLIST.doxygen}share/RE-flex/html/functions_func_c.html
+${PLIST.doxygen}share/RE-flex/html/functions_func_d.html
+${PLIST.doxygen}share/RE-flex/html/functions_func_e.html
+${PLIST.doxygen}share/RE-flex/html/functions_func_f.html
+${PLIST.doxygen}share/RE-flex/html/functions_func_g.html
+${PLIST.doxygen}share/RE-flex/html/functions_func_h.html
+${PLIST.doxygen}share/RE-flex/html/functions_func_i.html
+${PLIST.doxygen}share/RE-flex/html/functions_func_l.html
+${PLIST.doxygen}share/RE-flex/html/functions_func_m.html
+${PLIST.doxygen}share/RE-flex/html/functions_func_n.html
+${PLIST.doxygen}share/RE-flex/html/functions_func_o.html
+${PLIST.doxygen}share/RE-flex/html/functions_func_p.html
+${PLIST.doxygen}share/RE-flex/html/functions_func_r.html
+${PLIST.doxygen}share/RE-flex/html/functions_func_s.html
+${PLIST.doxygen}share/RE-flex/html/functions_func_t.html
+${PLIST.doxygen}share/RE-flex/html/functions_func_u.html
+${PLIST.doxygen}share/RE-flex/html/functions_func_v.html
+${PLIST.doxygen}share/RE-flex/html/functions_func_w.html
+${PLIST.doxygen}share/RE-flex/html/functions_func_x.html
+${PLIST.doxygen}share/RE-flex/html/functions_func_y.html
+${PLIST.doxygen}share/RE-flex/html/functions_func_~.html
+${PLIST.doxygen}share/RE-flex/html/functions_g.html
+${PLIST.doxygen}share/RE-flex/html/functions_h.html
+${PLIST.doxygen}share/RE-flex/html/functions_i.html
+${PLIST.doxygen}share/RE-flex/html/functions_j.html
+${PLIST.doxygen}share/RE-flex/html/functions_k.html
+${PLIST.doxygen}share/RE-flex/html/functions_l.html
+${PLIST.doxygen}share/RE-flex/html/functions_m.html
+${PLIST.doxygen}share/RE-flex/html/functions_n.html
+${PLIST.doxygen}share/RE-flex/html/functions_o.html
+${PLIST.doxygen}share/RE-flex/html/functions_p.html
+${PLIST.doxygen}share/RE-flex/html/functions_q.html
+${PLIST.doxygen}share/RE-flex/html/functions_r.html
+${PLIST.doxygen}share/RE-flex/html/functions_rela.html
+${PLIST.doxygen}share/RE-flex/html/functions_s.html
+${PLIST.doxygen}share/RE-flex/html/functions_t.html
+${PLIST.doxygen}share/RE-flex/html/functions_type.html
+${PLIST.doxygen}share/RE-flex/html/functions_u.html
+${PLIST.doxygen}share/RE-flex/html/functions_v.html
+${PLIST.doxygen}share/RE-flex/html/functions_vars.html
+${PLIST.doxygen}share/RE-flex/html/functions_vars_b.html
+${PLIST.doxygen}share/RE-flex/html/functions_vars_c.html
+${PLIST.doxygen}share/RE-flex/html/functions_vars_d.html
+${PLIST.doxygen}share/RE-flex/html/functions_vars_e.html
+${PLIST.doxygen}share/RE-flex/html/functions_vars_f.html
+${PLIST.doxygen}share/RE-flex/html/functions_vars_g.html
+${PLIST.doxygen}share/RE-flex/html/functions_vars_h.html
+${PLIST.doxygen}share/RE-flex/html/functions_vars_i.html
+${PLIST.doxygen}share/RE-flex/html/functions_vars_j.html
+${PLIST.doxygen}share/RE-flex/html/functions_vars_k.html
+${PLIST.doxygen}share/RE-flex/html/functions_vars_l.html
+${PLIST.doxygen}share/RE-flex/html/functions_vars_m.html
+${PLIST.doxygen}share/RE-flex/html/functions_vars_n.html
+${PLIST.doxygen}share/RE-flex/html/functions_vars_o.html
+${PLIST.doxygen}share/RE-flex/html/functions_vars_p.html
+${PLIST.doxygen}share/RE-flex/html/functions_vars_q.html
+${PLIST.doxygen}share/RE-flex/html/functions_vars_r.html
+${PLIST.doxygen}share/RE-flex/html/functions_vars_s.html
+${PLIST.doxygen}share/RE-flex/html/functions_vars_t.html
+${PLIST.doxygen}share/RE-flex/html/functions_vars_u.html
+${PLIST.doxygen}share/RE-flex/html/functions_vars_v.html
+${PLIST.doxygen}share/RE-flex/html/functions_vars_w.html
+${PLIST.doxygen}share/RE-flex/html/functions_vars_x.html
+${PLIST.doxygen}share/RE-flex/html/functions_vars_z.html
+${PLIST.doxygen}share/RE-flex/html/functions_w.html
+${PLIST.doxygen}share/RE-flex/html/functions_x.html
+${PLIST.doxygen}share/RE-flex/html/functions_y.html
+${PLIST.doxygen}share/RE-flex/html/functions_z.html
+${PLIST.doxygen}share/RE-flex/html/functions_~.html
+${PLIST.doxygen}share/RE-flex/html/globals.html
+${PLIST.doxygen}share/RE-flex/html/globals_defs.html
+${PLIST.doxygen}share/RE-flex/html/globals_func.html
+${PLIST.doxygen}share/RE-flex/html/globals_vars.html
+${PLIST.doxygen}share/RE-flex/html/graph_legend.html
+${PLIST.doxygen}share/RE-flex/html/graph_legend.md5
+${PLIST.doxygen}share/RE-flex/html/graph_legend.png
+${PLIST.doxygen}share/RE-flex/html/hierarchy.html
+${PLIST.doxygen}share/RE-flex/html/index.html
+${PLIST.doxygen}share/RE-flex/html/index_8md.html
+${PLIST.doxygen}share/RE-flex/html/inherit_graph_0.map
+${PLIST.doxygen}share/RE-flex/html/inherit_graph_0.md5
+${PLIST.doxygen}share/RE-flex/html/inherit_graph_0.png
+${PLIST.doxygen}share/RE-flex/html/inherit_graph_1.map
+${PLIST.doxygen}share/RE-flex/html/inherit_graph_1.md5
+${PLIST.doxygen}share/RE-flex/html/inherit_graph_1.png
+${PLIST.doxygen}share/RE-flex/html/inherit_graph_10.map
+${PLIST.doxygen}share/RE-flex/html/inherit_graph_10.md5
+${PLIST.doxygen}share/RE-flex/html/inherit_graph_10.png
+${PLIST.doxygen}share/RE-flex/html/inherit_graph_11.map
+${PLIST.doxygen}share/RE-flex/html/inherit_graph_11.md5
+${PLIST.doxygen}share/RE-flex/html/inherit_graph_11.png
+${PLIST.doxygen}share/RE-flex/html/inherit_graph_12.map
+${PLIST.doxygen}share/RE-flex/html/inherit_graph_12.md5
+${PLIST.doxygen}share/RE-flex/html/inherit_graph_12.png
+${PLIST.doxygen}share/RE-flex/html/inherit_graph_13.map
+${PLIST.doxygen}share/RE-flex/html/inherit_graph_13.md5
+${PLIST.doxygen}share/RE-flex/html/inherit_graph_13.png
+${PLIST.doxygen}share/RE-flex/html/inherit_graph_14.map
+${PLIST.doxygen}share/RE-flex/html/inherit_graph_14.md5
+${PLIST.doxygen}share/RE-flex/html/inherit_graph_14.png
+${PLIST.doxygen}share/RE-flex/html/inherit_graph_15.map
+${PLIST.doxygen}share/RE-flex/html/inherit_graph_15.md5
+${PLIST.doxygen}share/RE-flex/html/inherit_graph_15.png
+${PLIST.doxygen}share/RE-flex/html/inherit_graph_16.map
+${PLIST.doxygen}share/RE-flex/html/inherit_graph_16.md5
+${PLIST.doxygen}share/RE-flex/html/inherit_graph_16.png
+${PLIST.doxygen}share/RE-flex/html/inherit_graph_17.map
+${PLIST.doxygen}share/RE-flex/html/inherit_graph_17.md5
+${PLIST.doxygen}share/RE-flex/html/inherit_graph_17.png
+${PLIST.doxygen}share/RE-flex/html/inherit_graph_18.map
+${PLIST.doxygen}share/RE-flex/html/inherit_graph_18.md5
+${PLIST.doxygen}share/RE-flex/html/inherit_graph_18.png
+${PLIST.doxygen}share/RE-flex/html/inherit_graph_19.map
+${PLIST.doxygen}share/RE-flex/html/inherit_graph_19.md5
+${PLIST.doxygen}share/RE-flex/html/inherit_graph_19.png
+${PLIST.doxygen}share/RE-flex/html/inherit_graph_2.map
+${PLIST.doxygen}share/RE-flex/html/inherit_graph_2.md5
+${PLIST.doxygen}share/RE-flex/html/inherit_graph_2.png
+${PLIST.doxygen}share/RE-flex/html/inherit_graph_20.map
+${PLIST.doxygen}share/RE-flex/html/inherit_graph_20.md5
+${PLIST.doxygen}share/RE-flex/html/inherit_graph_20.png
+${PLIST.doxygen}share/RE-flex/html/inherit_graph_21.map
+${PLIST.doxygen}share/RE-flex/html/inherit_graph_21.md5
+${PLIST.doxygen}share/RE-flex/html/inherit_graph_21.png
+${PLIST.doxygen}share/RE-flex/html/inherit_graph_22.map
+${PLIST.doxygen}share/RE-flex/html/inherit_graph_22.md5
+${PLIST.doxygen}share/RE-flex/html/inherit_graph_22.png
+${PLIST.doxygen}share/RE-flex/html/inherit_graph_23.map
+${PLIST.doxygen}share/RE-flex/html/inherit_graph_23.md5
+${PLIST.doxygen}share/RE-flex/html/inherit_graph_23.png
+${PLIST.doxygen}share/RE-flex/html/inherit_graph_24.map
+${PLIST.doxygen}share/RE-flex/html/inherit_graph_24.md5
+${PLIST.doxygen}share/RE-flex/html/inherit_graph_24.png
+${PLIST.doxygen}share/RE-flex/html/inherit_graph_25.map
+${PLIST.doxygen}share/RE-flex/html/inherit_graph_25.md5
+${PLIST.doxygen}share/RE-flex/html/inherit_graph_25.png
+${PLIST.doxygen}share/RE-flex/html/inherit_graph_26.map
+${PLIST.doxygen}share/RE-flex/html/inherit_graph_26.md5
+${PLIST.doxygen}share/RE-flex/html/inherit_graph_26.png
+${PLIST.doxygen}share/RE-flex/html/inherit_graph_27.map
+${PLIST.doxygen}share/RE-flex/html/inherit_graph_27.md5
+${PLIST.doxygen}share/RE-flex/html/inherit_graph_27.png
+${PLIST.doxygen}share/RE-flex/html/inherit_graph_28.map
+${PLIST.doxygen}share/RE-flex/html/inherit_graph_28.md5
+${PLIST.doxygen}share/RE-flex/html/inherit_graph_28.png
+${PLIST.doxygen}share/RE-flex/html/inherit_graph_29.map
+${PLIST.doxygen}share/RE-flex/html/inherit_graph_29.md5
+${PLIST.doxygen}share/RE-flex/html/inherit_graph_29.png
+${PLIST.doxygen}share/RE-flex/html/inherit_graph_3.map
+${PLIST.doxygen}share/RE-flex/html/inherit_graph_3.md5
+${PLIST.doxygen}share/RE-flex/html/inherit_graph_3.png
+${PLIST.doxygen}share/RE-flex/html/inherit_graph_30.map
+${PLIST.doxygen}share/RE-flex/html/inherit_graph_30.md5
+${PLIST.doxygen}share/RE-flex/html/inherit_graph_30.png
+${PLIST.doxygen}share/RE-flex/html/inherit_graph_31.map
+${PLIST.doxygen}share/RE-flex/html/inherit_graph_31.md5
+${PLIST.doxygen}share/RE-flex/html/inherit_graph_31.png
+${PLIST.doxygen}share/RE-flex/html/inherit_graph_32.map
+${PLIST.doxygen}share/RE-flex/html/inherit_graph_32.md5
+${PLIST.doxygen}share/RE-flex/html/inherit_graph_32.png
+${PLIST.doxygen}share/RE-flex/html/inherit_graph_33.map
+${PLIST.doxygen}share/RE-flex/html/inherit_graph_33.md5
+${PLIST.doxygen}share/RE-flex/html/inherit_graph_33.png
+${PLIST.doxygen}share/RE-flex/html/inherit_graph_34.map
+${PLIST.doxygen}share/RE-flex/html/inherit_graph_34.md5
+${PLIST.doxygen}share/RE-flex/html/inherit_graph_34.png
+${PLIST.doxygen}share/RE-flex/html/inherit_graph_35.map
+${PLIST.doxygen}share/RE-flex/html/inherit_graph_35.md5
+${PLIST.doxygen}share/RE-flex/html/inherit_graph_35.png
+${PLIST.doxygen}share/RE-flex/html/inherit_graph_4.map
+${PLIST.doxygen}share/RE-flex/html/inherit_graph_4.md5
+${PLIST.doxygen}share/RE-flex/html/inherit_graph_4.png
+${PLIST.doxygen}share/RE-flex/html/inherit_graph_5.map
+${PLIST.doxygen}share/RE-flex/html/inherit_graph_5.md5
+${PLIST.doxygen}share/RE-flex/html/inherit_graph_5.png
+${PLIST.doxygen}share/RE-flex/html/inherit_graph_6.map
+${PLIST.doxygen}share/RE-flex/html/inherit_graph_6.md5
+${PLIST.doxygen}share/RE-flex/html/inherit_graph_6.png
+${PLIST.doxygen}share/RE-flex/html/inherit_graph_7.map
+${PLIST.doxygen}share/RE-flex/html/inherit_graph_7.md5
+${PLIST.doxygen}share/RE-flex/html/inherit_graph_7.png
+${PLIST.doxygen}share/RE-flex/html/inherit_graph_8.map
+${PLIST.doxygen}share/RE-flex/html/inherit_graph_8.md5
+${PLIST.doxygen}share/RE-flex/html/inherit_graph_8.png
+${PLIST.doxygen}share/RE-flex/html/inherit_graph_9.map
+${PLIST.doxygen}share/RE-flex/html/inherit_graph_9.md5
+${PLIST.doxygen}share/RE-flex/html/inherit_graph_9.png
+${PLIST.doxygen}share/RE-flex/html/inherits.html
+${PLIST.doxygen}share/RE-flex/html/input_8h.html
+${PLIST.doxygen}share/RE-flex/html/input_8h__dep__incl.map
+${PLIST.doxygen}share/RE-flex/html/input_8h__dep__incl.md5
+${PLIST.doxygen}share/RE-flex/html/input_8h__dep__incl.png
+${PLIST.doxygen}share/RE-flex/html/input_8h__incl.map
+${PLIST.doxygen}share/RE-flex/html/input_8h__incl.md5
+${PLIST.doxygen}share/RE-flex/html/input_8h__incl.png
+${PLIST.doxygen}share/RE-flex/html/jquery.js
+${PLIST.doxygen}share/RE-flex/html/matcher_8h.html
+${PLIST.doxygen}share/RE-flex/html/matcher_8h__incl.map
+${PLIST.doxygen}share/RE-flex/html/matcher_8h__incl.md5
+${PLIST.doxygen}share/RE-flex/html/matcher_8h__incl.png
+${PLIST.doxygen}share/RE-flex/html/menu.js
+${PLIST.doxygen}share/RE-flex/html/menudata.js
+${PLIST.doxygen}share/RE-flex/html/namespacemembers.html
+${PLIST.doxygen}share/RE-flex/html/namespacemembers_func.html
+${PLIST.doxygen}share/RE-flex/html/namespacemembers_type.html
+${PLIST.doxygen}share/RE-flex/html/namespacemembers_vars.html
+${PLIST.doxygen}share/RE-flex/html/namespacereflex.html
+${PLIST.doxygen}share/RE-flex/html/namespacereflex_1_1_posix.html
+${PLIST.doxygen}share/RE-flex/html/namespacereflex_1_1_unicode.html
+${PLIST.doxygen}share/RE-flex/html/namespacereflex_1_1convert__flag.html
+${PLIST.doxygen}share/RE-flex/html/namespaces.html
+${PLIST.doxygen}share/RE-flex/html/nav_f.png
+${PLIST.doxygen}share/RE-flex/html/nav_g.png
+${PLIST.doxygen}share/RE-flex/html/nav_h.png
+${PLIST.doxygen}share/RE-flex/html/open.png
+${PLIST.doxygen}share/RE-flex/html/pattern_8h.html
+${PLIST.doxygen}share/RE-flex/html/pattern_8h__dep__incl.map
+${PLIST.doxygen}share/RE-flex/html/pattern_8h__dep__incl.md5
+${PLIST.doxygen}share/RE-flex/html/pattern_8h__dep__incl.png
+${PLIST.doxygen}share/RE-flex/html/pattern_8h__incl.map
+${PLIST.doxygen}share/RE-flex/html/pattern_8h__incl.md5
+${PLIST.doxygen}share/RE-flex/html/pattern_8h__incl.png
+${PLIST.doxygen}share/RE-flex/html/pcre2matcher_8h.html
+${PLIST.doxygen}share/RE-flex/html/pcre2matcher_8h__incl.map
+${PLIST.doxygen}share/RE-flex/html/pcre2matcher_8h__incl.md5
+${PLIST.doxygen}share/RE-flex/html/pcre2matcher_8h__incl.png
+${PLIST.doxygen}share/RE-flex/html/posix_8h.html
+${PLIST.doxygen}share/RE-flex/html/posix_8h__dep__incl.map
+${PLIST.doxygen}share/RE-flex/html/posix_8h__dep__incl.md5
+${PLIST.doxygen}share/RE-flex/html/posix_8h__dep__incl.png
+${PLIST.doxygen}share/RE-flex/html/posix_8h__incl.map
+${PLIST.doxygen}share/RE-flex/html/posix_8h__incl.md5
+${PLIST.doxygen}share/RE-flex/html/posix_8h__incl.png
+${PLIST.doxygen}share/RE-flex/html/ranges_8h.html
+${PLIST.doxygen}share/RE-flex/html/ranges_8h__dep__incl.map
+${PLIST.doxygen}share/RE-flex/html/ranges_8h__dep__incl.md5
+${PLIST.doxygen}share/RE-flex/html/ranges_8h__dep__incl.png
+${PLIST.doxygen}share/RE-flex/html/ranges_8h__incl.map
+${PLIST.doxygen}share/RE-flex/html/ranges_8h__incl.md5
+${PLIST.doxygen}share/RE-flex/html/ranges_8h__incl.png
+${PLIST.doxygen}share/RE-flex/html/reflex-logo.png
+${PLIST.doxygen}share/RE-flex/html/reflex_8cpp.html
+${PLIST.doxygen}share/RE-flex/html/reflex_8cpp__incl.map
+${PLIST.doxygen}share/RE-flex/html/reflex_8cpp__incl.md5
+${PLIST.doxygen}share/RE-flex/html/reflex_8cpp__incl.png
+${PLIST.doxygen}share/RE-flex/html/reflex_8h.html
+${PLIST.doxygen}share/RE-flex/html/reflex_8h__dep__incl.map
+${PLIST.doxygen}share/RE-flex/html/reflex_8h__dep__incl.md5
+${PLIST.doxygen}share/RE-flex/html/reflex_8h__dep__incl.png
+${PLIST.doxygen}share/RE-flex/html/reflex_8h__incl.map
+${PLIST.doxygen}share/RE-flex/html/reflex_8h__incl.md5
+${PLIST.doxygen}share/RE-flex/html/reflex_8h__incl.png
+${PLIST.doxygen}share/RE-flex/html/setop_8h.html
+${PLIST.doxygen}share/RE-flex/html/setop_8h__dep__incl.map
+${PLIST.doxygen}share/RE-flex/html/setop_8h__dep__incl.md5
+${PLIST.doxygen}share/RE-flex/html/setop_8h__dep__incl.png
+${PLIST.doxygen}share/RE-flex/html/splitbar.png
+${PLIST.doxygen}share/RE-flex/html/stdmatcher_8h.html
+${PLIST.doxygen}share/RE-flex/html/stdmatcher_8h__incl.map
+${PLIST.doxygen}share/RE-flex/html/stdmatcher_8h__incl.md5
+${PLIST.doxygen}share/RE-flex/html/stdmatcher_8h__incl.png
+${PLIST.doxygen}share/RE-flex/html/struct_reflex_1_1_code-members.html
+${PLIST.doxygen}share/RE-flex/html/struct_reflex_1_1_code.html
+${PLIST.doxygen}share/RE-flex/html/struct_reflex_1_1_code__coll__graph.map
+${PLIST.doxygen}share/RE-flex/html/struct_reflex_1_1_code__coll__graph.md5
+${PLIST.doxygen}share/RE-flex/html/struct_reflex_1_1_code__coll__graph.png
+${PLIST.doxygen}share/RE-flex/html/struct_reflex_1_1_library-members.html
+${PLIST.doxygen}share/RE-flex/html/struct_reflex_1_1_library.html
+${PLIST.doxygen}share/RE-flex/html/struct_reflex_1_1_rule-members.html
+${PLIST.doxygen}share/RE-flex/html/struct_reflex_1_1_rule.html
+${PLIST.doxygen}share/RE-flex/html/struct_reflex_1_1_rule__coll__graph.map
+${PLIST.doxygen}share/RE-flex/html/struct_reflex_1_1_rule__coll__graph.md5
+${PLIST.doxygen}share/RE-flex/html/struct_reflex_1_1_rule__coll__graph.png
+${PLIST.doxygen}share/RE-flex/html/structreflex_1_1_abstract_matcher_1_1_const-members.html
+${PLIST.doxygen}share/RE-flex/html/structreflex_1_1_abstract_matcher_1_1_const.html
+${PLIST.doxygen}share/RE-flex/html/structreflex_1_1_abstract_matcher_1_1_option-members.html
+${PLIST.doxygen}share/RE-flex/html/structreflex_1_1_abstract_matcher_1_1_option.html
+${PLIST.doxygen}share/RE-flex/html/structreflex_1_1_bits_1_1_bitref-members.html
+${PLIST.doxygen}share/RE-flex/html/structreflex_1_1_bits_1_1_bitref.html
+${PLIST.doxygen}share/RE-flex/html/structreflex_1_1_input_1_1file__encoding-members.html
+${PLIST.doxygen}share/RE-flex/html/structreflex_1_1_input_1_1file__encoding.html
+${PLIST.doxygen}share/RE-flex/html/structreflex_1_1_matcher_1_1_f_s_m-members.html
+${PLIST.doxygen}share/RE-flex/html/structreflex_1_1_matcher_1_1_f_s_m.html
+${PLIST.doxygen}share/RE-flex/html/structreflex_1_1_pattern_1_1_chars-members.html
+${PLIST.doxygen}share/RE-flex/html/structreflex_1_1_pattern_1_1_chars.html
+${PLIST.doxygen}share/RE-flex/html/structreflex_1_1_pattern_1_1_const-members.html
+${PLIST.doxygen}share/RE-flex/html/structreflex_1_1_pattern_1_1_const.html
+${PLIST.doxygen}share/RE-flex/html/structreflex_1_1_pattern_1_1_d_f_a-members.html
+${PLIST.doxygen}share/RE-flex/html/structreflex_1_1_pattern_1_1_d_f_a.html
+${PLIST.doxygen}share/RE-flex/html/structreflex_1_1_pattern_1_1_d_f_a_1_1_state-members.html
+${PLIST.doxygen}share/RE-flex/html/structreflex_1_1_pattern_1_1_d_f_a_1_1_state.html
+${PLIST.doxygen}share/RE-flex/html/structreflex_1_1_pattern_1_1_d_f_a_1_1_state__coll__graph.map
+${PLIST.doxygen}share/RE-flex/html/structreflex_1_1_pattern_1_1_d_f_a_1_1_state__coll__graph.md5
+${PLIST.doxygen}share/RE-flex/html/structreflex_1_1_pattern_1_1_d_f_a_1_1_state__coll__graph.png
+${PLIST.doxygen}share/RE-flex/html/structreflex_1_1_pattern_1_1_d_f_a_1_1_state__inherit__graph.map
+${PLIST.doxygen}share/RE-flex/html/structreflex_1_1_pattern_1_1_d_f_a_1_1_state__inherit__graph.md5
+${PLIST.doxygen}share/RE-flex/html/structreflex_1_1_pattern_1_1_d_f_a_1_1_state__inherit__graph.png
+${PLIST.doxygen}share/RE-flex/html/structreflex_1_1_pattern_1_1_d_f_a__coll__graph.map
+${PLIST.doxygen}share/RE-flex/html/structreflex_1_1_pattern_1_1_d_f_a__coll__graph.md5
+${PLIST.doxygen}share/RE-flex/html/structreflex_1_1_pattern_1_1_d_f_a__coll__graph.png
+${PLIST.doxygen}share/RE-flex/html/structreflex_1_1_pattern_1_1_option-members.html
+${PLIST.doxygen}share/RE-flex/html/structreflex_1_1_pattern_1_1_option.html
+${PLIST.doxygen}share/RE-flex/html/structreflex_1_1_pattern_1_1_option__coll__graph.map
+${PLIST.doxygen}share/RE-flex/html/structreflex_1_1_pattern_1_1_option__coll__graph.md5
+${PLIST.doxygen}share/RE-flex/html/structreflex_1_1_pattern_1_1_option__coll__graph.png
+${PLIST.doxygen}share/RE-flex/html/structreflex_1_1_pattern_1_1_position-members.html
+${PLIST.doxygen}share/RE-flex/html/structreflex_1_1_pattern_1_1_position.html
+${PLIST.doxygen}share/RE-flex/html/structreflex_1_1_pattern_1_1_tree-members.html
+${PLIST.doxygen}share/RE-flex/html/structreflex_1_1_pattern_1_1_tree.html
+${PLIST.doxygen}share/RE-flex/html/structreflex_1_1_pattern_1_1_tree_1_1_node-members.html
+${PLIST.doxygen}share/RE-flex/html/structreflex_1_1_pattern_1_1_tree_1_1_node.html
+${PLIST.doxygen}share/RE-flex/html/structreflex_1_1_pattern_1_1_tree_1_1_node__coll__graph.map
+${PLIST.doxygen}share/RE-flex/html/structreflex_1_1_pattern_1_1_tree_1_1_node__coll__graph.md5
+${PLIST.doxygen}share/RE-flex/html/structreflex_1_1_pattern_1_1_tree_1_1_node__coll__graph.png
+${PLIST.doxygen}share/RE-flex/html/structreflex_1_1_pattern_1_1_tree__coll__graph.map
+${PLIST.doxygen}share/RE-flex/html/structreflex_1_1_pattern_1_1_tree__coll__graph.md5
+${PLIST.doxygen}share/RE-flex/html/structreflex_1_1_pattern_1_1_tree__coll__graph.png
+${PLIST.doxygen}share/RE-flex/html/structreflex_1_1_posix_1_1_tables_1_1lt-members.html
+${PLIST.doxygen}share/RE-flex/html/structreflex_1_1_posix_1_1_tables_1_1lt.html
+${PLIST.doxygen}share/RE-flex/html/structreflex_1_1_type_op-members.html
+${PLIST.doxygen}share/RE-flex/html/structreflex_1_1_type_op.html
+${PLIST.doxygen}share/RE-flex/html/structreflex_1_1_type_op_3_01const_01_t_01_4-members.html
+${PLIST.doxygen}share/RE-flex/html/structreflex_1_1_type_op_3_01const_01_t_01_4.html
+${PLIST.doxygen}share/RE-flex/html/structreflex_1_1lazy__intersection-members.html
+${PLIST.doxygen}share/RE-flex/html/structreflex_1_1lazy__intersection.html
+${PLIST.doxygen}share/RE-flex/html/structreflex_1_1lazy__intersection_1_1iterator-members.html
+${PLIST.doxygen}share/RE-flex/html/structreflex_1_1lazy__intersection_1_1iterator.html
+${PLIST.doxygen}share/RE-flex/html/structreflex_1_1lazy__union-members.html
+${PLIST.doxygen}share/RE-flex/html/structreflex_1_1lazy__union.html
+${PLIST.doxygen}share/RE-flex/html/structreflex_1_1lazy__union_1_1iterator-members.html
+${PLIST.doxygen}share/RE-flex/html/structreflex_1_1lazy__union_1_1iterator.html
+${PLIST.doxygen}share/RE-flex/html/structreflex_1_1range__compare-members.html
+${PLIST.doxygen}share/RE-flex/html/structreflex_1_1range__compare.html
+${PLIST.doxygen}share/RE-flex/html/sync_off.png
+${PLIST.doxygen}share/RE-flex/html/sync_on.png
+${PLIST.doxygen}share/RE-flex/html/tab_a.png
+${PLIST.doxygen}share/RE-flex/html/tab_b.png
+${PLIST.doxygen}share/RE-flex/html/tab_h.png
+${PLIST.doxygen}share/RE-flex/html/tab_s.png
+${PLIST.doxygen}share/RE-flex/html/tabs.css
+${PLIST.doxygen}share/RE-flex/html/timer_8h.html
+${PLIST.doxygen}share/RE-flex/html/timer_8h__incl.map
+${PLIST.doxygen}share/RE-flex/html/timer_8h__incl.md5
+${PLIST.doxygen}share/RE-flex/html/timer_8h__incl.png
+${PLIST.doxygen}share/RE-flex/html/traits_8h.html
+${PLIST.doxygen}share/RE-flex/html/traits_8h__dep__incl.map
+${PLIST.doxygen}share/RE-flex/html/traits_8h__dep__incl.md5
+${PLIST.doxygen}share/RE-flex/html/traits_8h__dep__incl.png
+${PLIST.doxygen}share/RE-flex/html/unicode_8h.html
+${PLIST.doxygen}share/RE-flex/html/unicode_8h__incl.map
+${PLIST.doxygen}share/RE-flex/html/unicode_8h__incl.md5
+${PLIST.doxygen}share/RE-flex/html/unicode_8h__incl.png
+${PLIST.doxygen}share/RE-flex/html/utf8_8h.html
+${PLIST.doxygen}share/RE-flex/html/utf8_8h__dep__incl.map
+${PLIST.doxygen}share/RE-flex/html/utf8_8h__dep__incl.md5
+${PLIST.doxygen}share/RE-flex/html/utf8_8h__dep__incl.png
+${PLIST.doxygen}share/RE-flex/html/utf8_8h__incl.map
+${PLIST.doxygen}share/RE-flex/html/utf8_8h__incl.md5
+${PLIST.doxygen}share/RE-flex/html/utf8_8h__incl.png
+${PLIST.examples}share/RE-flex/examples/Make
+${PLIST.examples}share/RE-flex/examples/Makefile.am
+${PLIST.examples}share/RE-flex/examples/Makefile.in
+${PLIST.examples}share/RE-flex/examples/README.md
+${PLIST.examples}share/RE-flex/examples/braille.l
+${PLIST.examples}share/RE-flex/examples/calc.l
+${PLIST.examples}share/RE-flex/examples/calc.test
+${PLIST.examples}share/RE-flex/examples/calc.y
+${PLIST.examples}share/RE-flex/examples/cards.cpp
+${PLIST.examples}share/RE-flex/examples/cdefs.l
+${PLIST.examples}share/RE-flex/examples/cow.l
+${PLIST.examples}share/RE-flex/examples/cows.l
+${PLIST.examples}share/RE-flex/examples/csv.l
+${PLIST.examples}share/RE-flex/examples/ctokens.l
+${PLIST.examples}share/RE-flex/examples/cvt2utf.cpp
+${PLIST.examples}share/RE-flex/examples/dos.l
+${PLIST.examples}share/RE-flex/examples/echo.l
+${PLIST.examples}share/RE-flex/examples/example.json
+${PLIST.examples}share/RE-flex/examples/example.yaml
+${PLIST.examples}share/RE-flex/examples/fastfind.l
+${PLIST.examples}share/RE-flex/examples/fastsearch.cpp
+${PLIST.examples}share/RE-flex/examples/fastsearch_fsm.cpp
+${PLIST.examples}share/RE-flex/examples/flexexample1.l
+${PLIST.examples}share/RE-flex/examples/flexexample10.l
+${PLIST.examples}share/RE-flex/examples/flexexample10.test
+${PLIST.examples}share/RE-flex/examples/flexexample10a.test
+${PLIST.examples}share/RE-flex/examples/flexexample10b.test
+${PLIST.examples}share/RE-flex/examples/flexexample11.lxx
+${PLIST.examples}share/RE-flex/examples/flexexample11.test
+${PLIST.examples}share/RE-flex/examples/flexexample11.yxx
+${PLIST.examples}share/RE-flex/examples/flexexample2.l
+${PLIST.examples}share/RE-flex/examples/flexexample3.l
+${PLIST.examples}share/RE-flex/examples/flexexample3.lxx
+${PLIST.examples}share/RE-flex/examples/flexexample3.test
+${PLIST.examples}share/RE-flex/examples/flexexample3.y
+${PLIST.examples}share/RE-flex/examples/flexexample3.yxx
+${PLIST.examples}share/RE-flex/examples/flexexample4.l
+${PLIST.examples}share/RE-flex/examples/flexexample4.lxx
+${PLIST.examples}share/RE-flex/examples/flexexample4.test
+${PLIST.examples}share/RE-flex/examples/flexexample4.y
+${PLIST.examples}share/RE-flex/examples/flexexample4.yxx
+${PLIST.examples}share/RE-flex/examples/flexexample5.l
+${PLIST.examples}share/RE-flex/examples/flexexample5.lxx
+${PLIST.examples}share/RE-flex/examples/flexexample5.test
+${PLIST.examples}share/RE-flex/examples/flexexample5.y
+${PLIST.examples}share/RE-flex/examples/flexexample5.yxx
+${PLIST.examples}share/RE-flex/examples/flexexample6.l
+${PLIST.examples}share/RE-flex/examples/flexexample7.l
+${PLIST.examples}share/RE-flex/examples/flexexample7.lxx
+${PLIST.examples}share/RE-flex/examples/flexexample7.test
+${PLIST.examples}share/RE-flex/examples/flexexample7.y
+${PLIST.examples}share/RE-flex/examples/flexexample7.yxx
+${PLIST.examples}share/RE-flex/examples/flexexample8.l
+${PLIST.examples}share/RE-flex/examples/flexexample8.lxx
+${PLIST.examples}share/RE-flex/examples/flexexample8.test
+${PLIST.examples}share/RE-flex/examples/flexexample8.y
+${PLIST.examples}share/RE-flex/examples/flexexample8.yxx
+${PLIST.examples}share/RE-flex/examples/flexexample9.lxx
+${PLIST.examples}share/RE-flex/examples/flexexample9.test
+${PLIST.examples}share/RE-flex/examples/flexexample9.yxx
+${PLIST.examples}share/RE-flex/examples/gz.l
+${PLIST.examples}share/RE-flex/examples/indent.l
+${PLIST.examples}share/RE-flex/examples/indent.test
+${PLIST.examples}share/RE-flex/examples/indent1.l
+${PLIST.examples}share/RE-flex/examples/indent2.l
+${PLIST.examples}share/RE-flex/examples/jdefs.l
+${PLIST.examples}share/RE-flex/examples/json.l
+${PLIST.examples}share/RE-flex/examples/jtokens.l
+${PLIST.examples}share/RE-flex/examples/mmap.l
+${PLIST.examples}share/RE-flex/examples/pdefs.l
+${PLIST.examples}share/RE-flex/examples/ptokens.l
+${PLIST.examples}share/RE-flex/examples/readline.l
+${PLIST.examples}share/RE-flex/examples/reflexexample10.l
+${PLIST.examples}share/RE-flex/examples/reflexexample11.lxx
+${PLIST.examples}share/RE-flex/examples/reflexexample11.test
+${PLIST.examples}share/RE-flex/examples/reflexexample11.yxx
+${PLIST.examples}share/RE-flex/examples/reflexexample3.l
+${PLIST.examples}share/RE-flex/examples/reflexexample3.lxx
+${PLIST.examples}share/RE-flex/examples/reflexexample3.y
+${PLIST.examples}share/RE-flex/examples/reflexexample3.yxx
+${PLIST.examples}share/RE-flex/examples/reflexexample4.l
+${PLIST.examples}share/RE-flex/examples/reflexexample4.lxx
+${PLIST.examples}share/RE-flex/examples/reflexexample5.l
+${PLIST.examples}share/RE-flex/examples/reflexexample5.lxx
+${PLIST.examples}share/RE-flex/examples/reflexexample6.l
+${PLIST.examples}share/RE-flex/examples/reflexexample7.l
+${PLIST.examples}share/RE-flex/examples/reflexexample7.lxx
+${PLIST.examples}share/RE-flex/examples/reflexexample8.l
+${PLIST.examples}share/RE-flex/examples/reflexexample8.lxx
+${PLIST.examples}share/RE-flex/examples/reflexexample9.lxx
+${PLIST.examples}share/RE-flex/examples/scanstrings.l
+${PLIST.examples}share/RE-flex/examples/tag.l
+${PLIST.examples}share/RE-flex/examples/tag_lazy.l
+${PLIST.examples}share/RE-flex/examples/tag_lazystates.l
+${PLIST.examples}share/RE-flex/examples/tag_tidy.l
+${PLIST.examples}share/RE-flex/examples/tag_unicode.l
+${PLIST.examples}share/RE-flex/examples/ugrep.cpp
+${PLIST.examples}share/RE-flex/examples/unicode.l
+${PLIST.examples}share/RE-flex/examples/url_boost.cpp
+${PLIST.examples}share/RE-flex/examples/url_pcre2.cpp
+${PLIST.examples}share/RE-flex/examples/wc.l
+${PLIST.examples}share/RE-flex/examples/wcpp.l
+${PLIST.examples}share/RE-flex/examples/wcu.l
+${PLIST.examples}share/RE-flex/examples/wcwc.l
+${PLIST.examples}share/RE-flex/examples/yaml.l
+${PLIST.examples}share/RE-flex/examples/yyscanstrings.l
Index: pkgsrc/devel/RE-flex/buildlink3.mk
diff -u /dev/null pkgsrc/devel/RE-flex/buildlink3.mk:1.1
--- /dev/null   Mon Jun 15 15:11:50 2020
+++ pkgsrc/devel/RE-flex/buildlink3.mk  Mon Jun 15 15:11:50 2020
@@ -0,0 +1,13 @@
+# $NetBSD: buildlink3.mk,v 1.1 2020/06/15 15:11:50 scole Exp $
+#
+
+BUILDLINK_TREE+=       RE-flex
+
+.if !defined(RE_FLEX_BUILDLINK3_MK)
+RE_FLEX_BUILDLINK3_MK:=
+
+BUILDLINK_API_DEPENDS.RE-flex+=        RE-flex>=2.0.1
+BUILDLINK_PKGSRCDIR.RE-flex?=  ../../devel/RE-flex
+.endif # RE_FLEX_BUILDLINK3_MK
+
+BUILDLINK_TREE+=       -RE-flex
Index: pkgsrc/devel/RE-flex/distinfo
diff -u /dev/null pkgsrc/devel/RE-flex/distinfo:1.1
--- /dev/null   Mon Jun 15 15:11:50 2020
+++ pkgsrc/devel/RE-flex/distinfo       Mon Jun 15 15:11:50 2020
@@ -0,0 +1,9 @@
+$NetBSD: distinfo,v 1.1 2020/06/15 15:11:50 scole Exp $
+
+SHA1 (RE-flex/v2.0.1.tar.gz) = 839cd4f386bb39294f8a19e6967d7cd078fd1267
+RMD160 (RE-flex/v2.0.1.tar.gz) = ce9ae45dd5637d992617958f8b3408f6794a4eb1
+SHA512 (RE-flex/v2.0.1.tar.gz) = 6f02c67c9d27fd407866cc7843881acd9ea9b1d973efca6150d0a2fa6ee53e27f269409e5dde66065396e8334fdf912082d4c7780e2087e31a6cbc43c99f34d0
+Size (RE-flex/v2.0.1.tar.gz) = 5686909 bytes
+SHA1 (patch-examples_gz.l) = 09e92adbd4f6aa0b8fa358d6c0fc4778a67209fd
+SHA1 (patch-lib_Makefile.in) = d7ab58a8af42add67be3ba99d5e78db2a8299e00
+SHA1 (patch-src_Makefile.in) = 5e624262cc0b6fe2126dd44865bad7d0d954cad3
Index: pkgsrc/devel/RE-flex/options.mk
diff -u /dev/null pkgsrc/devel/RE-flex/options.mk:1.1
--- /dev/null   Mon Jun 15 15:11:50 2020
+++ pkgsrc/devel/RE-flex/options.mk     Mon Jun 15 15:11:50 2020
@@ -0,0 +1,55 @@
+# $NetBSD: options.mk,v 1.1 2020/06/15 15:11:50 scole Exp $
+
+PKG_OPTIONS_VAR=       PKG_OPTIONS.RE_flex
+PKG_SUPPORTED_OPTIONS= cpu-optimization doxygen examples
+PKG_SUGGESTED_OPTIONS= cpu-optimization
+
+.include "../../mk/bsd.options.mk"
+
+# XXX don't build with cpu optimizations detected during configure
+.if empty(PKG_OPTIONS:Mcpu-optimization)
+CONFIGURE_ARGS+=       --disable-avx
+CONFIGURE_ARGS+=       --disable-sse2
+CONFIGURE_ARGS+=       --disable-neon
+.endif
+
+# build and install html docs
+PLIST_VARS+=           doxygen
+.if !empty(PKG_OPTIONS:Mdoxygen)
+PLIST.doxygen=         yes
+INSTALLATION_DIRS+=    share/RE-flex/html
+TOOL_DEPENDS+=         doxygen-[0-9]*:../../devel/doxygen
+
+post-configure:
+       cd ${WRKSRC} && ${MAKE_PROGRAM} doc/html
+
+post-install-doxygen:
+       ${INSTALL_DATA} ${WRKSRC}/doc/html/* \
+               ${DESTDIR}${PREFIX}/share/RE-flex/html
+
+.else
+post-install-doxygen:
+       # do nothing
+.endif
+
+# copy example sources to .../share directory
+PLIST_VARS+=           examples
+.if !empty(PKG_OPTIONS:Mexamples)
+PLIST.examples=                yes
+INSTALLATION_DIRS+=    share/RE-flex/examples
+DEPENDS+=              bison-[0-9]*:../../devel/bison
+
+post-install-examples:
+.for f in Make Makefile.am Makefile.in README.md
+       ${INSTALL_DATA} ${WRKSRC}/examples/${f} \
+               ${DESTDIR}${PREFIX}/share/RE-flex/examples
+.endfor
+.for f in cpp json l lxx test y yaml yxx
+       ${INSTALL_DATA} ${WRKSRC}/examples/*\.${f} \
+               ${DESTDIR}${PREFIX}/share/RE-flex/examples
+.endfor
+
+.else
+post-install-examples:
+       # do nothing
+.endif

Index: pkgsrc/devel/RE-flex/patches/patch-examples_gz.l
diff -u /dev/null pkgsrc/devel/RE-flex/patches/patch-examples_gz.l:1.1
--- /dev/null   Mon Jun 15 15:11:50 2020
+++ pkgsrc/devel/RE-flex/patches/patch-examples_gz.l    Mon Jun 15 15:11:50 2020
@@ -0,0 +1,14 @@
+$NetBSD: patch-examples_gz.l,v 1.1 2020/06/15 15:11:50 scole Exp $
+
+include unistd.h for dup()
+
+--- examples/gz.l.orig 2020-05-25 23:34:27.000000000 +0000
++++ examples/gz.l
+@@ -10,6 +10,7 @@
+ #include <streambuf>
+ #include <cstring>
+ #include <zlib.h>
++#include <unistd.h>
+ 
+ #ifndef Z_BUF_LEN
+ #define Z_BUF_LEN (65536)
Index: pkgsrc/devel/RE-flex/patches/patch-lib_Makefile.in
diff -u /dev/null pkgsrc/devel/RE-flex/patches/patch-lib_Makefile.in:1.1
--- /dev/null   Mon Jun 15 15:11:50 2020
+++ pkgsrc/devel/RE-flex/patches/patch-lib_Makefile.in  Mon Jun 15 15:11:50 2020
@@ -0,0 +1,47 @@
+$NetBSD: patch-lib_Makefile.in,v 1.1 2020/06/15 15:11:50 scole Exp $
+
+use libtool
+
+--- lib/Makefile.in.orig       2020-05-25 23:34:27.000000000 +0000
++++ lib/Makefile.in
+@@ -241,12 +241,13 @@ AUTOCONF = @AUTOCONF@
+ AUTOHEADER = @AUTOHEADER@
+ AUTOMAKE = @AUTOMAKE@
+ AWK = @AWK@
+-CC = @CC@
++CC=   $(LIBTOOL) --mode=compile @CC@
+ CCDEPMODE = @CCDEPMODE@
+ CFLAGS = @CFLAGS@
+ CPP = @CPP@
+ CPPFLAGS = @CPPFLAGS@
+-CXX = @CXX@
++CXXORIG = @CXX@
++CXX=  $(LIBTOOL) --mode=compile @CXX@
+ CXXCPP = @CXXCPP@
+ CXXDEPMODE = @CXXDEPMODE@
+ CXXFLAGS = @CXXFLAGS@
+@@ -416,15 +417,15 @@ uninstall-libLIBRARIES:
+ clean-libLIBRARIES:
+       -test -z "$(lib_LIBRARIES)" || rm -f $(lib_LIBRARIES)
+ 
+-libreflex.a: $(libreflex_a_OBJECTS) $(libreflex_a_DEPENDENCIES) $(EXTRA_libreflex_a_DEPENDENCIES) 
+-      $(AM_V_at)-rm -f libreflex.a
+-      $(AM_V_AR)$(libreflex_a_AR) libreflex.a $(libreflex_a_OBJECTS) $(libreflex_a_LIBADD)
+-      $(AM_V_at)$(RANLIB) libreflex.a
+-
+-libreflexmin.a: $(libreflexmin_a_OBJECTS) $(libreflexmin_a_DEPENDENCIES) $(EXTRA_libreflexmin_a_DEPENDENCIES) 
+-      $(AM_V_at)-rm -f libreflexmin.a
+-      $(AM_V_AR)$(libreflexmin_a_AR) libreflexmin.a $(libreflexmin_a_OBJECTS) $(libreflexmin_a_LIBADD)
+-      $(AM_V_at)$(RANLIB) libreflexmin.a
++libreflex.a:  $(libreflex_a_OBJECTS) $(libreflex_a_DEPENDENCIES) $(EXTRA_libreflex_a_DEPENDENCIES) 
++      $(AM_V_at)-rm -f libreflex.a libreflex.la
++      $(LIBTOOL) --tag=CXX --mode=link $(CXXORIG) -o libreflex.la $(libreflex_a_OBJECTS:.o=.lo) \
++              -rpath $(PREFIX)/lib -version-info 0:0
++
++libreflexmin.a:  $(libreflexmin_a_OBJECTS) $(libreflexmin_a_DEPENDENCIES) $(EXTRA_libreflexmin_a_DEPENDENCIES) 
++      $(AM_V_at)-rm -f libreflexmin.a libreflexmin.la
++      $(LIBTOOL) --tag=CXX --mode=link $(CXXORIG) -o libreflexmin.la $(libreflexmin_a_OBJECTS:.o=.lo) \
++              -rpath $(PREFIX)/lib -version-info 0:0
+ 
+ mostlyclean-compile:
+       -rm -f *.$(OBJEXT)
Index: pkgsrc/devel/RE-flex/patches/patch-src_Makefile.in
diff -u /dev/null pkgsrc/devel/RE-flex/patches/patch-src_Makefile.in:1.1
--- /dev/null   Mon Jun 15 15:11:50 2020
+++ pkgsrc/devel/RE-flex/patches/patch-src_Makefile.in  Mon Jun 15 15:11:50 2020
@@ -0,0 +1,44 @@
+$NetBSD: patch-src_Makefile.in,v 1.1 2020/06/15 15:11:50 scole Exp $
+
+use libtool
+
+--- src/Makefile.in.orig       2020-05-25 23:34:27.000000000 +0000
++++ src/Makefile.in
+@@ -103,7 +103,7 @@ am__installdirs = "$(DESTDIR)$(bindir)"
+ PROGRAMS = $(bin_PROGRAMS)
+ am_reflex_OBJECTS = reflex-reflex.$(OBJEXT)
+ reflex_OBJECTS = $(am_reflex_OBJECTS)
+-reflex_DEPENDENCIES = $(top_builddir)/lib/libreflex.a
++reflex_DEPENDENCIES = $(top_builddir)/lib/libreflex.la
+ AM_V_P = $(am__v_P_@AM_V@)
+ am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
+ am__v_P_0 = false
+@@ -174,12 +174,13 @@ AUTOCONF = @AUTOCONF@
+ AUTOHEADER = @AUTOHEADER@
+ AUTOMAKE = @AUTOMAKE@
+ AWK = @AWK@
+-CC = @CC@
++CC=   $(LIBTOOL) --mode=compile @CC@
+ CCDEPMODE = @CCDEPMODE@
+ CFLAGS = @CFLAGS@
+ CPP = @CPP@
+ CPPFLAGS = @CPPFLAGS@
+-CXX = @CXX@
++CXXORIG = @CXX@
++CXX=  $(LIBTOOL) --mode=compile @CXX@
+ CXXCPP = @CXXCPP@
+ CXXDEPMODE = @CXXDEPMODE@
+ CXXFLAGS = @CXXFLAGS@
+@@ -356,9 +357,10 @@ uninstall-binPROGRAMS:
+ clean-binPROGRAMS:
+       -test -z "$(bin_PROGRAMS)" || rm -f $(bin_PROGRAMS)
+ 
+-reflex$(EXEEXT): $(reflex_OBJECTS) $(reflex_DEPENDENCIES) $(EXTRA_reflex_DEPENDENCIES) 
++reflex$(EXEEXT): $(reflex_OBJECTS) $(reflex_DEPENDENCIES) $(EXTRA_reflex_DEPENDENCIES)
+       @rm -f reflex$(EXEEXT)
+-      $(AM_V_CXXLD)$(CXXLINK) $(reflex_OBJECTS) $(reflex_LDADD) $(LIBS)
++      ${LIBTOOL} --tag=CXX --mode=link $(CXXORIG) $(AM_CXXFLAGS) $(CXXFLAGS) \
++      -o reflex$(EXEEXT) $(reflex_OBJECTS:.o=.lo) $(reflex_DEPENDENCIES)
+ 
+ mostlyclean-compile:
+       -rm -f *.$(OBJEXT)



Home | Main Index | Thread Index | Old Index