summaryrefslogtreecommitdiff
path: root/lang
diff options
context:
space:
mode:
authorTong LIU <nemoliu@FreeBSD.org>2008-09-05 07:11:26 +0000
committerTong LIU <nemoliu@FreeBSD.org>2008-09-05 07:11:26 +0000
commit55d84a752cb0882b86ce5dac7409c1ccccfb35ae (patch)
tree836466f0d3cb04a9219bb0b0fcd08ea845b4dac3 /lang
parentUpdate to 3.0.2, and sort pkg-plist. (diff)
- Update to 1.1.3
PR: 125937 Submitted by: Geoff The <geoff2k@gmail.com>
Notes
Notes: svn path=/head/; revision=219880
Diffstat (limited to 'lang')
-rw-r--r--lang/jruby/Makefile53
-rw-r--r--lang/jruby/distinfo6
-rw-r--r--lang/jruby/files/patch-jruby10
-rw-r--r--lang/jruby/pkg-descr2
-rw-r--r--lang/jruby/pkg-plist16494
5 files changed, 13568 insertions, 2997 deletions
diff --git a/lang/jruby/Makefile b/lang/jruby/Makefile
index db5f567bbeaa..3159f3d51720 100644
--- a/lang/jruby/Makefile
+++ b/lang/jruby/Makefile
@@ -6,7 +6,7 @@
#
PORTNAME= jruby
-PORTVERSION= 1.1.1
+PORTVERSION= 1.1.3
PORTREVISION= 1
CATEGORIES= lang ruby java
MASTER_SITES= http://dist.codehaus.org/jruby/ \
@@ -25,13 +25,14 @@ USE_JAVA= yes
JAVA_VERSION= 1.3+
WRKDIR?= ${WRKDIRPREFIX}${.CURDIR}/work
-JRUBY_HOME?= ${PREFIX}/share/${PORTNAME}
+JRUBY_HOME?= ${PREFIX}/share/${PORTNAME}-${PORTVERSION}
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}
-REPLACE_FILES= ${WRKSRC}/bin/jruby \
- ${WRKSRC}/bin/jrubyc
-REPLACE_LIST= JRUBY_HOME=${JRUBY_HOME} \
- JAVA_HOME=${JAVA_HOME}
+REPLACE_FILES= ${WRKSRC}/bin/jruby
+REPLACE_LIST= JAVA_HOME=${JAVA_HOME}
REPLACE_LIST_TEMP= ${REPLACE_LIST:S/$/!g/:S/^/ -e s!%%/:S/=/%%!/}
+SHEBANG_FILES= rake spec spec_translator Rakefile '*.rb'
+
+PLIST_SUB+= PORTNAME=${PORTNAME} PORTVERSION=${PORTVERSION}
.include <bsd.port.pre.mk>
@@ -41,26 +42,50 @@ pre-patch:
@${ECHO_MSG} " JAVA_HOME: ${JAVA_HOME}"
post-patch:
+ @${ECHO_MSG} -n ">> Adjusting shebangs to use /usr/bin/env ..."
+ @${FIND} ${WRKSRC}/bin -type f -exec ${GREP} -q '^#!/bin/bash' {} \; -exec ${REINPLACE_CMD} -e 's|^#!/bin/bash|#!/usr/bin/env bash|' {} \;
+ @${FIND} ${WRKSRC} -type f -name '*.rb' -exec ${GREP} -q '^#!/usr/local/bin/ruby' {} \; -exec ${REINPLACE_CMD} -e 's|^#!/usr/local/bin/ruby|#!/usr/bin/env jruby|' {} \;
+.for target in ${SHEBANG_FILES}
+ @${FIND} ${WRKSRC} -type f -name ${target} -exec ${GREP} -q '^#!/usr/bin/env ruby' {} \; -exec ${REINPLACE_CMD} -e 's|^#!/usr/bin/env ruby|#!/usr/bin/env jruby|' {} \;
+.endfor
+ @${ECHO_MSG} " [ DONE ]"
+
@${ECHO_MSG} -n ">> Removing unneeded files..."
- @${RM} -f `${FIND} ${WRKSRC} -name '*.bat'` `${FIND} ${WRKSRC} -name '*.orig'` `${FIND} ${WRKSRC} -name '*.exe'`
+ @${RM} -f `${FIND} ${WRKSRC} -name '*.bat'` `${FIND} ${WRKSRC} -name '*.orig'` `${FIND} ${WRKSRC} -name '*.exe'` `${FIND} ${WRKSRC} -name '*.bak'`
@${ECHO_MSG} " [ DONE ]"
-.for file in ${REPLACE_FILES}
- @${ECHO_MSG} -n ">> Customizing `basename ${file}`..."
- @${SED} ${REPLACE_LIST_TEMP} ${file} > ${WRKDIR}/`basename ${file}`
+
+.for target in ${REPLACE_FILES}
+ @${ECHO_MSG} -n ">> Customizing `basename ${target}`..."
+ @${SED} ${REPLACE_LIST_TEMP} ${target} > ${WRKDIR}/`basename ${target}`
@${ECHO_MSG} " [ DONE ]"
+ @${MV} ${WRKDIR}/`basename ${target}` ${target}
.endfor
do-install:
- @${ECHO_MSG} -n ">> Installation JRuby files..."
- @${INSTALL_SCRIPT} ${WRKDIR}/jruby ${PREFIX}/bin/jruby
- @${INSTALL_SCRIPT} ${WRKDIR}/jrubyc ${PREFIX}/bin/jrubyc
+ @${ECHO_MSG} -n ">> Installing JRuby files..."
+
+ @cd ${WRKSRC}/bin \
+ && ${FIND} . -type d -exec ${MKDIR} ${JRUBY_HOME}/bin/{} \; \
+ && ${FIND} . -type f -exec ${INSTALL_SCRIPT} {} ${JRUBY_HOME}/bin/{} \;
@cd ${WRKSRC}/lib \
&& ${FIND} . -type d -exec ${MKDIR} ${JRUBY_HOME}/lib/{} \; \
&& ${FIND} . -type f -exec ${INSTALL_DATA} {} ${JRUBY_HOME}/lib/{} \;
+ @cd ${WRKSRC}/share \
+ && ${FIND} . -type d -exec ${MKDIR} ${JRUBY_HOME}/share/{} \; \
+ && ${FIND} . -type f -exec ${INSTALL_DATA} {} ${JRUBY_HOME}/share/{} \;
+
@${ECHO_MSG} " [ DONE ]"
+
+ @${ECHO_MSG} -n ">> Installing symlinks in ${PREFIX}/bin..."
+ @${LN} -s ${JRUBY_HOME}/bin/jruby ${PREFIX}/bin/jruby
+ @${LN} -s ${JRUBY_HOME}/bin/jirb ${PREFIX}/bin/jirb
+ @${ECHO_MSG} " [ DONE ]"
+
.if !defined(NOPORTDOCS)
- @${ECHO_MSG} -n ">> Installation Documents files..."
+ @${ECHO_MSG} -n ">> Installing Documents files..."
@${MKDIR} ${DOCSDIR}
+ @(cd ${WRKSRC}/ \
+ && ${COPYTREE_SHARE} [A-Z]\* ${DOCSDIR})
@(cd ${WRKSRC}/docs \
&& ${COPYTREE_SHARE} \* ${DOCSDIR})
@${MKDIR} ${EXAMPLESDIR}
diff --git a/lang/jruby/distinfo b/lang/jruby/distinfo
index 0b9cc257aaeb..5b56dfb7044b 100644
--- a/lang/jruby/distinfo
+++ b/lang/jruby/distinfo
@@ -1,3 +1,3 @@
-MD5 (jruby-bin-1.1.1.tar.gz) = ebc88b30876a93d63f9b51d5e4ed62e5
-SHA256 (jruby-bin-1.1.1.tar.gz) = 81faea2d8adba4ce5b83ed365a67e895e175b40312d758f2167087f4a02464a6
-SIZE (jruby-bin-1.1.1.tar.gz) = 8806776
+MD5 (jruby-bin-1.1.3.tar.gz) = 0258f92cae0c85355df495cfdc65058e
+SHA256 (jruby-bin-1.1.3.tar.gz) = 59838e9bbfe39e072af9cb9ed1c5050f2bbc84978c1a5a67ccf68f81d5bfcffb
+SIZE (jruby-bin-1.1.3.tar.gz) = 7698717
diff --git a/lang/jruby/files/patch-jruby b/lang/jruby/files/patch-jruby
index fa1730a66468..30e069333838 100644
--- a/lang/jruby/files/patch-jruby
+++ b/lang/jruby/files/patch-jruby
@@ -1,17 +1,11 @@
--- ./bin/jruby.old 2008-04-23 11:36:44.368716680 +0800
+++ ./bin/jruby 2008-04-23 11:40:04.632441243 +0800
-@@ -1,4 +1,4 @@
--#!/bin/bash
-+#!/usr/bin/env bash
- # -----------------------------------------------------------------------------
- # jruby.sh - Start Script for the JRuby interpreter
- #
@@ -37,6 +37,9 @@
JRUBY_HOME_1=`dirname "$PRG"` # the ./bin dir
JRUBY_HOME=`dirname "$JRUBY_HOME_1"` # the . dir
-
+
++# Set JAVA_HOME to the value the port was built with
+JAVA_HOME=%%JAVA_HOME%%
-+JRUBY_HOME=%%JRUBY_HOME%%
+
if [ -z "$JRUBY_OPTS" ] ; then
JRUBY_OPTS=""
diff --git a/lang/jruby/pkg-descr b/lang/jruby/pkg-descr
index a8fb9ef92bd7..30cbb6c22a94 100644
--- a/lang/jruby/pkg-descr
+++ b/lang/jruby/pkg-descr
@@ -1,5 +1,5 @@
JRuby is an 100% pure-Java implementation of the Ruby programming language.
- * A 1.8.4 compatible Ruby interpreter written in 100% pure Java
+ * A 1.8.6 compatible Ruby interpreter written in 100% pure Java
* Most builtin Ruby classes provided
* Support for interacting with and defining java classes from within
ruby
diff --git a/lang/jruby/pkg-plist b/lang/jruby/pkg-plist
index 29b270c9792a..02d5fd7d0aea 100644
--- a/lang/jruby/pkg-plist
+++ b/lang/jruby/pkg-plist
@@ -1,2972 +1,13524 @@
+%%DOCSDIR%%/COPYING
+%%DOCSDIR%%/COPYING.CPL
+%%DOCSDIR%%/COPYING.GPL
+%%DOCSDIR%%/COPYING.LGPL
+%%DOCSDIR%%/CodeConventions.txt
+%%DOCSDIR%%/LICENCE.bsf
+%%DOCSDIR%%/LICENSE.ant
+%%DOCSDIR%%/LICENSE.bouncycastle
+%%DOCSDIR%%/README
+%%DOCSDIR%%/README.coverage
+%%DOCSDIR%%/README.test
+%%DOCSDIR%%/jvyaml/CREDITS
+%%DOCSDIR%%/jvyaml/LICENSE
+%%DOCSDIR%%/jvyaml/README
+%%EXAMPLESDIR%%/duby/README
+%%EXAMPLESDIR%%/duby/arraylist.rb
+%%EXAMPLESDIR%%/duby/constructors.rb
+%%EXAMPLESDIR%%/duby/operators.rb
+%%EXAMPLESDIR%%/duby/recursive.duby
+%%EXAMPLESDIR%%/duby/statics.rb
+%%EXAMPLESDIR%%/duby/stringthing.rb
+%%EXAMPLESDIR%%/duby/superfib.rb
+%%EXAMPLESDIR%%/error.rb
+%%EXAMPLESDIR%%/ext/extconf.rb
+%%EXAMPLESDIR%%/ext/mytest.c
+%%EXAMPLESDIR%%/irb-applet.html
+%%EXAMPLESDIR%%/java2.rb
+%%EXAMPLESDIR%%/jirb.jnlp
+%%EXAMPLESDIR%%/minijava/arraylist.rb
+%%EXAMPLESDIR%%/minijava/arrays.rb
+%%EXAMPLESDIR%%/minijava/interfaces.rb
+%%EXAMPLESDIR%%/minijava/method_missing.rb
+%%EXAMPLESDIR%%/minijava/swing.rb
+%%EXAMPLESDIR%%/swing2.rb
+%%EXAMPLESDIR%%/thread.rb
+%%EXAMPLESDIR%%/xslt.rb
+bin/jirb
bin/jruby
-bin/jrubyc
-%%PORTDOCS%%%%DOCSDIR%%/BeanScriptingFramework
-%%PORTDOCS%%%%DOCSDIR%%/CodeConventions.txt
-%%PORTDOCS%%%%DOCSDIR%%/Glossary.txt
-%%PORTDOCS%%%%DOCSDIR%%/Javasupport-highlevel.txt
-%%PORTDOCS%%%%DOCSDIR%%/Javasupport-lowlevel.txt
-%%PORTDOCS%%%%DOCSDIR%%/Javasupport-overview.txt
-%%PORTDOCS%%%%DOCSDIR%%/LICENCE.bsf
-%%PORTDOCS%%%%DOCSDIR%%/LICENSE.ant
-%%PORTDOCS%%%%DOCSDIR%%/LICENSE.bouncycastle
-%%PORTDOCS%%%%DOCSDIR%%/README.coverage
-%%PORTDOCS%%%%DOCSDIR%%/README.rails
-%%PORTDOCS%%%%DOCSDIR%%/README.test
-%%PORTDOCS%%%%DOCSDIR%%/Readline-HOWTO.txt
-%%PORTDOCS%%%%DOCSDIR%%/getting_involved.html
-%%PORTDOCS%%%%DOCSDIR%%/jvyaml/CREDITS
-%%PORTDOCS%%%%DOCSDIR%%/jvyaml/LICENSE
-%%PORTDOCS%%%%DOCSDIR%%/jvyaml/README
-%%PORTDOCS%%%%DOCSDIR%%/patches/rails/rails-1.1.2-blockargs-fix.patch
-%%PORTDOCS%%%%DOCSDIR%%/patches/rubylib/ruby-1.8.4_fileutils_fu_windows_designator.patch
-%%PORTDOCS%%%%DOCSDIR%%/rbyaml/LICENSE
-%%PORTDOCS%%%%DOCSDIR%%/rbyaml/README
-%%PORTDOCS%%%%DOCSDIR%%/release-checklist.txt
-%%PORTDOCS%%%%EXAMPLESDIR%%/duby/README
-%%PORTDOCS%%%%EXAMPLESDIR%%/duby/arraylist.rb
-%%PORTDOCS%%%%EXAMPLESDIR%%/duby/constructors.rb
-%%PORTDOCS%%%%EXAMPLESDIR%%/duby/operators.rb
-%%PORTDOCS%%%%EXAMPLESDIR%%/duby/recursive.duby
-%%PORTDOCS%%%%EXAMPLESDIR%%/duby/statics.rb
-%%PORTDOCS%%%%EXAMPLESDIR%%/duby/stringthing.rb
-%%PORTDOCS%%%%EXAMPLESDIR%%/duby/superfib.rb
-%%PORTDOCS%%%%EXAMPLESDIR%%/error.rb
-%%PORTDOCS%%%%EXAMPLESDIR%%/irb-applet.html
-%%PORTDOCS%%%%EXAMPLESDIR%%/java2.rb
-%%PORTDOCS%%%%EXAMPLESDIR%%/javascript.rb
-%%PORTDOCS%%%%EXAMPLESDIR%%/jirb.jnlp
-%%PORTDOCS%%%%EXAMPLESDIR%%/scripting.rb
-%%PORTDOCS%%%%EXAMPLESDIR%%/swing2.rb
-%%PORTDOCS%%%%EXAMPLESDIR%%/thread.rb
-%%PORTDOCS%%%%EXAMPLESDIR%%/xslt.rb
-%%DATADIR%%/lib/bsf.jar
-%%DATADIR%%/lib/jruby.jar
-%%DATADIR%%/lib/profile.jar
-%%DATADIR%%/lib/profile.properties
-%%DATADIR%%/lib/ruby/1.8/.document
-%%DATADIR%%/lib/ruby/1.8/English.rb
-%%DATADIR%%/lib/ruby/1.8/Env.rb
-%%DATADIR%%/lib/ruby/1.8/README
-%%DATADIR%%/lib/ruby/1.8/abbrev.rb
-%%DATADIR%%/lib/ruby/1.8/base64.rb
-%%DATADIR%%/lib/ruby/1.8/benchmark.rb
-%%DATADIR%%/lib/ruby/1.8/bigdecimal/jacobian.rb
-%%DATADIR%%/lib/ruby/1.8/bigdecimal/ludcmp.rb
-%%DATADIR%%/lib/ruby/1.8/bigdecimal/math.rb
-%%DATADIR%%/lib/ruby/1.8/bigdecimal/newton.rb
-%%DATADIR%%/lib/ruby/1.8/bigdecimal/util.rb
-%%DATADIR%%/lib/ruby/1.8/cgi-lib.rb
-%%DATADIR%%/lib/ruby/1.8/cgi.rb
-%%DATADIR%%/lib/ruby/1.8/cgi/.document
-%%DATADIR%%/lib/ruby/1.8/cgi/session.rb
-%%DATADIR%%/lib/ruby/1.8/cgi/session/pstore.rb
-%%DATADIR%%/lib/ruby/1.8/complex.rb
-%%DATADIR%%/lib/ruby/1.8/csv.rb
-%%DATADIR%%/lib/ruby/1.8/date.rb
-%%DATADIR%%/lib/ruby/1.8/date/format.rb
-%%DATADIR%%/lib/ruby/1.8/date2.rb
-%%DATADIR%%/lib/ruby/1.8/debug.rb
-%%DATADIR%%/lib/ruby/1.8/delegate.rb
-%%DATADIR%%/lib/ruby/1.8/dl.rb
-%%DATADIR%%/lib/ruby/1.8/drb.rb
-%%DATADIR%%/lib/ruby/1.8/drb/acl.rb
-%%DATADIR%%/lib/ruby/1.8/drb/drb.rb
-%%DATADIR%%/lib/ruby/1.8/drb/eq.rb
-%%DATADIR%%/lib/ruby/1.8/drb/extserv.rb
-%%DATADIR%%/lib/ruby/1.8/drb/extservm.rb
-%%DATADIR%%/lib/ruby/1.8/drb/gw.rb
-%%DATADIR%%/lib/ruby/1.8/drb/invokemethod.rb
-%%DATADIR%%/lib/ruby/1.8/drb/observer.rb
-%%DATADIR%%/lib/ruby/1.8/drb/ssl.rb
-%%DATADIR%%/lib/ruby/1.8/drb/timeridconv.rb
-%%DATADIR%%/lib/ruby/1.8/drb/unix.rb
-%%DATADIR%%/lib/ruby/1.8/e2mmap.rb
-%%DATADIR%%/lib/ruby/1.8/erb.rb
-%%DATADIR%%/lib/ruby/1.8/eregex.rb
-%%DATADIR%%/lib/ruby/1.8/expect.rb
-%%DATADIR%%/lib/ruby/1.8/fileutils.rb
-%%DATADIR%%/lib/ruby/1.8/finalize.rb
-%%DATADIR%%/lib/ruby/1.8/find.rb
-%%DATADIR%%/lib/ruby/1.8/forwardable.rb
-%%DATADIR%%/lib/ruby/1.8/ftools.rb
-%%DATADIR%%/lib/ruby/1.8/generator.rb
-%%DATADIR%%/lib/ruby/1.8/getoptlong.rb
-%%DATADIR%%/lib/ruby/1.8/getopts.rb
-%%DATADIR%%/lib/ruby/1.8/gserver.rb
-%%DATADIR%%/lib/ruby/1.8/importenv.rb
-%%DATADIR%%/lib/ruby/1.8/io/nonblock.rb
-%%DATADIR%%/lib/ruby/1.8/ipaddr.rb
-%%DATADIR%%/lib/ruby/1.8/irb.rb
-%%DATADIR%%/lib/ruby/1.8/irb/cmd/chws.rb
-%%DATADIR%%/lib/ruby/1.8/irb/cmd/fork.rb
-%%DATADIR%%/lib/ruby/1.8/irb/cmd/help.rb
-%%DATADIR%%/lib/ruby/1.8/irb/cmd/load.rb
-%%DATADIR%%/lib/ruby/1.8/irb/cmd/nop.rb
-%%DATADIR%%/lib/ruby/1.8/irb/cmd/pushws.rb
-%%DATADIR%%/lib/ruby/1.8/irb/cmd/subirb.rb
-%%DATADIR%%/lib/ruby/1.8/irb/completion.rb
-%%DATADIR%%/lib/ruby/1.8/irb/context.rb
-%%DATADIR%%/lib/ruby/1.8/irb/ext/change-ws.rb
-%%DATADIR%%/lib/ruby/1.8/irb/ext/history.rb
-%%DATADIR%%/lib/ruby/1.8/irb/ext/loader.rb
-%%DATADIR%%/lib/ruby/1.8/irb/ext/math-mode.rb
-%%DATADIR%%/lib/ruby/1.8/irb/ext/multi-irb.rb
-%%DATADIR%%/lib/ruby/1.8/irb/ext/save-history.rb
-%%DATADIR%%/lib/ruby/1.8/irb/ext/tracer.rb
-%%DATADIR%%/lib/ruby/1.8/irb/ext/use-loader.rb
-%%DATADIR%%/lib/ruby/1.8/irb/ext/workspaces.rb
-%%DATADIR%%/lib/ruby/1.8/irb/extend-command.rb
-%%DATADIR%%/lib/ruby/1.8/irb/frame.rb
-%%DATADIR%%/lib/ruby/1.8/irb/help.rb
-%%DATADIR%%/lib/ruby/1.8/irb/init.rb
-%%DATADIR%%/lib/ruby/1.8/irb/input-method.rb
-%%DATADIR%%/lib/ruby/1.8/irb/lc/error.rb
-%%DATADIR%%/lib/ruby/1.8/irb/lc/help-message
-%%DATADIR%%/lib/ruby/1.8/irb/lc/ja/error.rb
-%%DATADIR%%/lib/ruby/1.8/irb/lc/ja/help-message
-%%DATADIR%%/lib/ruby/1.8/irb/locale.rb
-%%DATADIR%%/lib/ruby/1.8/irb/notifier.rb
-%%DATADIR%%/lib/ruby/1.8/irb/output-method.rb
-%%DATADIR%%/lib/ruby/1.8/irb/ruby-lex.rb
-%%DATADIR%%/lib/ruby/1.8/irb/ruby-token.rb
-%%DATADIR%%/lib/ruby/1.8/irb/slex.rb
-%%DATADIR%%/lib/ruby/1.8/irb/version.rb
-%%DATADIR%%/lib/ruby/1.8/irb/workspace.rb
-%%DATADIR%%/lib/ruby/1.8/irb/ws-for-case-2.rb
-%%DATADIR%%/lib/ruby/1.8/irb/xmp.rb
-%%DATADIR%%/lib/ruby/1.8/jcode.rb
-%%DATADIR%%/lib/ruby/1.8/kconv.rb
-%%DATADIR%%/lib/ruby/1.8/logger.rb
-%%DATADIR%%/lib/ruby/1.8/mailread.rb
-%%DATADIR%%/lib/ruby/1.8/mathn.rb
-%%DATADIR%%/lib/ruby/1.8/matrix.rb
-%%DATADIR%%/lib/ruby/1.8/md5.rb
-%%DATADIR%%/lib/ruby/1.8/monitor.rb
-%%DATADIR%%/lib/ruby/1.8/mutex_m.rb
-%%DATADIR%%/lib/ruby/1.8/net/ftp.rb
-%%DATADIR%%/lib/ruby/1.8/net/http.rb
-%%DATADIR%%/lib/ruby/1.8/net/https.rb
-%%DATADIR%%/lib/ruby/1.8/net/imap.rb
-%%DATADIR%%/lib/ruby/1.8/net/pop.rb
-%%DATADIR%%/lib/ruby/1.8/net/protocol.rb
-%%DATADIR%%/lib/ruby/1.8/net/smtp.rb
-%%DATADIR%%/lib/ruby/1.8/net/telnet.rb
-%%DATADIR%%/lib/ruby/1.8/observer.rb
-%%DATADIR%%/lib/ruby/1.8/open-uri.rb
-%%DATADIR%%/lib/ruby/1.8/open3.rb
-%%DATADIR%%/lib/ruby/1.8/optparse.rb
-%%DATADIR%%/lib/ruby/1.8/optparse/date.rb
-%%DATADIR%%/lib/ruby/1.8/optparse/shellwords.rb
-%%DATADIR%%/lib/ruby/1.8/optparse/time.rb
-%%DATADIR%%/lib/ruby/1.8/optparse/uri.rb
-%%DATADIR%%/lib/ruby/1.8/optparse/version.rb
-%%DATADIR%%/lib/ruby/1.8/ostruct.rb
-%%DATADIR%%/lib/ruby/1.8/parsearg.rb
-%%DATADIR%%/lib/ruby/1.8/parsedate.rb
-%%DATADIR%%/lib/ruby/1.8/pathname.rb
-%%DATADIR%%/lib/ruby/1.8/ping.rb
-%%DATADIR%%/lib/ruby/1.8/pp.rb
-%%DATADIR%%/lib/ruby/1.8/prettyprint.rb
-%%DATADIR%%/lib/ruby/1.8/profile.rb
-%%DATADIR%%/lib/ruby/1.8/profiler.rb
-%%DATADIR%%/lib/ruby/1.8/pstore.rb
-%%DATADIR%%/lib/ruby/1.8/racc/parser.rb
-%%DATADIR%%/lib/ruby/1.8/rational.rb
-%%DATADIR%%/lib/ruby/1.8/rdoc/README
-%%DATADIR%%/lib/ruby/1.8/rdoc/code_objects.rb
-%%DATADIR%%/lib/ruby/1.8/rdoc/diagram.rb
-%%DATADIR%%/lib/ruby/1.8/rdoc/dot/dot.rb
-%%DATADIR%%/lib/ruby/1.8/rdoc/generators/chm_generator.rb
-%%DATADIR%%/lib/ruby/1.8/rdoc/generators/html_generator.rb
-%%DATADIR%%/lib/ruby/1.8/rdoc/generators/ri_generator.rb
-%%DATADIR%%/lib/ruby/1.8/rdoc/generators/template/chm/chm.rb
-%%DATADIR%%/lib/ruby/1.8/rdoc/generators/template/html/hefss.rb
-%%DATADIR%%/lib/ruby/1.8/rdoc/generators/template/html/html.rb
-%%DATADIR%%/lib/ruby/1.8/rdoc/generators/template/html/kilmer.rb
-%%DATADIR%%/lib/ruby/1.8/rdoc/generators/template/html/old_html.rb
-%%DATADIR%%/lib/ruby/1.8/rdoc/generators/template/html/one_page_html.rb
-%%DATADIR%%/lib/ruby/1.8/rdoc/generators/template/xml/rdf.rb
-%%DATADIR%%/lib/ruby/1.8/rdoc/generators/template/xml/xml.rb
-%%DATADIR%%/lib/ruby/1.8/rdoc/generators/xml_generator.rb
-%%DATADIR%%/lib/ruby/1.8/rdoc/markup/.document
-%%DATADIR%%/lib/ruby/1.8/rdoc/markup/sample/rdoc2latex.rb
-%%DATADIR%%/lib/ruby/1.8/rdoc/markup/sample/sample.rb
-%%DATADIR%%/lib/ruby/1.8/rdoc/markup/simple_markup.rb
-%%DATADIR%%/lib/ruby/1.8/rdoc/markup/simple_markup/fragments.rb
-%%DATADIR%%/lib/ruby/1.8/rdoc/markup/simple_markup/inline.rb
-%%DATADIR%%/lib/ruby/1.8/rdoc/markup/simple_markup/lines.rb
-%%DATADIR%%/lib/ruby/1.8/rdoc/markup/simple_markup/preprocess.rb
-%%DATADIR%%/lib/ruby/1.8/rdoc/markup/simple_markup/to_flow.rb
-%%DATADIR%%/lib/ruby/1.8/rdoc/markup/simple_markup/to_html.rb
-%%DATADIR%%/lib/ruby/1.8/rdoc/markup/simple_markup/to_latex.rb
-%%DATADIR%%/lib/ruby/1.8/rdoc/markup/test/AllTests.rb
-%%DATADIR%%/lib/ruby/1.8/rdoc/markup/test/TestInline.rb
-%%DATADIR%%/lib/ruby/1.8/rdoc/markup/test/TestParse.rb
-%%DATADIR%%/lib/ruby/1.8/rdoc/options.rb
-%%DATADIR%%/lib/ruby/1.8/rdoc/parsers/parse_c.rb
-%%DATADIR%%/lib/ruby/1.8/rdoc/parsers/parse_f95.rb
-%%DATADIR%%/lib/ruby/1.8/rdoc/parsers/parse_rb.rb
-%%DATADIR%%/lib/ruby/1.8/rdoc/parsers/parse_simple.rb
-%%DATADIR%%/lib/ruby/1.8/rdoc/parsers/parserfactory.rb
-%%DATADIR%%/lib/ruby/1.8/rdoc/rdoc.rb
-%%DATADIR%%/lib/ruby/1.8/rdoc/ri/ri_cache.rb
-%%DATADIR%%/lib/ruby/1.8/rdoc/ri/ri_descriptions.rb
-%%DATADIR%%/lib/ruby/1.8/rdoc/ri/ri_display.rb
-%%DATADIR%%/lib/ruby/1.8/rdoc/ri/ri_driver.rb
-%%DATADIR%%/lib/ruby/1.8/rdoc/ri/ri_formatter.rb
-%%DATADIR%%/lib/ruby/1.8/rdoc/ri/ri_options.rb
-%%DATADIR%%/lib/ruby/1.8/rdoc/ri/ri_paths.rb
-%%DATADIR%%/lib/ruby/1.8/rdoc/ri/ri_reader.rb
-%%DATADIR%%/lib/ruby/1.8/rdoc/ri/ri_util.rb
-%%DATADIR%%/lib/ruby/1.8/rdoc/ri/ri_writer.rb
-%%DATADIR%%/lib/ruby/1.8/rdoc/template.rb
-%%DATADIR%%/lib/ruby/1.8/rdoc/tokenstream.rb
-%%DATADIR%%/lib/ruby/1.8/rdoc/usage.rb
-%%DATADIR%%/lib/ruby/1.8/readbytes.rb
-%%DATADIR%%/lib/ruby/1.8/resolv-replace.rb
-%%DATADIR%%/lib/ruby/1.8/resolv.rb
-%%DATADIR%%/lib/ruby/1.8/rexml/attlistdecl.rb
-%%DATADIR%%/lib/ruby/1.8/rexml/attribute.rb
-%%DATADIR%%/lib/ruby/1.8/rexml/cdata.rb
-%%DATADIR%%/lib/ruby/1.8/rexml/child.rb
-%%DATADIR%%/lib/ruby/1.8/rexml/comment.rb
-%%DATADIR%%/lib/ruby/1.8/rexml/doctype.rb
-%%DATADIR%%/lib/ruby/1.8/rexml/document.rb
-%%DATADIR%%/lib/ruby/1.8/rexml/dtd/attlistdecl.rb
-%%DATADIR%%/lib/ruby/1.8/rexml/dtd/dtd.rb
-%%DATADIR%%/lib/ruby/1.8/rexml/dtd/elementdecl.rb
-%%DATADIR%%/lib/ruby/1.8/rexml/dtd/entitydecl.rb
-%%DATADIR%%/lib/ruby/1.8/rexml/dtd/notationdecl.rb
-%%DATADIR%%/lib/ruby/1.8/rexml/element.rb
-%%DATADIR%%/lib/ruby/1.8/rexml/encoding.rb
-%%DATADIR%%/lib/ruby/1.8/rexml/encodings/CP-1252.rb
-%%DATADIR%%/lib/ruby/1.8/rexml/encodings/EUC-JP.rb
-%%DATADIR%%/lib/ruby/1.8/rexml/encodings/ICONV.rb
-%%DATADIR%%/lib/ruby/1.8/rexml/encodings/ISO-8859-1.rb
-%%DATADIR%%/lib/ruby/1.8/rexml/encodings/ISO-8859-15.rb
-%%DATADIR%%/lib/ruby/1.8/rexml/encodings/SHIFT-JIS.rb
-%%DATADIR%%/lib/ruby/1.8/rexml/encodings/SHIFT_JIS.rb
-%%DATADIR%%/lib/ruby/1.8/rexml/encodings/UNILE.rb
-%%DATADIR%%/lib/ruby/1.8/rexml/encodings/US-ASCII.rb
-%%DATADIR%%/lib/ruby/1.8/rexml/encodings/UTF-16.rb
-%%DATADIR%%/lib/ruby/1.8/rexml/encodings/UTF-8.rb
-%%DATADIR%%/lib/ruby/1.8/rexml/entity.rb
-%%DATADIR%%/lib/ruby/1.8/rexml/formatters/default.rb
-%%DATADIR%%/lib/ruby/1.8/rexml/formatters/pretty.rb
-%%DATADIR%%/lib/ruby/1.8/rexml/formatters/transitive.rb
-%%DATADIR%%/lib/ruby/1.8/rexml/functions.rb
-%%DATADIR%%/lib/ruby/1.8/rexml/instruction.rb
-%%DATADIR%%/lib/ruby/1.8/rexml/light/node.rb
-%%DATADIR%%/lib/ruby/1.8/rexml/namespace.rb
-%%DATADIR%%/lib/ruby/1.8/rexml/node.rb
-%%DATADIR%%/lib/ruby/1.8/rexml/output.rb
-%%DATADIR%%/lib/ruby/1.8/rexml/parent.rb
-%%DATADIR%%/lib/ruby/1.8/rexml/parseexception.rb
-%%DATADIR%%/lib/ruby/1.8/rexml/parsers/baseparser.rb
-%%DATADIR%%/lib/ruby/1.8/rexml/parsers/lightparser.rb
-%%DATADIR%%/lib/ruby/1.8/rexml/parsers/pullparser.rb
-%%DATADIR%%/lib/ruby/1.8/rexml/parsers/sax2parser.rb
-%%DATADIR%%/lib/ruby/1.8/rexml/parsers/streamparser.rb
-%%DATADIR%%/lib/ruby/1.8/rexml/parsers/treeparser.rb
-%%DATADIR%%/lib/ruby/1.8/rexml/parsers/ultralightparser.rb
-%%DATADIR%%/lib/ruby/1.8/rexml/parsers/xpathparser.rb
-%%DATADIR%%/lib/ruby/1.8/rexml/quickpath.rb
-%%DATADIR%%/lib/ruby/1.8/rexml/rexml.rb
-%%DATADIR%%/lib/ruby/1.8/rexml/sax2listener.rb
-%%DATADIR%%/lib/ruby/1.8/rexml/source.rb
-%%DATADIR%%/lib/ruby/1.8/rexml/streamlistener.rb
-%%DATADIR%%/lib/ruby/1.8/rexml/syncenumerator.rb
-%%DATADIR%%/lib/ruby/1.8/rexml/text.rb
-%%DATADIR%%/lib/ruby/1.8/rexml/validation/relaxng.rb
-%%DATADIR%%/lib/ruby/1.8/rexml/validation/validation.rb
-%%DATADIR%%/lib/ruby/1.8/rexml/validation/validationexception.rb
-%%DATADIR%%/lib/ruby/1.8/rexml/xmldecl.rb
-%%DATADIR%%/lib/ruby/1.8/rexml/xmltokens.rb
-%%DATADIR%%/lib/ruby/1.8/rexml/xpath.rb
-%%DATADIR%%/lib/ruby/1.8/rexml/xpath_parser.rb
-%%DATADIR%%/lib/ruby/1.8/rinda/rinda.rb
-%%DATADIR%%/lib/ruby/1.8/rinda/ring.rb
-%%DATADIR%%/lib/ruby/1.8/rinda/tuplespace.rb
-%%DATADIR%%/lib/ruby/1.8/rss.rb
-%%DATADIR%%/lib/ruby/1.8/rss/0.9.rb
-%%DATADIR%%/lib/ruby/1.8/rss/1.0.rb
-%%DATADIR%%/lib/ruby/1.8/rss/2.0.rb
-%%DATADIR%%/lib/ruby/1.8/rss/content.rb
-%%DATADIR%%/lib/ruby/1.8/rss/converter.rb
-%%DATADIR%%/lib/ruby/1.8/rss/dublincore.rb
-%%DATADIR%%/lib/ruby/1.8/rss/image.rb
-%%DATADIR%%/lib/ruby/1.8/rss/maker.rb
-%%DATADIR%%/lib/ruby/1.8/rss/maker/0.9.rb
-%%DATADIR%%/lib/ruby/1.8/rss/maker/1.0.rb
-%%DATADIR%%/lib/ruby/1.8/rss/maker/2.0.rb
-%%DATADIR%%/lib/ruby/1.8/rss/maker/base.rb
-%%DATADIR%%/lib/ruby/1.8/rss/maker/content.rb
-%%DATADIR%%/lib/ruby/1.8/rss/maker/dublincore.rb
-%%DATADIR%%/lib/ruby/1.8/rss/maker/image.rb
-%%DATADIR%%/lib/ruby/1.8/rss/maker/syndication.rb
-%%DATADIR%%/lib/ruby/1.8/rss/maker/taxonomy.rb
-%%DATADIR%%/lib/ruby/1.8/rss/maker/trackback.rb
-%%DATADIR%%/lib/ruby/1.8/rss/parser.rb
-%%DATADIR%%/lib/ruby/1.8/rss/rexmlparser.rb
-%%DATADIR%%/lib/ruby/1.8/rss/rss.rb
-%%DATADIR%%/lib/ruby/1.8/rss/syndication.rb
-%%DATADIR%%/lib/ruby/1.8/rss/taxonomy.rb
-%%DATADIR%%/lib/ruby/1.8/rss/trackback.rb
-%%DATADIR%%/lib/ruby/1.8/rss/utils.rb
-%%DATADIR%%/lib/ruby/1.8/rss/xml-stylesheet.rb
-%%DATADIR%%/lib/ruby/1.8/rss/xmlparser.rb
-%%DATADIR%%/lib/ruby/1.8/rss/xmlscanner.rb
-%%DATADIR%%/lib/ruby/1.8/rubyunit.rb
-%%DATADIR%%/lib/ruby/1.8/runit/assert.rb
-%%DATADIR%%/lib/ruby/1.8/runit/cui/testrunner.rb
-%%DATADIR%%/lib/ruby/1.8/runit/error.rb
-%%DATADIR%%/lib/ruby/1.8/runit/testcase.rb
-%%DATADIR%%/lib/ruby/1.8/runit/testresult.rb
-%%DATADIR%%/lib/ruby/1.8/runit/testsuite.rb
-%%DATADIR%%/lib/ruby/1.8/runit/topublic.rb
-%%DATADIR%%/lib/ruby/1.8/scanf.rb
-%%DATADIR%%/lib/ruby/1.8/set.rb
-%%DATADIR%%/lib/ruby/1.8/sha1.rb
-%%DATADIR%%/lib/ruby/1.8/shell.rb
-%%DATADIR%%/lib/ruby/1.8/shell/builtin-command.rb
-%%DATADIR%%/lib/ruby/1.8/shell/command-processor.rb
-%%DATADIR%%/lib/ruby/1.8/shell/error.rb
-%%DATADIR%%/lib/ruby/1.8/shell/filter.rb
-%%DATADIR%%/lib/ruby/1.8/shell/process-controller.rb
-%%DATADIR%%/lib/ruby/1.8/shell/system-command.rb
-%%DATADIR%%/lib/ruby/1.8/shell/version.rb
-%%DATADIR%%/lib/ruby/1.8/shellwords.rb
-%%DATADIR%%/lib/ruby/1.8/singleton.rb
-%%DATADIR%%/lib/ruby/1.8/soap/attachment.rb
-%%DATADIR%%/lib/ruby/1.8/soap/baseData.rb
-%%DATADIR%%/lib/ruby/1.8/soap/element.rb
-%%DATADIR%%/lib/ruby/1.8/soap/encodingstyle/aspDotNetHandler.rb
-%%DATADIR%%/lib/ruby/1.8/soap/encodingstyle/handler.rb
-%%DATADIR%%/lib/ruby/1.8/soap/encodingstyle/literalHandler.rb
-%%DATADIR%%/lib/ruby/1.8/soap/encodingstyle/soapHandler.rb
-%%DATADIR%%/lib/ruby/1.8/soap/generator.rb
-%%DATADIR%%/lib/ruby/1.8/soap/header/handler.rb
-%%DATADIR%%/lib/ruby/1.8/soap/header/handlerset.rb
-%%DATADIR%%/lib/ruby/1.8/soap/header/simplehandler.rb
-%%DATADIR%%/lib/ruby/1.8/soap/httpconfigloader.rb
-%%DATADIR%%/lib/ruby/1.8/soap/mapping.rb
-%%DATADIR%%/lib/ruby/1.8/soap/mapping/factory.rb
-%%DATADIR%%/lib/ruby/1.8/soap/mapping/mapping.rb
-%%DATADIR%%/lib/ruby/1.8/soap/mapping/registry.rb
-%%DATADIR%%/lib/ruby/1.8/soap/mapping/rubytypeFactory.rb
-%%DATADIR%%/lib/ruby/1.8/soap/mapping/typeMap.rb
-%%DATADIR%%/lib/ruby/1.8/soap/mapping/wsdlencodedregistry.rb
-%%DATADIR%%/lib/ruby/1.8/soap/mapping/wsdlliteralregistry.rb
-%%DATADIR%%/lib/ruby/1.8/soap/marshal.rb
-%%DATADIR%%/lib/ruby/1.8/soap/mimemessage.rb
-%%DATADIR%%/lib/ruby/1.8/soap/netHttpClient.rb
-%%DATADIR%%/lib/ruby/1.8/soap/parser.rb
-%%DATADIR%%/lib/ruby/1.8/soap/processor.rb
-%%DATADIR%%/lib/ruby/1.8/soap/property.rb
-%%DATADIR%%/lib/ruby/1.8/soap/rpc/cgistub.rb
-%%DATADIR%%/lib/ruby/1.8/soap/rpc/driver.rb
-%%DATADIR%%/lib/ruby/1.8/soap/rpc/element.rb
-%%DATADIR%%/lib/ruby/1.8/soap/rpc/httpserver.rb
-%%DATADIR%%/lib/ruby/1.8/soap/rpc/proxy.rb
-%%DATADIR%%/lib/ruby/1.8/soap/rpc/router.rb
-%%DATADIR%%/lib/ruby/1.8/soap/rpc/rpc.rb
-%%DATADIR%%/lib/ruby/1.8/soap/rpc/soaplet.rb
-%%DATADIR%%/lib/ruby/1.8/soap/rpc/standaloneServer.rb
-%%DATADIR%%/lib/ruby/1.8/soap/soap.rb
-%%DATADIR%%/lib/ruby/1.8/soap/streamHandler.rb
-%%DATADIR%%/lib/ruby/1.8/soap/wsdlDriver.rb
-%%DATADIR%%/lib/ruby/1.8/sync.rb
-%%DATADIR%%/lib/ruby/1.8/tempfile.rb
-%%DATADIR%%/lib/ruby/1.8/test/unit.rb
-%%DATADIR%%/lib/ruby/1.8/test/unit/assertionfailederror.rb
-%%DATADIR%%/lib/ruby/1.8/test/unit/assertions.rb
-%%DATADIR%%/lib/ruby/1.8/test/unit/autorunner.rb
-%%DATADIR%%/lib/ruby/1.8/test/unit/collector.rb
-%%DATADIR%%/lib/ruby/1.8/test/unit/collector/dir.rb
-%%DATADIR%%/lib/ruby/1.8/test/unit/collector/objectspace.rb
-%%DATADIR%%/lib/ruby/1.8/test/unit/error.rb
-%%DATADIR%%/lib/ruby/1.8/test/unit/failure.rb
-%%DATADIR%%/lib/ruby/1.8/test/unit/testcase.rb
-%%DATADIR%%/lib/ruby/1.8/test/unit/testresult.rb
-%%DATADIR%%/lib/ruby/1.8/test/unit/testsuite.rb
-%%DATADIR%%/lib/ruby/1.8/test/unit/ui/console/testrunner.rb
-%%DATADIR%%/lib/ruby/1.8/test/unit/ui/fox/testrunner.rb
-%%DATADIR%%/lib/ruby/1.8/test/unit/ui/gtk/testrunner.rb
-%%DATADIR%%/lib/ruby/1.8/test/unit/ui/gtk2/testrunner.rb
-%%DATADIR%%/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb
-%%DATADIR%%/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb
-%%DATADIR%%/lib/ruby/1.8/test/unit/ui/tk/testrunner.rb
-%%DATADIR%%/lib/ruby/1.8/test/unit/util/backtracefilter.rb
-%%DATADIR%%/lib/ruby/1.8/test/unit/util/observable.rb
-%%DATADIR%%/lib/ruby/1.8/test/unit/util/procwrapper.rb
-%%DATADIR%%/lib/ruby/1.8/thread.rb
-%%DATADIR%%/lib/ruby/1.8/thwait.rb
-%%DATADIR%%/lib/ruby/1.8/time.rb
-%%DATADIR%%/lib/ruby/1.8/timeout.rb
-%%DATADIR%%/lib/ruby/1.8/tmpdir.rb
-%%DATADIR%%/lib/ruby/1.8/tracer.rb
-%%DATADIR%%/lib/ruby/1.8/tsort.rb
-%%DATADIR%%/lib/ruby/1.8/un.rb
-%%DATADIR%%/lib/ruby/1.8/uri.rb
-%%DATADIR%%/lib/ruby/1.8/uri/common.rb
-%%DATADIR%%/lib/ruby/1.8/uri/ftp.rb
-%%DATADIR%%/lib/ruby/1.8/uri/generic.rb
-%%DATADIR%%/lib/ruby/1.8/uri/http.rb
-%%DATADIR%%/lib/ruby/1.8/uri/https.rb
-%%DATADIR%%/lib/ruby/1.8/uri/ldap.rb
-%%DATADIR%%/lib/ruby/1.8/uri/mailto.rb
-%%DATADIR%%/lib/ruby/1.8/webrick.rb
-%%DATADIR%%/lib/ruby/1.8/webrick/accesslog.rb
-%%DATADIR%%/lib/ruby/1.8/webrick/cgi.rb
-%%DATADIR%%/lib/ruby/1.8/webrick/compat.rb
-%%DATADIR%%/lib/ruby/1.8/webrick/config.rb
-%%DATADIR%%/lib/ruby/1.8/webrick/cookie.rb
-%%DATADIR%%/lib/ruby/1.8/webrick/htmlutils.rb
-%%DATADIR%%/lib/ruby/1.8/webrick/httpauth.rb
-%%DATADIR%%/lib/ruby/1.8/webrick/httpauth/authenticator.rb
-%%DATADIR%%/lib/ruby/1.8/webrick/httpauth/basicauth.rb
-%%DATADIR%%/lib/ruby/1.8/webrick/httpauth/digestauth.rb
-%%DATADIR%%/lib/ruby/1.8/webrick/httpauth/htdigest.rb
-%%DATADIR%%/lib/ruby/1.8/webrick/httpauth/htgroup.rb
-%%DATADIR%%/lib/ruby/1.8/webrick/httpauth/htpasswd.rb
-%%DATADIR%%/lib/ruby/1.8/webrick/httpauth/userdb.rb
-%%DATADIR%%/lib/ruby/1.8/webrick/httpproxy.rb
-%%DATADIR%%/lib/ruby/1.8/webrick/httprequest.rb
-%%DATADIR%%/lib/ruby/1.8/webrick/httpresponse.rb
-%%DATADIR%%/lib/ruby/1.8/webrick/https.rb
-%%DATADIR%%/lib/ruby/1.8/webrick/httpserver.rb
-%%DATADIR%%/lib/ruby/1.8/webrick/httpservlet.rb
-%%DATADIR%%/lib/ruby/1.8/webrick/httpservlet/abstract.rb
-%%DATADIR%%/lib/ruby/1.8/webrick/httpservlet/cgi_runner.rb
-%%DATADIR%%/lib/ruby/1.8/webrick/httpservlet/cgihandler.rb
-%%DATADIR%%/lib/ruby/1.8/webrick/httpservlet/erbhandler.rb
-%%DATADIR%%/lib/ruby/1.8/webrick/httpservlet/filehandler.rb
-%%DATADIR%%/lib/ruby/1.8/webrick/httpservlet/prochandler.rb
-%%DATADIR%%/lib/ruby/1.8/webrick/httpstatus.rb
-%%DATADIR%%/lib/ruby/1.8/webrick/httputils.rb
-%%DATADIR%%/lib/ruby/1.8/webrick/httpversion.rb
-%%DATADIR%%/lib/ruby/1.8/webrick/log.rb
-%%DATADIR%%/lib/ruby/1.8/webrick/server.rb
-%%DATADIR%%/lib/ruby/1.8/webrick/ssl.rb
-%%DATADIR%%/lib/ruby/1.8/webrick/utils.rb
-%%DATADIR%%/lib/ruby/1.8/webrick/version.rb
-%%DATADIR%%/lib/ruby/1.8/wsdl/binding.rb
-%%DATADIR%%/lib/ruby/1.8/wsdl/data.rb
-%%DATADIR%%/lib/ruby/1.8/wsdl/definitions.rb
-%%DATADIR%%/lib/ruby/1.8/wsdl/documentation.rb
-%%DATADIR%%/lib/ruby/1.8/wsdl/import.rb
-%%DATADIR%%/lib/ruby/1.8/wsdl/importer.rb
-%%DATADIR%%/lib/ruby/1.8/wsdl/info.rb
-%%DATADIR%%/lib/ruby/1.8/wsdl/message.rb
-%%DATADIR%%/lib/ruby/1.8/wsdl/operation.rb
-%%DATADIR%%/lib/ruby/1.8/wsdl/operationBinding.rb
-%%DATADIR%%/lib/ruby/1.8/wsdl/param.rb
-%%DATADIR%%/lib/ruby/1.8/wsdl/parser.rb
-%%DATADIR%%/lib/ruby/1.8/wsdl/part.rb
-%%DATADIR%%/lib/ruby/1.8/wsdl/port.rb
-%%DATADIR%%/lib/ruby/1.8/wsdl/portType.rb
-%%DATADIR%%/lib/ruby/1.8/wsdl/service.rb
-%%DATADIR%%/lib/ruby/1.8/wsdl/soap/address.rb
-%%DATADIR%%/lib/ruby/1.8/wsdl/soap/binding.rb
-%%DATADIR%%/lib/ruby/1.8/wsdl/soap/body.rb
-%%DATADIR%%/lib/ruby/1.8/wsdl/soap/cgiStubCreator.rb
-%%DATADIR%%/lib/ruby/1.8/wsdl/soap/classDefCreator.rb
-%%DATADIR%%/lib/ruby/1.8/wsdl/soap/classDefCreatorSupport.rb
-%%DATADIR%%/lib/ruby/1.8/wsdl/soap/clientSkeltonCreator.rb
-%%DATADIR%%/lib/ruby/1.8/wsdl/soap/complexType.rb
-%%DATADIR%%/lib/ruby/1.8/wsdl/soap/data.rb
-%%DATADIR%%/lib/ruby/1.8/wsdl/soap/definitions.rb
-%%DATADIR%%/lib/ruby/1.8/wsdl/soap/driverCreator.rb
-%%DATADIR%%/lib/ruby/1.8/wsdl/soap/element.rb
-%%DATADIR%%/lib/ruby/1.8/wsdl/soap/fault.rb
-%%DATADIR%%/lib/ruby/1.8/wsdl/soap/header.rb
-%%DATADIR%%/lib/ruby/1.8/wsdl/soap/headerfault.rb
-%%DATADIR%%/lib/ruby/1.8/wsdl/soap/mappingRegistryCreator.rb
-%%DATADIR%%/lib/ruby/1.8/wsdl/soap/methodDefCreator.rb
-%%DATADIR%%/lib/ruby/1.8/wsdl/soap/operation.rb
-%%DATADIR%%/lib/ruby/1.8/wsdl/soap/servantSkeltonCreator.rb
-%%DATADIR%%/lib/ruby/1.8/wsdl/soap/standaloneServerStubCreator.rb
-%%DATADIR%%/lib/ruby/1.8/wsdl/soap/wsdl2ruby.rb
-%%DATADIR%%/lib/ruby/1.8/wsdl/types.rb
-%%DATADIR%%/lib/ruby/1.8/wsdl/wsdl.rb
-%%DATADIR%%/lib/ruby/1.8/wsdl/xmlSchema/all.rb
-%%DATADIR%%/lib/ruby/1.8/wsdl/xmlSchema/annotation.rb
-%%DATADIR%%/lib/ruby/1.8/wsdl/xmlSchema/any.rb
-%%DATADIR%%/lib/ruby/1.8/wsdl/xmlSchema/attribute.rb
-%%DATADIR%%/lib/ruby/1.8/wsdl/xmlSchema/choice.rb
-%%DATADIR%%/lib/ruby/1.8/wsdl/xmlSchema/complexContent.rb
-%%DATADIR%%/lib/ruby/1.8/wsdl/xmlSchema/complexType.rb
-%%DATADIR%%/lib/ruby/1.8/wsdl/xmlSchema/content.rb
-%%DATADIR%%/lib/ruby/1.8/wsdl/xmlSchema/data.rb
-%%DATADIR%%/lib/ruby/1.8/wsdl/xmlSchema/element.rb
-%%DATADIR%%/lib/ruby/1.8/wsdl/xmlSchema/enumeration.rb
-%%DATADIR%%/lib/ruby/1.8/wsdl/xmlSchema/import.rb
-%%DATADIR%%/lib/ruby/1.8/wsdl/xmlSchema/importer.rb
-%%DATADIR%%/lib/ruby/1.8/wsdl/xmlSchema/include.rb
-%%DATADIR%%/lib/ruby/1.8/wsdl/xmlSchema/length.rb
-%%DATADIR%%/lib/ruby/1.8/wsdl/xmlSchema/parser.rb
-%%DATADIR%%/lib/ruby/1.8/wsdl/xmlSchema/pattern.rb
-%%DATADIR%%/lib/ruby/1.8/wsdl/xmlSchema/schema.rb
-%%DATADIR%%/lib/ruby/1.8/wsdl/xmlSchema/sequence.rb
-%%DATADIR%%/lib/ruby/1.8/wsdl/xmlSchema/simpleContent.rb
-%%DATADIR%%/lib/ruby/1.8/wsdl/xmlSchema/simpleExtension.rb
-%%DATADIR%%/lib/ruby/1.8/wsdl/xmlSchema/simpleRestriction.rb
-%%DATADIR%%/lib/ruby/1.8/wsdl/xmlSchema/simpleType.rb
-%%DATADIR%%/lib/ruby/1.8/wsdl/xmlSchema/unique.rb
-%%DATADIR%%/lib/ruby/1.8/wsdl/xmlSchema/xsd2ruby.rb
-%%DATADIR%%/lib/ruby/1.8/xmlrpc/.document
-%%DATADIR%%/lib/ruby/1.8/xmlrpc/README.txt
-%%DATADIR%%/lib/ruby/1.8/xmlrpc/base64.rb
-%%DATADIR%%/lib/ruby/1.8/xmlrpc/client.rb
-%%DATADIR%%/lib/ruby/1.8/xmlrpc/config.rb
-%%DATADIR%%/lib/ruby/1.8/xmlrpc/create.rb
-%%DATADIR%%/lib/ruby/1.8/xmlrpc/datetime.rb
-%%DATADIR%%/lib/ruby/1.8/xmlrpc/httpserver.rb
-%%DATADIR%%/lib/ruby/1.8/xmlrpc/marshal.rb
-%%DATADIR%%/lib/ruby/1.8/xmlrpc/parser.rb
-%%DATADIR%%/lib/ruby/1.8/xmlrpc/server.rb
-%%DATADIR%%/lib/ruby/1.8/xmlrpc/utils.rb
-%%DATADIR%%/lib/ruby/1.8/xsd/charset.rb
-%%DATADIR%%/lib/ruby/1.8/xsd/codegen.rb
-%%DATADIR%%/lib/ruby/1.8/xsd/codegen/classdef.rb
-%%DATADIR%%/lib/ruby/1.8/xsd/codegen/commentdef.rb
-%%DATADIR%%/lib/ruby/1.8/xsd/codegen/gensupport.rb
-%%DATADIR%%/lib/ruby/1.8/xsd/codegen/methoddef.rb
-%%DATADIR%%/lib/ruby/1.8/xsd/codegen/moduledef.rb
-%%DATADIR%%/lib/ruby/1.8/xsd/datatypes.rb
-%%DATADIR%%/lib/ruby/1.8/xsd/datatypes1999.rb
-%%DATADIR%%/lib/ruby/1.8/xsd/iconvcharset.rb
-%%DATADIR%%/lib/ruby/1.8/xsd/mapping.rb
-%%DATADIR%%/lib/ruby/1.8/xsd/namedelements.rb
-%%DATADIR%%/lib/ruby/1.8/xsd/ns.rb
-%%DATADIR%%/lib/ruby/1.8/xsd/qname.rb
-%%DATADIR%%/lib/ruby/1.8/xsd/xmlparser.rb
-%%DATADIR%%/lib/ruby/1.8/xsd/xmlparser/parser.rb
-%%DATADIR%%/lib/ruby/1.8/xsd/xmlparser/rexmlparser.rb
-%%DATADIR%%/lib/ruby/1.8/xsd/xmlparser/xmlparser.rb
-%%DATADIR%%/lib/ruby/1.8/xsd/xmlparser/xmlscanner.rb
-%%DATADIR%%/lib/ruby/gems/1.8/cache/rake-0.8.1.gem
-%%DATADIR%%/lib/ruby/gems/1.8/cache/rspec-1.1.3.gem
-%%DATADIR%%/lib/ruby/gems/1.8/cache/sources-0.0.1.gem
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/classes/CompositePublisher.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/classes/FileUtils.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/classes/Module.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/classes/Rake/Application.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/classes/Rake/Cloneable.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/classes/Rake/CompositePublisher.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/classes/Rake/DefaultLoader.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/classes/Rake/EarlyTime.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/classes/Rake/FileCreationTask.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/classes/Rake/FileList.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/classes/Rake/FileTask.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/classes/Rake/FtpFile.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/classes/Rake/FtpUploader.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/classes/Rake/GemPackageTask.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/classes/Rake/InvocationChain.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/classes/Rake/InvocationChain/EmptyInvocationChain.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/classes/Rake/MakefileLoader.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/classes/Rake/MultiTask.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/classes/Rake/NameSpace.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/classes/Rake/PackageTask.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/classes/Rake/RDocTask.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/classes/Rake/RubyForgePublisher.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/classes/Rake/RuleRecursionOverflowError.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/classes/Rake/SshDirPublisher.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/classes/Rake/SshFilePublisher.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/classes/Rake/SshFreshDirPublisher.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/classes/Rake/Task.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/classes/Rake/TaskArguments.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/classes/Rake/TaskLib.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/classes/Rake/TaskManager.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/classes/Rake/TestTask.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/classes/RakeFileUtils.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/classes/SshDirPublisher.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/classes/SshFilePublisher.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/classes/SshFreshDirPublisher.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/classes/String.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/classes/Sys.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/classes/Test.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/classes/Test/Unit.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/classes/Test/Unit/Collector.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/classes/Test/Unit/Collector/Dir.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/classes/Time.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/created.rid
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/files/CHANGES.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/files/MIT-LICENSE.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/files/README.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/files/TODO.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/files/doc/glossary_rdoc.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/files/doc/proto_rake_rdoc.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/files/doc/rakefile_rdoc.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/files/doc/rational_rdoc.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/files/doc/release_notes/rake-0_4_14_rdoc.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/files/doc/release_notes/rake-0_4_15_rdoc.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/files/doc/release_notes/rake-0_5_0_rdoc.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/files/doc/release_notes/rake-0_5_3_rdoc.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/files/doc/release_notes/rake-0_5_4_rdoc.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/files/doc/release_notes/rake-0_6_0_rdoc.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/files/doc/release_notes/rake-0_7_0_rdoc.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/files/doc/release_notes/rake-0_7_1_rdoc.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/files/doc/release_notes/rake-0_7_2_rdoc.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/files/doc/release_notes/rake-0_7_3_rdoc.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/files/lib/rake/classic_namespace_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/files/lib/rake/clean_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/files/lib/rake/contrib/compositepublisher_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/files/lib/rake/contrib/ftptools_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/files/lib/rake/contrib/publisher_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/files/lib/rake/contrib/rubyforgepublisher_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/files/lib/rake/contrib/sshpublisher_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/files/lib/rake/contrib/sys_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/files/lib/rake/gempackagetask_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/files/lib/rake/loaders/makefile_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/files/lib/rake/packagetask_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/files/lib/rake/rake_test_loader_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/files/lib/rake/rdoctask_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/files/lib/rake/ruby182_test_unit_fix_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/files/lib/rake/runtest_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/files/lib/rake/tasklib_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/files/lib/rake/testtask_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/files/lib/rake_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/fr_class_index.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/fr_file_index.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/fr_method_index.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/index.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/rdoc-style.css
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/CompositePublisher/add-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/CompositePublisher/cdesc-CompositePublisher.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/CompositePublisher/new-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/CompositePublisher/upload-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/FileUtils/cdesc-FileUtils.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/FileUtils/ruby-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/FileUtils/safe_ln-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/FileUtils/sh-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/FileUtils/split_all-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Module/cdesc-Module.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Module/const_missing-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Module/rake_extension-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/Application/add_import-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/Application/add_loader-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/Application/cdesc-Application.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/Application/collect_tasks-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/Application/command_line_options-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/Application/const_warning-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/Application/display_prerequisites-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/Application/display_tasks_and_comments-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/Application/do_option-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/Application/handle_options-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/Application/have_rakefile-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/Application/help-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/Application/init-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/Application/invoke_task-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/Application/load_imports-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/Application/load_rakefile-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/Application/new-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/Application/options-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/Application/parse_task_string-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/Application/rake_require-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/Application/rakefile_location-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/Application/run-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/Application/standard_exception_handling-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/Application/top_level-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/Application/truncate-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/Cloneable/cdesc-Cloneable.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/Cloneable/clone-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/Cloneable/dup-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/CompositePublisher/add-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/CompositePublisher/cdesc-CompositePublisher.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/CompositePublisher/new-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/CompositePublisher/upload-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/DefaultLoader/cdesc-DefaultLoader.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/DefaultLoader/load-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/EarlyTime/%3c%3d%3e-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/EarlyTime/cdesc-EarlyTime.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/EarlyTime/to_s-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/FileCreationTask/cdesc-FileCreationTask.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/FileCreationTask/needed%3f-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/FileCreationTask/timestamp-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/FileList/%2a-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/FileList/%3d%3d-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/FileList/%5b%5d-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/FileList/add-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/FileList/calculate_exclude_regexp-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/FileList/cdesc-FileList.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/FileList/clear_exclude-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/FileList/egrep-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/FileList/exclude%3f-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/FileList/exclude-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/FileList/existing%21-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/FileList/existing-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/FileList/ext-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/FileList/gsub%21-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/FileList/gsub-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/FileList/import-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/FileList/include-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/FileList/is_a%3f-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/FileList/kind_of%3f-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/FileList/new-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/FileList/pathmap-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/FileList/resolve-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/FileList/sub%21-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/FileList/sub-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/FileList/to_a-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/FileList/to_ary-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/FileList/to_s-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/FileTask/cdesc-FileTask.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/FileTask/needed%3f-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/FileTask/timestamp-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/FtpFile/cdesc-FtpFile.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/FtpFile/date-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/FtpFile/directory%3f-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/FtpFile/mode-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/FtpFile/new-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/FtpFile/path-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/FtpFile/symlink%3f-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/FtpFile/time-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/FtpUploader/cdesc-FtpUploader.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/FtpUploader/close-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/FtpUploader/connect-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/FtpUploader/makedirs-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/FtpUploader/new-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/FtpUploader/upload_files-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/GemPackageTask/cdesc-GemPackageTask.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/GemPackageTask/define-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/GemPackageTask/gem_file-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/GemPackageTask/init-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/GemPackageTask/new-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/InvocationChain/EmptyInvocationChain/append-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/InvocationChain/EmptyInvocationChain/cdesc-EmptyInvocationChain.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/InvocationChain/EmptyInvocationChain/member%3f-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/InvocationChain/EmptyInvocationChain/to_s-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/InvocationChain/append-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/InvocationChain/append-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/InvocationChain/cdesc-InvocationChain.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/InvocationChain/member%3f-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/InvocationChain/new-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/InvocationChain/to_s-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/MakefileLoader/cdesc-MakefileLoader.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/MakefileLoader/load-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/MultiTask/cdesc-MultiTask.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/MultiTask/invoke_prerequisites-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/NameSpace/%5b%5d-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/NameSpace/cdesc-NameSpace.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/NameSpace/new-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/NameSpace/tasks-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/PackageTask/cdesc-PackageTask.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/PackageTask/define-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/PackageTask/init-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/PackageTask/new-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/PackageTask/package_dir_path-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/PackageTask/package_name-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/PackageTask/tar_bz2_file-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/PackageTask/tar_gz_file-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/PackageTask/tgz_file-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/PackageTask/zip_file-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/RDocTask/cdesc-RDocTask.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/RDocTask/define-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/RDocTask/new-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/RDocTask/option_list-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/RDocTask/option_string-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/RDocTask/quote-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/RubyForgePublisher/cdesc-RubyForgePublisher.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/RubyForgePublisher/new-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/RuleRecursionOverflowError/add_target-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/RuleRecursionOverflowError/cdesc-RuleRecursionOverflowError.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/RuleRecursionOverflowError/message-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/RuleRecursionOverflowError/new-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/SshDirPublisher/cdesc-SshDirPublisher.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/SshDirPublisher/new-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/SshDirPublisher/upload-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/SshFilePublisher/cdesc-SshFilePublisher.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/SshFilePublisher/new-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/SshFilePublisher/upload-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/SshFreshDirPublisher/cdesc-SshFreshDirPublisher.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/SshFreshDirPublisher/upload-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/Task/%5b%5d-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/Task/add_description-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/Task/arg_names-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/Task/cdesc-Task.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/Task/clear-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/Task/comment%3d-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/Task/create_rule-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/Task/define_task-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/Task/enhance-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/Task/execute-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/Task/inspect-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/Task/investigation-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/Task/invoke-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/Task/invoke_prerequisites-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/Task/invoke_with_call_chain-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/Task/name-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/Task/needed%3f-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/Task/new-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/Task/scope_name-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/Task/set_arg_names-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/Task/source-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/Task/sources-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/Task/task_defined%3f-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/Task/tasks-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/Task/timestamp-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/Task/to_s-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/TaskArguments/%5b%5d-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/TaskArguments/cdesc-TaskArguments.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/TaskArguments/each-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/TaskArguments/inspect-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/TaskArguments/lookup-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/TaskArguments/method_missing-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/TaskArguments/new-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/TaskArguments/new_scope-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/TaskArguments/to_hash-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/TaskArguments/to_s-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/TaskLib/cdesc-TaskLib.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/TaskLib/paste-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/TaskManager/%5b%5d-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/TaskManager/cdesc-TaskManager.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/TaskManager/clear-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/TaskManager/create_rule-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/TaskManager/current_scope-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/TaskManager/define_task-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/TaskManager/enhance_with_matching_rule-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/TaskManager/in_namespace-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/TaskManager/intern-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/TaskManager/lookup-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/TaskManager/new-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/TaskManager/resolve_args-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/TaskManager/synthesize_file_task-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/TaskManager/tasks-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/TestTask/cdesc-TestTask.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/TestTask/define-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/TestTask/new-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/TestTask/test_files%3d-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/cdesc-Rake.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/RakeFileUtils/cdesc-RakeFileUtils.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/RakeFileUtils/nowrite-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/RakeFileUtils/verbose-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/RakeFileUtils/when_writing-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/SshDirPublisher/cdesc-SshDirPublisher.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/SshDirPublisher/new-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/SshDirPublisher/upload-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/SshFilePublisher/cdesc-SshFilePublisher.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/SshFilePublisher/new-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/SshFilePublisher/upload-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/SshFreshDirPublisher/cdesc-SshFreshDirPublisher.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/SshFreshDirPublisher/upload-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/String/cdesc-String.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/String/ext-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/String/pathmap-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/String/pathmap_explode-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/String/pathmap_partial-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/String/pathmap_replace-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Sys/cdesc-Sys.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Sys/copy-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Sys/copy_files-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Sys/delete-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Sys/delete_all-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Sys/for_files-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Sys/indir-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Sys/install-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Sys/link-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Sys/link_files-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Sys/log-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Sys/makedirs-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Sys/quiet-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Sys/ruby-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Sys/run-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Sys/split_all-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Sys/symlink-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Sys/symlink_files-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Sys/verbose-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Test/Unit/Collector/Dir/cdesc-Dir.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Test/Unit/Collector/Dir/collect_file-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Test/Unit/Collector/cdesc-Collector.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Test/Unit/cdesc-Unit.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Test/cdesc-Test.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Time/%3c%3d%3e-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Time/cdesc-Time.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/created.rid
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Autotest.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Autotest/Rspec.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Class.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Object.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/RCov.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/RCov/VerifyTask.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Regexp.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/RspecCommandError.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Example.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Example/Configuration.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Example/ExampleGroup.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Example/ExampleGroupFactory.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Example/ExampleGroupMethods.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Example/ExampleMatcher.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Example/ExampleMethods.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Example/ExamplePendingError.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Example/ModuleReopeningFix.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Example/Pending.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Example/PendingExampleFixedError.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Example/SharedExampleGroup.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Expectations.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Expectations/Differs.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Expectations/Differs/Default.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Expectations/ExpectationMatcherHandler.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Expectations/ExpectationNotMetError.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Expectations/InvalidMatcherError.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Expectations/MatcherHandlerHelper.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Expectations/NegativeExpectationMatcherHandler.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Expectations/ObjectExpectations.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Expectations/StringHelpers.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Extensions.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Extensions/Main.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Matchers.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Matchers/BaseOperatorMatcher.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Matchers/Exist.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Matchers/MatcherError.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Matchers/ModuleMethods.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Matchers/SimpleMatcher.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Mocks.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Mocks/AmbiguousReturnError.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Mocks/AnyArgConstraint.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Mocks/AnyArgsConstraint.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Mocks/ArgumentConstraintMatchers.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Mocks/ArgumentExpectation.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Mocks/BaseExpectation.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Mocks/BooleanArgConstraint.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Mocks/DuckTypeArgConstraint.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Mocks/ErrorGenerator.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Mocks/ExampleMethods.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Mocks/LiteralArgConstraint.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Mocks/MatcherConstraint.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Mocks/MessageExpectation.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Mocks/Methods.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Mocks/Mock.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Mocks/MockExpectationError.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Mocks/NegativeMessageExpectation.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Mocks/NoArgsConstraint.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Mocks/NumericArgConstraint.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Mocks/OrderGroup.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Mocks/Proxy.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Mocks/RegexpArgConstraint.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Mocks/Space.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Mocks/StringArgConstraint.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Rake.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Rake/SpecTask.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Runner.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Runner/BacktraceTweaker.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Runner/ClassAndArgumentsParser.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Runner/CommandLine.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Runner/DrbCommandLine.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Runner/ExampleGroupRunner.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Runner/Formatter.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Runner/Formatter/BaseFormatter.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Runner/Formatter/BaseTextFormatter.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Runner/Formatter/FailingExampleGroupsFormatter.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Runner/Formatter/FailingExamplesFormatter.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Runner/Formatter/HtmlFormatter.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Runner/Formatter/ProfileFormatter.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Runner/Formatter/ProgressBarFormatter.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Runner/Formatter/SnippetExtractor/NullConverter.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Runner/Formatter/SpecdocFormatter.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Runner/Formatter/Story.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Runner/Formatter/Story/HtmlFormatter.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Runner/Formatter/Story/PlainTextFormatter.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Runner/Formatter/TextMateFormatter.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Runner/HeckleRunner.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Runner/Heckler.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Runner/NoisyBacktraceTweaker.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Runner/OptionParser.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Runner/Options.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Runner/QuietBacktraceTweaker.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Runner/Reporter.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Runner/Reporter/Failure.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Runner/SpecParser.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Story.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Story/Extensions.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Story/Extensions/Main.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Story/Extensions/Main/StoryRunnerStepGroupAdapter.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Story/GivenScenario.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Story/Runner.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Story/Runner/IllegalStepError.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Story/Runner/PlainTextStoryRunner.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Story/Runner/ScenarioCollector.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Story/Runner/ScenarioRunner.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Story/Runner/StoryMediator.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Story/Runner/StoryMediator/Scenario.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Story/Runner/StoryMediator/Step.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Story/Runner/StoryMediator/Story.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Story/Runner/StoryParser.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Story/Runner/StoryParser/GivenState.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Story/Runner/StoryParser/ScenarioState.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Story/Runner/StoryParser/StartingState.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Story/Runner/StoryParser/State.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Story/Runner/StoryParser/StoryState.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Story/Runner/StoryParser/ThenState.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Story/Runner/StoryParser/WhenState.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Story/Runner/StoryRunner.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Story/Scenario.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Story/Step.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Story/StepGroup.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Story/StepGroupHash.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Story/StepMother.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Story/Story.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Story/World.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Translator.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/VERSION.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/String.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Symbol.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Test.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Test/Unit.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Test/Unit/AutoRunner.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Test/Unit/TestCase.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Test/Unit/TestResult.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Test/Unit/TestSuiteAdapter.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Test/Unit/UI.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Test/Unit/UI/Console.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Test/Unit/UI/Console/TestRunner.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/created.rid
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/CHANGES.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/MIT-LICENSE.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/README.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/UPGRADE.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/autotest/discover_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/autotest/rspec_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/example/configuration_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/example/errors_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/example/example_group_factory_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/example/example_group_methods_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/example/example_group_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/example/example_matcher_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/example/example_methods_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/example/module_reopening_fix_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/example/pending_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/example/shared_example_group_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/example_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/expectations/differs/default_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/expectations/errors_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/expectations/extensions/object_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/expectations/extensions/string_and_symbol_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/expectations/extensions_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/expectations/handler_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/expectations_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/extensions/class_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/extensions/main_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/extensions/object_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/extensions_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/interop/test/unit/autorunner_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/interop/test/unit/testcase_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/interop/test/unit/testresult_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/interop/test/unit/testsuite_adapter_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/interop/test/unit/ui/console/testrunner_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/interop/test_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/matchers/be_close_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/matchers/be_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/matchers/change_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/matchers/eql_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/matchers/equal_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/matchers/exist_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/matchers/has_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/matchers/have_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/matchers/include_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/matchers/match_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/matchers/operator_matcher_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/matchers/raise_error_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/matchers/respond_to_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/matchers/satisfy_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/matchers/simple_matcher_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/matchers/throw_symbol_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/matchers_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/mocks/argument_constraint_matchers_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/mocks/argument_expectation_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/mocks/error_generator_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/mocks/errors_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/mocks/extensions/object_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/mocks/message_expectation_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/mocks/methods_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/mocks/mock_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/mocks/order_group_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/mocks/proxy_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/mocks/space_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/mocks/spec_methods_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/mocks_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/rake/spectask_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/rake/verify_rcov_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/runner/backtrace_tweaker_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/runner/class_and_arguments_parser_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/runner/command_line_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/runner/drb_command_line_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/runner/example_group_runner_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/runner/formatter/base_formatter_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/runner/formatter/base_text_formatter_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/runner/formatter/failing_example_groups_formatter_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/runner/formatter/failing_examples_formatter_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/runner/formatter/html_formatter_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/runner/formatter/profile_formatter_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/runner/formatter/progress_bar_formatter_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/runner/formatter/snippet_extractor_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/runner/formatter/specdoc_formatter_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/runner/formatter/story/html_formatter_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/runner/formatter/story/plain_text_formatter_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/runner/formatter/text_mate_formatter_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/runner/heckle_runner_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/runner/heckle_runner_unsupported_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/runner/option_parser_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/runner/options_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/runner/reporter_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/runner/spec_parser_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/runner_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/story/extensions/main_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/story/extensions/regexp_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/story/extensions/string_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/story/extensions_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/story/given_scenario_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/story/runner/plain_text_story_runner_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/story/runner/scenario_collector_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/story/runner/scenario_runner_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/story/runner/story_mediator_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/story/runner/story_parser_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/story/runner/story_runner_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/story/runner_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/story/scenario_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/story/step_group_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/story/step_mother_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/story/step_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/story/story_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/story/world_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/story_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/translator_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/version_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec_rb.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/fr_class_index.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/fr_file_index.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/fr_method_index.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/index.html
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/rdoc-style.css
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Autotest/Rspec/add_options_if_present-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Autotest/Rspec/cdesc-Rspec.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Autotest/Rspec/consolidate_failures-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Autotest/Rspec/make_test_cmd-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Autotest/Rspec/new-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Autotest/Rspec/spec_command-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Autotest/Rspec/spec_commands-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Autotest/cdesc-Autotest.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Class/cdesc-Class.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Class/subclass-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Object/args_and_options-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Object/cdesc-Object.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Object/metaclass-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/RCov/VerifyTask/cdesc-VerifyTask.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/RCov/VerifyTask/define-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/RCov/VerifyTask/new-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/RCov/cdesc-RCov.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Regexp/arg_regexp-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Regexp/cdesc-Regexp.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Regexp/step_name-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/RspecCommandError/cdesc-RspecCommandError.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Example/Configuration/after-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Example/Configuration/append_after-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Example/Configuration/append_before-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Example/Configuration/before-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Example/Configuration/cdesc-Configuration.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Example/Configuration/include-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Example/Configuration/mock_with-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Example/Configuration/predicate_matchers-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Example/Configuration/prepend_after-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Example/Configuration/prepend_before-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Example/ExampleGroup/cdesc-ExampleGroup.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Example/ExampleGroup/new-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Example/ExampleGroupFactory/cdesc-ExampleGroupFactory.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Example/ExampleGroupFactory/create_example_group-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Example/ExampleGroupFactory/default-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Example/ExampleGroupFactory/determine_superclass-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Example/ExampleGroupFactory/get-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Example/ExampleGroupFactory/register-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Example/ExampleGroupFactory/reset-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Example/ExampleGroupMethods/after-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Example/ExampleGroupMethods/append_after-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Example/ExampleGroupMethods/append_before-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Example/ExampleGroupMethods/before-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Example/ExampleGroupMethods/cdesc-ExampleGroupMethods.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Example/ExampleGroupMethods/describe-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Example/ExampleGroupMethods/described_type-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Example/ExampleGroupMethods/description-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Example/ExampleGroupMethods/description_text-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Example/ExampleGroupMethods/inherited-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Example/ExampleGroupMethods/it-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Example/ExampleGroupMethods/it_should_behave_like-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Example/ExampleGroupMethods/predicate_matchers-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Example/ExampleGroupMethods/prepend_after-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Example/ExampleGroupMethods/prepend_before-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Example/ExampleGroupMethods/register-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Example/ExampleGroupMethods/registration_backtrace-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Example/ExampleGroupMethods/remove_after-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Example/ExampleGroupMethods/run-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Example/ExampleGroupMethods/run_after_each-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Example/ExampleGroupMethods/run_before_each-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Example/ExampleGroupMethods/set_description-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Example/ExampleGroupMethods/setup-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Example/ExampleGroupMethods/specify-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Example/ExampleGroupMethods/teardown-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Example/ExampleGroupMethods/xit-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Example/ExampleMatcher/cdesc-ExampleMatcher.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Example/ExampleMatcher/example_group_regex-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Example/ExampleMatcher/example_group_regex_not_considering_modules-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Example/ExampleMatcher/example_group_with_before_all_regexp-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Example/ExampleMatcher/example_regexp-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Example/ExampleMatcher/matches%3f-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Example/ExampleMatcher/matches_example_not_considering_modules%3f-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Example/ExampleMatcher/matches_literal_example%3f-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Example/ExampleMatcher/new-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Example/ExampleMethods/after_example-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Example/ExampleMethods/before_example-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Example/ExampleMethods/cdesc-ExampleMethods.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Example/ExampleMethods/description-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Example/ExampleMethods/execute-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Example/ExampleMethods/implementation_backtrace-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Example/ExampleMethods/instance_variable_hash-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Example/ExampleMethods/run_with_description_capturing-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Example/ExampleMethods/set_instance_variables_from_hash-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Example/ExampleMethods/violated-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Example/ExamplePendingError/cdesc-ExamplePendingError.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Example/ModuleReopeningFix/cdesc-ModuleReopeningFix.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Example/ModuleReopeningFix/child_modules-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Example/ModuleReopeningFix/include-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Example/ModuleReopeningFix/included-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Example/Pending/cdesc-Pending.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Example/Pending/pending-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Example/PendingExampleFixedError/cdesc-PendingExampleFixedError.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Example/SharedExampleGroup/add_shared_example_group-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Example/SharedExampleGroup/cdesc-SharedExampleGroup.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Example/SharedExampleGroup/execute_in_class_hierarchy-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Example/SharedExampleGroup/find_shared_example_group-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Example/SharedExampleGroup/new-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Example/SharedExampleGroup/shared_example_groups-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Example/cdesc-Example.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Expectations/Differs/Default/cdesc-Default.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Expectations/Differs/Default/context_lines-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Expectations/Differs/Default/diff_as_object-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Expectations/Differs/Default/diff_as_string-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Expectations/Differs/Default/format-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Expectations/Differs/Default/new-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Expectations/Differs/cdesc-Differs.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Expectations/ExpectationMatcherHandler/cdesc-ExpectationMatcherHandler.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Expectations/ExpectationMatcherHandler/handle_matcher-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Expectations/ExpectationNotMetError/cdesc-ExpectationNotMetError.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Expectations/InvalidMatcherError/cdesc-InvalidMatcherError.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Expectations/MatcherHandlerHelper/cdesc-MatcherHandlerHelper.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Expectations/MatcherHandlerHelper/describe_matcher-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Expectations/NegativeExpectationMatcherHandler/cdesc-NegativeExpectationMatcherHandler.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Expectations/NegativeExpectationMatcherHandler/handle_matcher-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Expectations/ObjectExpectations/cdesc-ObjectExpectations.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Expectations/ObjectExpectations/should-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Expectations/ObjectExpectations/should_not-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Expectations/StringHelpers/cdesc-StringHelpers.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Expectations/StringHelpers/starts_with%3f-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Expectations/cdesc-Expectations.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Extensions/Main/cdesc-Main.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Extensions/Main/context-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Extensions/Main/describe-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Extensions/Main/share_as-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Extensions/Main/share_examples_for-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Extensions/Main/shared_examples_for-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Extensions/cdesc-Extensions.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Matchers/BaseOperatorMatcher/%3c%3d-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Matchers/BaseOperatorMatcher/%3c-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Matchers/BaseOperatorMatcher/%3d%3d%3d-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Matchers/BaseOperatorMatcher/%3d%3d-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Matchers/BaseOperatorMatcher/%3d%7e-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Matchers/BaseOperatorMatcher/%3e%3d-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Matchers/BaseOperatorMatcher/%3e-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Matchers/BaseOperatorMatcher/cdesc-BaseOperatorMatcher.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Matchers/BaseOperatorMatcher/fail_with_message-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Matchers/BaseOperatorMatcher/new-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Matchers/Be/cdesc-Be.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Matchers/BeClose/cdesc-BeClose.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Matchers/Change/cdesc-Change.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Matchers/Eql/cdesc-Eql.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Matchers/Equal/cdesc-Equal.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Matchers/Exist/cdesc-Exist.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Matchers/Exist/failure_message-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Matchers/Exist/matches%3f-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Matchers/Exist/negative_failure_message-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Matchers/Has/cdesc-Has.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Matchers/Have/cdesc-Have.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Matchers/Include/cdesc-Include.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Matchers/Match/cdesc-Match.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Matchers/MatcherError/cdesc-MatcherError.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Matchers/ModuleMethods/cdesc-ModuleMethods.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Matchers/ModuleMethods/clear_generated_description-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Matchers/NegativeOperatorMatcher/cdesc-NegativeOperatorMatcher.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Matchers/PositiveOperatorMatcher/cdesc-PositiveOperatorMatcher.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Matchers/RaiseError/cdesc-RaiseError.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Matchers/RespondTo/cdesc-RespondTo.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Matchers/Satisfy/cdesc-Satisfy.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Matchers/SimpleMatcher/cdesc-SimpleMatcher.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Matchers/SimpleMatcher/failure_message-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Matchers/SimpleMatcher/matches%3f-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Matchers/SimpleMatcher/negative_failure_message-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Matchers/SimpleMatcher/new-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Matchers/ThrowSymbol/cdesc-ThrowSymbol.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Matchers/be-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Matchers/be_close-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Matchers/cdesc-Matchers.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Matchers/change-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Matchers/eql-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Matchers/equal-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Matchers/exist-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Matchers/have-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Matchers/have_at_least-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Matchers/have_at_most-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Matchers/have_exactly-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Matchers/include-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Matchers/match-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Matchers/raise_error-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Matchers/respond_to-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Matchers/satisfy-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Matchers/simple_matcher-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Matchers/throw_symbol-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/AmbiguousReturnError/cdesc-AmbiguousReturnError.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/AnyArgConstraint/%3d%3d-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/AnyArgConstraint/cdesc-AnyArgConstraint.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/AnyArgConstraint/matches%3f-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/AnyArgConstraint/new-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/AnyArgsConstraint/cdesc-AnyArgsConstraint.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/AnyArgsConstraint/description-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/ArgumentConstraintMatchers/any_args-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/ArgumentConstraintMatchers/anything-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/ArgumentConstraintMatchers/boolean-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/ArgumentConstraintMatchers/cdesc-ArgumentConstraintMatchers.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/ArgumentConstraintMatchers/duck_type-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/ArgumentConstraintMatchers/no_args-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/ArgumentExpectation/cdesc-ArgumentExpectation.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/ArgumentExpectation/check_args-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/ArgumentExpectation/constraints_match%3f-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/ArgumentExpectation/convert_constraint-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/ArgumentExpectation/is_matcher%3f-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/ArgumentExpectation/new-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/ArgumentExpectation/process_arg_constraints-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/ArgumentExpectation/warn_deprecated-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/BaseExpectation/and_raise-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/BaseExpectation/and_return-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/BaseExpectation/and_throw-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/BaseExpectation/and_yield-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/BaseExpectation/cdesc-BaseExpectation.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/BaseExpectation/expected_args-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/BaseExpectation/invoke-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/BaseExpectation/invoke_consecutive_return_block-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/BaseExpectation/invoke_method_block-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/BaseExpectation/invoke_return_block-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/BaseExpectation/invoke_with_yield-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/BaseExpectation/matches-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/BaseExpectation/new-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/BooleanArgConstraint/%3d%3d-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/BooleanArgConstraint/cdesc-BooleanArgConstraint.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/BooleanArgConstraint/matches%3f-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/BooleanArgConstraint/new-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/DuckTypeArgConstraint/cdesc-DuckTypeArgConstraint.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/DuckTypeArgConstraint/description-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/DuckTypeArgConstraint/matches%3f-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/DuckTypeArgConstraint/new-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/ErrorGenerator/cdesc-ErrorGenerator.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/ErrorGenerator/new-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/ErrorGenerator/opts-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/ErrorGenerator/raise_block_failed_error-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/ErrorGenerator/raise_expectation_error-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/ErrorGenerator/raise_missing_block_error-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/ErrorGenerator/raise_out_of_order_error-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/ErrorGenerator/raise_unexpected_message_args_error-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/ErrorGenerator/raise_unexpected_message_error-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/ErrorGenerator/raise_wrong_arity_error-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/ExampleMethods/cdesc-ExampleMethods.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/ExampleMethods/mock-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/ExampleMethods/stub-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/ExampleMethods/stub_everything-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/LiteralArgConstraint/cdesc-LiteralArgConstraint.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/LiteralArgConstraint/matches%3f-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/LiteralArgConstraint/new-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/MatcherConstraint/cdesc-MatcherConstraint.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/MatcherConstraint/matches%3f-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/MatcherConstraint/new-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/MessageExpectation/any_number_of_times-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/MessageExpectation/at_least-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/MessageExpectation/at_most-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/MessageExpectation/cdesc-MessageExpectation.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/MessageExpectation/exactly-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/MessageExpectation/generate_error-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/MessageExpectation/ignoring_args%3f-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/MessageExpectation/matches_at_least_count%3f-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/MessageExpectation/matches_at_most_count%3f-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/MessageExpectation/matches_exact_count%3f-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/MessageExpectation/matches_name_but_not_args-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/MessageExpectation/negative_expectation_for%3f-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/MessageExpectation/never-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/MessageExpectation/once-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/MessageExpectation/ordered-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/MessageExpectation/set_expected_received_count-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/MessageExpectation/times-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/MessageExpectation/twice-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/MessageExpectation/verify_messages_received-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/MessageExpectation/with-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/Methods/cdesc-Methods.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/Methods/should_not_receive-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/Methods/should_receive-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/Methods/stub%21-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/Mock/%3d%3d-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/Mock/cdesc-Mock.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/Mock/inspect-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/Mock/method_missing-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/Mock/new-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/MockExpectationError/cdesc-MockExpectationError.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/NegativeMessageExpectation/cdesc-NegativeMessageExpectation.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/NegativeMessageExpectation/negative_expectation_for%3f-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/NegativeMessageExpectation/new-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/NoArgsConstraint/%3d%3d-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/NoArgsConstraint/cdesc-NoArgsConstraint.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/NoArgsConstraint/description-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/NumericArgConstraint/cdesc-NumericArgConstraint.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/NumericArgConstraint/matches%3f-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/NumericArgConstraint/new-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/OrderGroup/cdesc-OrderGroup.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/OrderGroup/consume-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/OrderGroup/handle_order_constraint-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/OrderGroup/new-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/OrderGroup/ready_for%3f-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/OrderGroup/register-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/Proxy/add_message_expectation-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/Proxy/add_negative_message_expectation-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/Proxy/add_stub-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/Proxy/cdesc-Proxy.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/Proxy/has_negative_expectation%3f-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/Proxy/message_received-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/Proxy/new-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/Proxy/null_object%3f-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/Proxy/raise_unexpected_message_args_error-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/Proxy/raise_unexpected_message_error-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/Proxy/received_message%3f-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/Proxy/reset-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/RegexpArgConstraint/cdesc-RegexpArgConstraint.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/RegexpArgConstraint/matches%3f-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/RegexpArgConstraint/new-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/Space/add-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/Space/cdesc-Space.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/Space/reset_all-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/Space/verify_all-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/StringArgConstraint/cdesc-StringArgConstraint.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/StringArgConstraint/matches%3f-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/StringArgConstraint/new-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/cdesc-Mocks.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Rake/SpecTask/attr_accessor-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Rake/SpecTask/cdesc-SpecTask.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Rake/SpecTask/new-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Rake/cdesc-Rake.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/BacktraceTweaker/cdesc-BacktraceTweaker.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/BacktraceTweaker/clean_up_double_slashes-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/ClassAndArgumentsParser/cdesc-ClassAndArgumentsParser.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/ClassAndArgumentsParser/parse-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/CommandLine/cdesc-CommandLine.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/CommandLine/run-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/DrbCommandLine/cdesc-DrbCommandLine.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/DrbCommandLine/run-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/ExampleGroupRunner/cdesc-ExampleGroupRunner.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/ExampleGroupRunner/example_groups-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/ExampleGroupRunner/finish-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/ExampleGroupRunner/load_files-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/ExampleGroupRunner/new-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/ExampleGroupRunner/number_of_examples-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/ExampleGroupRunner/prepare-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/ExampleGroupRunner/reporter-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/ExampleGroupRunner/reverse-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/ExampleGroupRunner/run-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/BaseFormatter/add_example_group-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/BaseFormatter/cdesc-BaseFormatter.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/BaseFormatter/close-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/BaseFormatter/dump_failure-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/BaseFormatter/dump_pending-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/BaseFormatter/dump_summary-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/BaseFormatter/example_failed-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/BaseFormatter/example_passed-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/BaseFormatter/example_pending-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/BaseFormatter/example_started-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/BaseFormatter/new-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/BaseFormatter/start-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/BaseFormatter/start_dump-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/BaseTextFormatter/backtrace_line-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/BaseTextFormatter/blue-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/BaseTextFormatter/cdesc-BaseTextFormatter.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/BaseTextFormatter/close-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/BaseTextFormatter/colour%3f-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/BaseTextFormatter/colour-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/BaseTextFormatter/colourise-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/BaseTextFormatter/dry_run%3f-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/BaseTextFormatter/dump_failure-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/BaseTextFormatter/dump_pending-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/BaseTextFormatter/dump_summary-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/BaseTextFormatter/example_pending-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/BaseTextFormatter/format_backtrace-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/BaseTextFormatter/green-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/BaseTextFormatter/magenta-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/BaseTextFormatter/new-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/BaseTextFormatter/output_to_tty%3f-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/BaseTextFormatter/red-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/BaseTextFormatter/yellow-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/FailingExampleGroupsFormatter/add_example_group-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/FailingExampleGroupsFormatter/cdesc-FailingExampleGroupsFormatter.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/FailingExampleGroupsFormatter/dump_failure-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/FailingExampleGroupsFormatter/dump_summary-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/FailingExampleGroupsFormatter/example_failed-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/FailingExamplesFormatter/cdesc-FailingExamplesFormatter.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/FailingExamplesFormatter/dump_failure-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/FailingExamplesFormatter/dump_summary-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/FailingExamplesFormatter/example_failed-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/HtmlFormatter/add_example_group-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/HtmlFormatter/cdesc-HtmlFormatter.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/HtmlFormatter/current_example_group_number-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/HtmlFormatter/current_example_number-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/HtmlFormatter/dump_failure-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/HtmlFormatter/dump_summary-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/HtmlFormatter/example_failed-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/HtmlFormatter/example_passed-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/HtmlFormatter/example_pending-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/HtmlFormatter/example_started-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/HtmlFormatter/extra_failure_content-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/HtmlFormatter/global_scripts-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/HtmlFormatter/global_styles-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/HtmlFormatter/html_header-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/HtmlFormatter/move_progress-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/HtmlFormatter/new-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/HtmlFormatter/percent_done-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/HtmlFormatter/report_header-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/HtmlFormatter/start-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/HtmlFormatter/start_dump-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/ProfileFormatter/cdesc-ProfileFormatter.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/ProfileFormatter/example_passed-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/ProfileFormatter/example_started-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/ProfileFormatter/new-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/ProfileFormatter/start-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/ProfileFormatter/start_dump-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/ProgressBarFormatter/cdesc-ProgressBarFormatter.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/ProgressBarFormatter/example_failed-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/ProgressBarFormatter/example_passed-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/ProgressBarFormatter/example_pending-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/ProgressBarFormatter/start_dump-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/SnippetExtractor/NullConverter/cdesc-NullConverter.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/SnippetExtractor/NullConverter/convert-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/SnippetExtractor/cdesc-SnippetExtractor.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/SpecdocFormatter/add_example_group-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/SpecdocFormatter/cdesc-SpecdocFormatter.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/SpecdocFormatter/example_failed-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/SpecdocFormatter/example_passed-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/SpecdocFormatter/example_pending-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/Story/HtmlFormatter/cdesc-HtmlFormatter.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/Story/HtmlFormatter/collected_steps-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/Story/HtmlFormatter/found_scenario-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/Story/HtmlFormatter/print_step-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/Story/HtmlFormatter/run_ended-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/Story/HtmlFormatter/run_started-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/Story/HtmlFormatter/scenario_ended-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/Story/HtmlFormatter/scenario_failed-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/Story/HtmlFormatter/scenario_pending-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/Story/HtmlFormatter/scenario_started-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/Story/HtmlFormatter/scenario_succeeded-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/Story/HtmlFormatter/step_failed-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/Story/HtmlFormatter/step_pending-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/Story/HtmlFormatter/step_succeeded-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/Story/HtmlFormatter/step_upcoming-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/Story/HtmlFormatter/story_ended-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/Story/HtmlFormatter/story_started-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/Story/PlainTextFormatter/cdesc-PlainTextFormatter.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/Story/PlainTextFormatter/collected_steps-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/Story/PlainTextFormatter/new-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/Story/PlainTextFormatter/run_ended-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/Story/PlainTextFormatter/run_started-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/Story/PlainTextFormatter/scenario_failed-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/Story/PlainTextFormatter/scenario_pending-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/Story/PlainTextFormatter/scenario_started-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/Story/PlainTextFormatter/scenario_succeeded-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/Story/PlainTextFormatter/step_failed-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/Story/PlainTextFormatter/step_pending-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/Story/PlainTextFormatter/step_succeeded-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/Story/PlainTextFormatter/step_upcoming-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/Story/PlainTextFormatter/story_ended-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/Story/PlainTextFormatter/story_started-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/Story/cdesc-Story.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/TextMateFormatter/backtrace_line-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/TextMateFormatter/cdesc-TextMateFormatter.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/cdesc-Formatter.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/HeckleRunner/cdesc-HeckleRunner.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/HeckleRunner/heckle_class_or_module-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/HeckleRunner/heckle_method-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/HeckleRunner/heckle_with-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/HeckleRunner/new-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/HeckleRunner/verify_constant-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Heckler/cdesc-Heckler.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Heckler/new-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Heckler/tests_pass%3f-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/NoisyBacktraceTweaker/cdesc-NoisyBacktraceTweaker.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/NoisyBacktraceTweaker/tweak_backtrace-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/OptionParser/cdesc-OptionParser.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/OptionParser/invoke_requires-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/OptionParser/new-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/OptionParser/order%21-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/OptionParser/parse-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/OptionParser/parse_drb-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/OptionParser/parse_generate_options-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/OptionParser/parse_help-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/OptionParser/parse_options_file-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/OptionParser/parse_version-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/OptionParser/stdout%3f-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/OptionParser/write_generated_options-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Options/add_example_group-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Options/cdesc-Options.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Options/colour%3d-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Options/custom_runner%3f-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Options/custom_runner-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Options/default_differ-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Options/differ_class%3d-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Options/examples_run%3f-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Options/examples_should_be_run%3f-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Options/examples_should_not_be_run-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Options/files_to_load-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Options/formatters-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Options/heckle-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Options/load_class-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Options/load_formatters-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Options/load_heckle_runner-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Options/new-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Options/number_of_examples-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Options/parse_diff-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Options/parse_example-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Options/parse_format-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Options/remove_example_group-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Options/run_examples-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Options/set_spec_from_line_number-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Options/sorted_files-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Options/sorter-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Options/stderr%3f-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Options/story_formatters-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/QuietBacktraceTweaker/cdesc-QuietBacktraceTweaker.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/QuietBacktraceTweaker/tweak_backtrace-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Reporter/Failure/cdesc-Failure.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Reporter/Failure/expectation_not_met%3f-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Reporter/Failure/header-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Reporter/Failure/new-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Reporter/Failure/pending_fixed%3f-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Reporter/add_example_group-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Reporter/cdesc-Reporter.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Reporter/dump-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Reporter/end-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Reporter/example_failed-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Reporter/example_finished-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Reporter/example_started-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Reporter/failure-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Reporter/new-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Reporter/start-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/SpecParser/cdesc-SpecParser.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/SpecParser/consider_example_for_best_match-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/SpecParser/consider_example_groups_for_best_match-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/SpecParser/is_best_match%3f-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/SpecParser/new-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/SpecParser/parse_backtrace-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/SpecParser/spec_name_for-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/cdesc-Runner.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/configure-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Extensions/Main/Story-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Extensions/Main/StoryRunnerStepGroupAdapter/cdesc-StoryRunnerStepGroupAdapter.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Extensions/Main/StoryRunnerStepGroupAdapter/run-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Extensions/Main/cdesc-Main.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Extensions/Main/run_story-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Extensions/Main/steps_for-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Extensions/Main/with_steps_for-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Extensions/cdesc-Extensions.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/GivenScenario/cdesc-GivenScenario.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/GivenScenario/new-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/GivenScenario/perform-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Runner/IllegalStepError/cdesc-IllegalStepError.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Runner/IllegalStepError/new-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Runner/PlainTextStoryRunner/%5b%5d%3d-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Runner/PlainTextStoryRunner/cdesc-PlainTextStoryRunner.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Runner/PlainTextStoryRunner/load-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Runner/PlainTextStoryRunner/new-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Runner/PlainTextStoryRunner/run-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Runner/PlainTextStoryRunner/steps-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Runner/ScenarioCollector/Scenario-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Runner/ScenarioCollector/cdesc-ScenarioCollector.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Runner/ScenarioCollector/new-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Runner/ScenarioRunner/add_listener-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Runner/ScenarioRunner/cdesc-ScenarioRunner.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Runner/ScenarioRunner/new-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Runner/ScenarioRunner/run-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Runner/StoryMediator/Scenario/add_step-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Runner/StoryMediator/Scenario/cdesc-Scenario.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Runner/StoryMediator/Scenario/new-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Runner/StoryMediator/Scenario/to_proc-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Runner/StoryMediator/Step/cdesc-Step.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Runner/StoryMediator/Step/new-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Runner/StoryMediator/Step/to_proc-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Runner/StoryMediator/Story/add_scenario-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Runner/StoryMediator/Story/cdesc-Story.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Runner/StoryMediator/Story/current_scenario-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Runner/StoryMediator/Story/new-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Runner/StoryMediator/Story/to_proc-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Runner/StoryMediator/cdesc-StoryMediator.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Runner/StoryMediator/create_given-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Runner/StoryMediator/create_given_scenario-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Runner/StoryMediator/create_scenario-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Runner/StoryMediator/create_story-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Runner/StoryMediator/create_then-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Runner/StoryMediator/create_when-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Runner/StoryMediator/new-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Runner/StoryMediator/run_stories-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Runner/StoryMediator/stories-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Runner/StoryParser/GivenState/cdesc-GivenState.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Runner/StoryParser/GivenState/given-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Runner/StoryParser/GivenState/one_more_of_the_same-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Runner/StoryParser/ScenarioState/cdesc-ScenarioState.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Runner/StoryParser/ScenarioState/one_more_of_the_same-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Runner/StoryParser/ScenarioState/scenario-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Runner/StoryParser/StartingState/cdesc-StartingState.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Runner/StoryParser/StartingState/new-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Runner/StoryParser/State/cdesc-State.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Runner/StoryParser/State/eof-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Runner/StoryParser/State/event-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Runner/StoryParser/State/given-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Runner/StoryParser/State/given_scenario-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Runner/StoryParser/State/new-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Runner/StoryParser/State/other-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Runner/StoryParser/State/outcome-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Runner/StoryParser/State/remove_tag_from-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Runner/StoryParser/State/scenario-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Runner/StoryParser/State/story-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Runner/StoryParser/StoryState/cdesc-StoryState.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Runner/StoryParser/StoryState/eof-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Runner/StoryParser/StoryState/event-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Runner/StoryParser/StoryState/given-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Runner/StoryParser/StoryState/one_more_of_the_same-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Runner/StoryParser/StoryState/other-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Runner/StoryParser/StoryState/outcome-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Runner/StoryParser/StoryState/scenario-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Runner/StoryParser/StoryState/story-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Runner/StoryParser/ThenState/cdesc-ThenState.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Runner/StoryParser/ThenState/one_more_of_the_same-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Runner/StoryParser/ThenState/outcome-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Runner/StoryParser/WhenState/cdesc-WhenState.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Runner/StoryParser/WhenState/event-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Runner/StoryParser/WhenState/one_more_of_the_same-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Runner/StoryParser/add_story_line-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Runner/StoryParser/cdesc-StoryParser.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Runner/StoryParser/create_given-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Runner/StoryParser/create_given_scenario-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Runner/StoryParser/create_scenario-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Runner/StoryParser/create_story-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Runner/StoryParser/create_then-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Runner/StoryParser/create_when-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Runner/StoryParser/init_story-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Runner/StoryParser/new-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Runner/StoryParser/parse-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Runner/StoryParser/process_line-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Runner/StoryParser/states-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Runner/StoryParser/transition_to-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Runner/StoryRunner/Story-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Runner/StoryRunner/add_listener-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Runner/StoryRunner/cdesc-StoryRunner.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Runner/StoryRunner/new-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Runner/StoryRunner/run_stories-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Runner/StoryRunner/scenario_from_current_story-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Runner/StoryRunner/scenario_from_current_story-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Runner/cdesc-Runner.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Runner/dry_run-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Runner/register_listener-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Scenario/cdesc-Scenario.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Scenario/new-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Step/cdesc-Step.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Step/init_module-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Step/matches%3f-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Step/new-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Step/parse_args-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Step/perform-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Step/sanitize-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/StepGroup/%3c%3c-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/StepGroup/Given-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/StepGroup/GivenScenario-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/StepGroup/Then-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/StepGroup/When-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/StepGroup/add-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/StepGroup/add_to-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/StepGroup/cdesc-StepGroup.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/StepGroup/clear-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/StepGroup/create_matcher-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/StepGroup/empty%3f-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/StepGroup/find-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/StepGroup/given_scenario-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/StepGroup/new-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/StepGroup/steps-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/StepGroupHash/cdesc-StepGroupHash.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/StepGroupHash/new-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/StepMother/cdesc-StepMother.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/StepMother/clear-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/StepMother/empty%3f-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/StepMother/find-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/StepMother/new-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/StepMother/store-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/StepMother/use-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Story/%5b%5d-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Story/assign_steps_to-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Story/cdesc-Story.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Story/new-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Story/run_in-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Story/steps_for-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/World/And-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/World/Given-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/World/GivenScenario-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/World/Then-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/World/When-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/World/add_listener-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/World/cdesc-World.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/World/create-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/World/errors-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/World/errors-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/World/listeners-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/World/run_given_scenario_with_suspended_listeners-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/World/start_collecting_errors-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/World/step_mother-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/World/step_names-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/World/store_and_call-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/World/use-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/cdesc-Story.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Translator/cdesc-Translator.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Translator/standard_matcher%3f-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Translator/translate-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Translator/translate_dir-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Translator/translate_file-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Translator/translate_line-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/VERSION/cdesc-VERSION.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/cdesc-Spec.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/exit%3f-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/run%3f-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/run-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/String/arg_regexp-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/String/cdesc-String.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/String/step_name-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Symbol/cdesc-Symbol.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Test/Unit/AutoRunner/cdesc-AutoRunner.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Test/Unit/AutoRunner/process_args-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Test/Unit/TestCase/cdesc-TestCase.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Test/Unit/TestCase/example_method%3f-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Test/Unit/TestCase/new-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Test/Unit/TestCase/run-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Test/Unit/TestCase/suite-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Test/Unit/TestCase/test_method%3f-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Test/Unit/TestResult/cdesc-TestResult.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Test/Unit/TestResult/passed%3f-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Test/Unit/TestSuiteAdapter/cdesc-TestSuiteAdapter.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Test/Unit/TestSuiteAdapter/delete-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Test/Unit/TestSuiteAdapter/empty%3f-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Test/Unit/TestSuiteAdapter/name-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Test/Unit/TestSuiteAdapter/new-c.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Test/Unit/TestSuiteAdapter/run-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Test/Unit/TestSuiteAdapter/size-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Test/Unit/UI/Console/TestRunner/cdesc-TestRunner.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Test/Unit/UI/Console/TestRunner/finished-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Test/Unit/UI/Console/TestRunner/finished_with_rspec-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Test/Unit/UI/Console/TestRunner/setup_mediator-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Test/Unit/UI/Console/TestRunner/setup_mediator_with_rspec-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Test/Unit/UI/Console/TestRunner/started-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Test/Unit/UI/Console/TestRunner/started_with_rspec-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Test/Unit/UI/Console/TestRunner/test_finished-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Test/Unit/UI/Console/TestRunner/test_finished_with_rspec-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Test/Unit/UI/Console/TestRunner/test_started-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Test/Unit/UI/Console/TestRunner/test_started_with_rspec-i.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Test/Unit/UI/Console/cdesc-Console.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Test/Unit/UI/cdesc-UI.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Test/Unit/cdesc-Unit.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Test/cdesc-Test.yaml
-%%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/created.rid
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rake-0.8.1/CHANGES
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rake-0.8.1/MIT-LICENSE
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rake-0.8.1/README
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rake-0.8.1/Rakefile
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rake-0.8.1/TODO
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rake-0.8.1/bin/rake
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rake-0.8.1/doc/example/Rakefile1
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rake-0.8.1/doc/example/Rakefile2
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rake-0.8.1/doc/example/a.c
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rake-0.8.1/doc/example/b.c
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rake-0.8.1/doc/example/main.c
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rake-0.8.1/doc/glossary.rdoc
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rake-0.8.1/doc/jamis.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rake-0.8.1/doc/proto_rake.rdoc
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rake-0.8.1/doc/rake.1.gz
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rake-0.8.1/doc/rakefile.rdoc
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rake-0.8.1/doc/rational.rdoc
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rake-0.8.1/doc/release_notes/rake-0.4.14.rdoc
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rake-0.8.1/doc/release_notes/rake-0.4.15.rdoc
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rake-0.8.1/doc/release_notes/rake-0.5.0.rdoc
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rake-0.8.1/doc/release_notes/rake-0.5.3.rdoc
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rake-0.8.1/doc/release_notes/rake-0.5.4.rdoc
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rake-0.8.1/doc/release_notes/rake-0.6.0.rdoc
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rake-0.8.1/doc/release_notes/rake-0.7.0.rdoc
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rake-0.8.1/doc/release_notes/rake-0.7.1.rdoc
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rake-0.8.1/doc/release_notes/rake-0.7.2.rdoc
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rake-0.8.1/doc/release_notes/rake-0.7.3.rdoc
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rake-0.8.1/install.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rake-0.8.1/lib/rake.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rake-0.8.1/lib/rake/classic_namespace.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rake-0.8.1/lib/rake/clean.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rake-0.8.1/lib/rake/contrib/compositepublisher.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rake-0.8.1/lib/rake/contrib/ftptools.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rake-0.8.1/lib/rake/contrib/publisher.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rake-0.8.1/lib/rake/contrib/rubyforgepublisher.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rake-0.8.1/lib/rake/contrib/sshpublisher.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rake-0.8.1/lib/rake/contrib/sys.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rake-0.8.1/lib/rake/gempackagetask.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rake-0.8.1/lib/rake/loaders/makefile.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rake-0.8.1/lib/rake/packagetask.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rake-0.8.1/lib/rake/rake_test_loader.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rake-0.8.1/lib/rake/rdoctask.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rake-0.8.1/lib/rake/ruby182_test_unit_fix.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rake-0.8.1/lib/rake/runtest.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rake-0.8.1/lib/rake/tasklib.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rake-0.8.1/lib/rake/testtask.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/capture_stdout.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/contrib/testsys.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/data/chains/Rakefile
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/data/default/Rakefile
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/data/dryrun/Rakefile
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/data/file_creation_task/Rakefile
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/data/imports/Rakefile
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/data/imports/deps.mf
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/data/multidesc/Rakefile
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/data/namespace/Rakefile
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/data/rakelib/test1.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/data/rbext/rakefile.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/data/sample.mf
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/data/statusreturn/Rakefile
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/data/unittest/Rakefile
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/filecreation.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/functional.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/rake_test_setup.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/reqfile.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/reqfile2.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/session_functional.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/shellcommand.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/test_application.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/test_clean.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/test_definitions.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/test_earlytime.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/test_extension.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/test_file_creation_task.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/test_file_task.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/test_filelist.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/test_fileutils.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/test_ftp.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/test_invocation_chain.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/test_makefile_loader.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/test_multitask.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/test_namespace.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/test_package_task.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/test_pathmap.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/test_rake.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/test_require.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/test_rules.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/test_task_arguments.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/test_task_manager.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/test_tasks.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/test_test_task.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/test_top_level_functions.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/CHANGES
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/MIT-LICENSE
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/README
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/Rakefile
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/TODO
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/UPGRADE
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/bin/spec
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/bin/spec_translator
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/examples/pure/autogenerated_docstrings_example.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/examples/pure/before_and_after_example.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/examples/pure/behave_as_example.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/examples/pure/custom_expectation_matchers.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/examples/pure/custom_formatter.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/examples/pure/dynamic_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/examples/pure/file_accessor.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/examples/pure/file_accessor_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/examples/pure/greeter_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/examples/pure/helper_method_example.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/examples/pure/io_processor.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/examples/pure/io_processor_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/examples/pure/legacy_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/examples/pure/mocking_example.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/examples/pure/multi_threaded_behaviour_runner.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/examples/pure/nested_classes_example.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/examples/pure/partial_mock_example.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/examples/pure/pending_example.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/examples/pure/predicate_example.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/examples/pure/priority.txt
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/examples/pure/shared_example_group_example.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/examples/pure/shared_stack_examples.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/examples/pure/spec_helper.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/examples/pure/stack.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/examples/pure/stack_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/examples/pure/stack_spec_with_nested_example_groups.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/examples/pure/stubbing_example.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/examples/stories/adder.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/examples/stories/addition
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/examples/stories/addition.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/examples/stories/calculator.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/examples/stories/game-of-life/README.txt
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/examples/stories/game-of-life/behaviour/everything.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/examples/stories/game-of-life/behaviour/examples/examples.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/examples/stories/game-of-life/behaviour/examples/game_behaviour.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/examples/stories/game-of-life/behaviour/examples/grid_behaviour.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/examples/stories/game-of-life/behaviour/stories/CellsWithLessThanTwoNeighboursDie.story
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/examples/stories/game-of-life/behaviour/stories/CellsWithMoreThanThreeNeighboursDie.story
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/examples/stories/game-of-life/behaviour/stories/EmptySpacesWithThreeNeighboursCreateACell.story
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/examples/stories/game-of-life/behaviour/stories/ICanCreateACell.story
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/examples/stories/game-of-life/behaviour/stories/ICanKillACell.story
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/examples/stories/game-of-life/behaviour/stories/TheGridWraps.story
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/examples/stories/game-of-life/behaviour/stories/create_a_cell.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/examples/stories/game-of-life/behaviour/stories/helper.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/examples/stories/game-of-life/behaviour/stories/kill_a_cell.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/examples/stories/game-of-life/behaviour/stories/steps.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/examples/stories/game-of-life/behaviour/stories/stories.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/examples/stories/game-of-life/behaviour/stories/stories.txt
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/examples/stories/game-of-life/life.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/examples/stories/game-of-life/life/game.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/examples/stories/game-of-life/life/grid.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/examples/stories/helper.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/examples/stories/steps/addition_steps.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/failing_examples/README.txt
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/failing_examples/diffing_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/failing_examples/failing_autogenerated_docstrings_example.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/failing_examples/failure_in_setup.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/failing_examples/failure_in_teardown.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/failing_examples/mocking_example.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/failing_examples/mocking_with_flexmock.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/failing_examples/mocking_with_mocha.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/failing_examples/mocking_with_rr.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/failing_examples/partial_mock_example.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/failing_examples/predicate_example.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/failing_examples/raising_example.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/failing_examples/spec_helper.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/failing_examples/syntax_error_example.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/failing_examples/team_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/failing_examples/timeout_behaviour.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/autotest/discover.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/autotest/rspec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/configuration.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/errors.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_factory.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_group_methods.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_matcher.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/example_methods.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/module_reopening_fix.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/pending.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example/shared_example_group.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/expectations.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/expectations/differs/default.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/expectations/errors.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/expectations/extensions.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/expectations/extensions/object.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/expectations/extensions/string_and_symbol.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/expectations/handler.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/extensions.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/extensions/class.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/extensions/main.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/extensions/object.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/interop/test.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/interop/test/unit/autorunner.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/interop/test/unit/testcase.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/interop/test/unit/testresult.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/interop/test/unit/testsuite_adapter.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/interop/test/unit/ui/console/testrunner.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/matchers.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/matchers/be.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/matchers/be_close.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/matchers/change.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/matchers/eql.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/matchers/equal.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/matchers/exist.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/matchers/has.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/matchers/have.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/matchers/include.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/matchers/match.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/matchers/operator_matcher.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/matchers/raise_error.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/matchers/respond_to.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/matchers/satisfy.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/matchers/simple_matcher.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/matchers/throw_symbol.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/mocks.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/mocks/argument_constraint_matchers.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/mocks/argument_expectation.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/mocks/error_generator.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/mocks/errors.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/mocks/extensions/object.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/mocks/message_expectation.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/mocks/methods.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/mocks/mock.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/mocks/order_group.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/mocks/proxy.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/mocks/space.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/mocks/spec_methods.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/rake/spectask.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/rake/verify_rcov.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/backtrace_tweaker.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/class_and_arguments_parser.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/command_line.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/drb_command_line.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/example_group_runner.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/formatter/base_formatter.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/formatter/base_text_formatter.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/formatter/failing_example_groups_formatter.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/formatter/failing_examples_formatter.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/formatter/html_formatter.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/formatter/profile_formatter.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/formatter/progress_bar_formatter.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/formatter/snippet_extractor.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/formatter/specdoc_formatter.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/formatter/story/html_formatter.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/formatter/story/plain_text_formatter.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/formatter/text_mate_formatter.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/heckle_runner.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/heckle_runner_unsupported.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/option_parser.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/options.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/reporter.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/spec_parser.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/story.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/story/extensions.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/story/extensions/main.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/story/extensions/regexp.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/story/extensions/string.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/story/given_scenario.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/story/runner.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/story/runner/plain_text_story_runner.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/story/runner/scenario_collector.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/story/runner/scenario_runner.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/story/runner/story_mediator.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/story/runner/story_parser.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/story/runner/story_runner.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/story/scenario.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/story/step.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/story/step_group.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/story/step_mother.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/story/story.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/story/world.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/translator.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/version.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/plugins/mock_frameworks/flexmock.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/plugins/mock_frameworks/mocha.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/plugins/mock_frameworks/rr.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/plugins/mock_frameworks/rspec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/pre_commit/lib/pre_commit.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/pre_commit/lib/pre_commit/core.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/pre_commit/lib/pre_commit/pre_commit.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/pre_commit/lib/pre_commit/rspec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/pre_commit/lib/pre_commit/rspec_on_rails.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/pre_commit/spec/pre_commit/pre_commit_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/pre_commit/spec/pre_commit/rspec_on_rails_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/pre_commit/spec/spec_helper.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/pre_commit/spec/spec_suite.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/rake_tasks/examples.rake
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/rake_tasks/examples_with_rcov.rake
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/rake_tasks/failing_examples_with_html.rake
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/rake_tasks/verify_rcov.rake
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/README.jruby
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/autotest/discover_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/autotest/rspec_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/autotest_helper.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/autotest_matchers.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/rspec_suite.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/ruby_forker.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec.opts
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/example/configuration_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/example/example_group_class_definition_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/example/example_group_factory_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/example/example_group_methods_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/example/example_group_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/example/example_matcher_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/example/example_methods_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/example/example_runner_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/example/example_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/example/nested_example_group_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/example/pending_module_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/example/predicate_matcher_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/example/shared_example_group_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/example/subclassing_example_group_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/expectations/differs/default_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/expectations/extensions/object_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/expectations/fail_with_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/extensions/main_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/interop/test/unit/resources/spec_that_fails.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/interop/test/unit/resources/spec_that_passes.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/interop/test/unit/resources/spec_with_errors.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/interop/test/unit/resources/test_case_that_fails.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/interop/test/unit/resources/test_case_that_passes.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/interop/test/unit/resources/test_case_with_errors.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/interop/test/unit/resources/testsuite_adapter_spec_with_test_unit.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/interop/test/unit/spec_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/interop/test/unit/test_unit_spec_helper.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/interop/test/unit/testcase_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/interop/test/unit/testsuite_adapter_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/matchers/be_close_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/matchers/be_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/matchers/change_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/matchers/description_generation_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/matchers/eql_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/matchers/equal_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/matchers/exist_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/matchers/handler_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/matchers/has_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/matchers/have_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/matchers/include_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/matchers/match_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/matchers/matcher_methods_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/matchers/mock_constraint_matchers_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/matchers/operator_matcher_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/matchers/raise_error_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/matchers/respond_to_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/matchers/satisfy_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/matchers/simple_matcher_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/matchers/throw_symbol_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/mocks/any_number_of_times_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/mocks/argument_expectation_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/mocks/at_least_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/mocks/at_most_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/mocks/bug_report_10260_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/mocks/bug_report_10263.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/mocks/bug_report_11545_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/mocks/bug_report_15719_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/mocks/bug_report_7611_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/mocks/bug_report_7805_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/mocks/bug_report_8165_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/mocks/bug_report_8302_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/mocks/failing_mock_argument_constraints_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/mocks/mock_ordering_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/mocks/mock_space_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/mocks/mock_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/mocks/multiple_return_value_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/mocks/null_object_mock_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/mocks/once_counts_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/mocks/options_hash_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/mocks/partial_mock_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/mocks/partial_mock_using_mocks_directly_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/mocks/passing_mock_argument_constraints_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/mocks/precise_counts_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/mocks/record_messages_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/mocks/stub_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/mocks/twice_counts_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/package/bin_spec_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/runner/class_and_argument_parser_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/runner/command_line_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/runner/drb_command_line_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/runner/empty_file.txt
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/runner/examples.txt
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/runner/execution_context_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/runner/failed.txt
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/runner/formatter/failing_example_groups_formatter_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/runner/formatter/failing_examples_formatter_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/runner/formatter/html_formatted-1.8.4.html
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/runner/formatter/html_formatted-1.8.5-jruby.html
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/runner/formatter/html_formatted-1.8.5.html
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/runner/formatter/html_formatted-1.8.6-jruby.html
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/runner/formatter/html_formatted-1.8.6.html
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/runner/formatter/html_formatter_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/runner/formatter/profile_formatter_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/runner/formatter/progress_bar_formatter_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/runner/formatter/snippet_extractor_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/runner/formatter/spec_mate_formatter_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/runner/formatter/specdoc_formatter_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/runner/formatter/story/html_formatter_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/runner/formatter/story/plain_text_formatter_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/runner/formatter/text_mate_formatted-1.8.4.html
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/runner/formatter/text_mate_formatted-1.8.6.html
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/runner/heckle_runner_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/runner/heckler_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/runner/noisy_backtrace_tweaker_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/runner/option_parser_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/runner/options_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/runner/output_one_time_fixture.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/runner/output_one_time_fixture_runner.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/runner/output_one_time_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/runner/quiet_backtrace_tweaker_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/runner/reporter_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/runner/resources/a_bar.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/runner/resources/a_foo.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/runner/resources/a_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/runner/spec.opts
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/runner/spec_parser/spec_parser_fixture.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/runner/spec_parser_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/runner/spec_spaced.opts
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/runner_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/spec_classes.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/story/builders.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/story/extensions/main_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/story/extensions_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/story/given_scenario_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/story/runner/plain_text_story_runner_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/story/runner/scenario_collector_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/story/runner/scenario_runner_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/story/runner/story_mediator_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/story/runner/story_parser_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/story/runner/story_runner_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/story/runner_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/story/scenario_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/story/step_group_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/story/step_mother_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/story/step_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/story/story_helper.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/story/story_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/story/world_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/translator_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec_helper.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/stories/all.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/stories/example_groups/autogenerated_docstrings
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/stories/example_groups/example_group_with_should_methods
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/stories/example_groups/nested_groups
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/stories/example_groups/output
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/stories/example_groups/stories.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/stories/helper.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/stories/interop/examples_and_tests_together
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/stories/interop/stories.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/stories/interop/test_case_with_should_methods
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/stories/pending_stories/README
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/stories/resources/helpers/cmdline.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/stories/resources/helpers/story_helper.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/stories/resources/matchers/smart_match.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/stories/resources/spec/example_group_with_should_methods.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/stories/resources/spec/simple_spec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/stories/resources/steps/running_rspec.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/stories/resources/stories/failing_story.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/stories/resources/test/spec_and_test_together.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/stories/resources/test/test_case_with_should_methods.rb
-%%DATADIR%%/lib/ruby/gems/1.8/gems/sources-0.0.1/lib/sources.rb
-%%DATADIR%%/lib/ruby/gems/1.8/latest_source_cache
-%%DATADIR%%/lib/ruby/gems/1.8/source_cache
-%%DATADIR%%/lib/ruby/gems/1.8/specifications/rake-0.8.1.gemspec
-%%DATADIR%%/lib/ruby/gems/1.8/specifications/rspec-1.1.3.gemspec
-%%DATADIR%%/lib/ruby/gems/1.8/specifications/sources-0.0.1.gemspec
-%%DATADIR%%/lib/ruby/site_ruby/1.8/builtin/core_ext/symbol.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/builtin/java/ast.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/builtin/java/collections.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/builtin/java/exceptions.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/builtin/java/interfaces.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/builtin/java/regex.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/builtin/javasupport.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/builtin/javasupport/core_ext.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/builtin/javasupport/core_ext/array.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/builtin/javasupport/core_ext/kernel.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/builtin/javasupport/core_ext/module.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/builtin/javasupport/core_ext/object.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/builtin/javasupport/core_ext/proc.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/builtin/javasupport/core_ext/string.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/builtin/javasupport/java.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/builtin/javasupport/proxy/array.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/builtin/javasupport/proxy/base.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/builtin/javasupport/proxy/concrete.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/builtin/javasupport/proxy/interface.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/builtin/javasupport/utilities/array.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/builtin/javasupport/utilities/base.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/builtin/rdoc_jruby.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/compiler/builder.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/compiler/builder2.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/compiler/bytecode.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/compiler/signature.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/duby.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/duby/ast.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/duby/ast/call.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/duby/ast/class.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/duby/ast/flow.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/duby/ast/literal.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/duby/ast/local.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/duby/ast/method.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/duby/ast/structure.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/duby/c_compiler.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/duby/compiler.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/duby/compiler2.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/duby/compiler_old.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/duby/declaration.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/duby/jvm_compiler.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/duby/mapper.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/duby/plugin/math.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/duby/signature.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/duby/transform.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/duby/typer.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/duby/typer_old.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/gemconfigure.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/jruby/jrubyc.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/jruby/openssl/builtin.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/jruby/openssl/gem.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/jruby/openssl/gem_only.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/jruby/openssl/stub.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/rbconfig/datadir.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/rubygems.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/rubygems/builder.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/rubygems/command.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/rubygems/command_manager.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/rubygems/commands/build_command.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/rubygems/commands/cert_command.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/rubygems/commands/check_command.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/rubygems/commands/cleanup_command.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/rubygems/commands/contents_command.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/rubygems/commands/dependency_command.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/rubygems/commands/environment_command.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/rubygems/commands/fetch_command.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/rubygems/commands/generate_index_command.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/rubygems/commands/help_command.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/rubygems/commands/install_command.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/rubygems/commands/list_command.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/rubygems/commands/lock_command.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/rubygems/commands/mirror_command.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/rubygems/commands/outdated_command.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/rubygems/commands/pristine_command.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/rubygems/commands/query_command.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/rubygems/commands/rdoc_command.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/rubygems/commands/search_command.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/rubygems/commands/server_command.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/rubygems/commands/sources_command.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/rubygems/commands/specification_command.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/rubygems/commands/uninstall_command.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/rubygems/commands/unpack_command.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/rubygems/commands/update_command.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/rubygems/commands/which_command.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/rubygems/config_file.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/rubygems/defaults.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/rubygems/dependency.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/rubygems/dependency_installer.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/rubygems/dependency_list.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/rubygems/digest/digest_adapter.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/rubygems/digest/md5.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/rubygems/digest/sha1.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/rubygems/digest/sha2.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/rubygems/doc_manager.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/rubygems/exceptions.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/rubygems/ext.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/rubygems/ext/builder.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/rubygems/ext/configure_builder.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/rubygems/ext/ext_conf_builder.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/rubygems/ext/rake_builder.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/rubygems/format.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/rubygems/gem_open_uri.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/rubygems/gem_openssl.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/rubygems/gem_path_searcher.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/rubygems/gem_runner.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/rubygems/indexer.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/rubygems/indexer/abstract_index_builder.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/rubygems/indexer/latest_index_builder.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/rubygems/indexer/marshal_index_builder.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/rubygems/indexer/master_index_builder.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/rubygems/indexer/quick_index_builder.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/rubygems/install_update_options.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/rubygems/installer.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/rubygems/local_remote_options.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/rubygems/old_format.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/rubygems/open-uri.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/rubygems/package.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/rubygems/package/f_sync_dir.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/rubygems/package/tar_header.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/rubygems/package/tar_input.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/rubygems/package/tar_output.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/rubygems/package/tar_reader.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/rubygems/package/tar_reader/entry.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/rubygems/package/tar_writer.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/rubygems/platform.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/rubygems/remote_fetcher.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/rubygems/require_paths_builder.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/rubygems/requirement.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/rubygems/rubygems_version.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/rubygems/security.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/rubygems/server.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/rubygems/source_index.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/rubygems/source_info_cache.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/rubygems/source_info_cache_entry.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/rubygems/specification.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/rubygems/timer.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/rubygems/uninstaller.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/rubygems/user_interaction.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/rubygems/validator.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/rubygems/version.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/rubygems/version_option.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/securerandom.rb
-%%DATADIR%%/lib/ruby/site_ruby/1.8/ubygems.rb
-@dirrm %%DATADIR%%/lib/ruby/site_ruby/1.8/rubygems/package/tar_reader
-@dirrm %%DATADIR%%/lib/ruby/site_ruby/1.8/rubygems/package
-@dirrm %%DATADIR%%/lib/ruby/site_ruby/1.8/rubygems/indexer
-@dirrm %%DATADIR%%/lib/ruby/site_ruby/1.8/rubygems/ext
-@dirrm %%DATADIR%%/lib/ruby/site_ruby/1.8/rubygems/digest
-@dirrm %%DATADIR%%/lib/ruby/site_ruby/1.8/rubygems/commands
-@dirrm %%DATADIR%%/lib/ruby/site_ruby/1.8/rubygems
-@dirrm %%DATADIR%%/lib/ruby/site_ruby/1.8/rbconfig
-@dirrm %%DATADIR%%/lib/ruby/site_ruby/1.8/jruby/openssl
-@dirrm %%DATADIR%%/lib/ruby/site_ruby/1.8/jruby
-@dirrm %%DATADIR%%/lib/ruby/site_ruby/1.8/duby/plugin
-@dirrm %%DATADIR%%/lib/ruby/site_ruby/1.8/duby/ast
-@dirrm %%DATADIR%%/lib/ruby/site_ruby/1.8/duby
-@dirrm %%DATADIR%%/lib/ruby/site_ruby/1.8/compiler/pruby
-@dirrm %%DATADIR%%/lib/ruby/site_ruby/1.8/compiler/duby/plugin
-@dirrm %%DATADIR%%/lib/ruby/site_ruby/1.8/compiler/duby/ast
-@dirrm %%DATADIR%%/lib/ruby/site_ruby/1.8/compiler/duby
-@dirrm %%DATADIR%%/lib/ruby/site_ruby/1.8/compiler
-@dirrm %%DATADIR%%/lib/ruby/site_ruby/1.8/builtin/javasupport/utilities
-@dirrm %%DATADIR%%/lib/ruby/site_ruby/1.8/builtin/javasupport/proxy
-@dirrm %%DATADIR%%/lib/ruby/site_ruby/1.8/builtin/javasupport/core_ext
-@dirrm %%DATADIR%%/lib/ruby/site_ruby/1.8/builtin/javasupport
-@dirrm %%DATADIR%%/lib/ruby/site_ruby/1.8/builtin/java
-@dirrm %%DATADIR%%/lib/ruby/site_ruby/1.8/builtin/core_ext
-@dirrm %%DATADIR%%/lib/ruby/site_ruby/1.8/builtin
-@dirrm %%DATADIR%%/lib/ruby/site_ruby/1.8
-@dirrm %%DATADIR%%/lib/ruby/site_ruby
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/specifications
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/gems/sources-0.0.1/lib
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/gems/sources-0.0.1
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/stories/resources/test
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/stories/resources/stories
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/stories/resources/steps
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/stories/resources/spec
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/stories/resources/matchers
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/stories/resources/helpers
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/stories/resources
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/stories/pending_stories
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/stories/interop
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/stories/example_groups
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/stories
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/story/runner
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/story/extensions
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/story
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/runner/spec_parser
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/runner/resources
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/runner/formatter/story
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/runner/formatter
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/runner
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/package
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/mocks
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/matchers
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/interop/test/unit/resources
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/interop/test/unit
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/interop/test
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/interop
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/extensions
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/expectations/extensions
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/expectations/differs
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/expectations
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec/example
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/spec
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec/autotest
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/spec
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/rake_tasks
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/pre_commit/spec/pre_commit
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/pre_commit/spec
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/pre_commit/lib/pre_commit
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/pre_commit/lib
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/pre_commit
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/plugins/mock_frameworks
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/plugins
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/story/runner
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/story/extensions
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/story
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/formatter/story
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/formatter
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/rake
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/mocks/extensions
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/mocks
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/matchers
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/interop/test/unit/ui/console
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/interop/test/unit/ui
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/interop/test/unit
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/interop/test
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/interop
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/extensions
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/expectations/extensions
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/expectations/differs
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/expectations
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/example
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/autotest
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/failing_examples
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/examples/stories/steps
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/examples/stories/game-of-life/life
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/examples/stories/game-of-life/behaviour/stories
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/examples/stories/game-of-life/behaviour/examples
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/examples/stories/game-of-life/behaviour
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/examples/stories/game-of-life
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/examples/stories
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/examples/pure
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/examples
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3/bin
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/gems/rspec-1.1.3
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/data/unittest
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/data/statusreturn
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/data/rbext
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/data/rakelib
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/data/namespace
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/data/multidesc
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/data/imports
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/data/file_creation_task
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/data/dryrun
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/data/default
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/data/chains
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/data
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/contrib
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/gems/rake-0.8.1/lib/rake/loaders
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/gems/rake-0.8.1/lib/rake/contrib
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/gems/rake-0.8.1/lib/rake
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/gems/rake-0.8.1/lib
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/gems/rake-0.8.1/doc/release_notes
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/gems/rake-0.8.1/doc/example
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/gems/rake-0.8.1/doc
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/gems/rake-0.8.1/bin
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/gems/rake-0.8.1
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/gems
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Test/Unit/UI/Console/TestRunner
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Test/Unit/UI/Console
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Test/Unit/UI
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Test/Unit/TestSuiteAdapter
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Test/Unit/TestResult
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Test/Unit/TestCase
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Test/Unit/AutoRunner
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Test/Unit
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Test
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Symbol
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/String
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/VERSION
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Translator
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/World
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Story
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/StepMother
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/StepGroupHash
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/StepGroup
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Step
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Scenario
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Runner/StoryRunner
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Runner/StoryParser/WhenState
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Runner/StoryParser/ThenState
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Runner/StoryParser/StoryState
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Runner/StoryParser/State
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Runner/StoryParser/StartingState
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Runner/StoryParser/ScenarioState
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Runner/StoryParser/GivenState
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Runner/StoryParser
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Runner/StoryMediator/Story
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Runner/StoryMediator/Step
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Runner/StoryMediator/Scenario
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Runner/StoryMediator
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Runner/ScenarioRunner
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Runner/ScenarioCollector
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Runner/PlainTextStoryRunner
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Runner/IllegalStepError
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Runner
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/GivenScenario
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Extensions/Main/StoryRunnerStepGroupAdapter
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Extensions/Main
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story/Extensions
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Story
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/SpecParser
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Reporter/Failure
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Reporter
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/QuietBacktraceTweaker
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Options
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/OptionParser
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/NoisyBacktraceTweaker
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Heckler
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/HeckleRunner
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/TextMateFormatter
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/Story/PlainTextFormatter
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/Story/HtmlFormatter
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/Story
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/SpecdocFormatter
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/SnippetExtractor/NullConverter
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/SnippetExtractor
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/ProgressBarFormatter
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/ProfileFormatter
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/HtmlFormatter
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/FailingExamplesFormatter
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/FailingExampleGroupsFormatter
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/BaseTextFormatter
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter/BaseFormatter
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/Formatter
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/ExampleGroupRunner
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/DrbCommandLine
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/CommandLine
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/ClassAndArgumentsParser
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner/BacktraceTweaker
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Runner
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Rake/SpecTask
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Rake
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/StringArgConstraint
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/Space
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/RegexpArgConstraint
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/Proxy
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/OrderGroup
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/NumericArgConstraint
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/NoArgsConstraint
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/NegativeMessageExpectation
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/MockExpectationError
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/Mock
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/Methods
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/MessageExpectation
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/MatcherConstraint
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/LiteralArgConstraint
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/ExampleMethods
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/ErrorGenerator
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/DuckTypeArgConstraint
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/BooleanArgConstraint
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/BaseExpectation
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/ArgumentExpectation
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/ArgumentConstraintMatchers
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/AnyArgsConstraint
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/AnyArgConstraint
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks/AmbiguousReturnError
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Mocks
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Matchers/ThrowSymbol
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Matchers/SimpleMatcher
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Matchers/Satisfy
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Matchers/RespondTo
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Matchers/RaiseError
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Matchers/PositiveOperatorMatcher
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Matchers/NegativeOperatorMatcher
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Matchers/ModuleMethods
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Matchers/MatcherError
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Matchers/Match
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Matchers/Include
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Matchers/Have
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Matchers/Has
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Matchers/Exist
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Matchers/Equal
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Matchers/Eql
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Matchers/Change
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Matchers/BeClose
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Matchers/Be
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Matchers/BaseOperatorMatcher
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Matchers
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Extensions/Main
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Extensions
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Expectations/StringHelpers
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Expectations/ObjectExpectations
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Expectations/NegativeExpectationMatcherHandler
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Expectations/MatcherHandlerHelper
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Expectations/InvalidMatcherError
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Expectations/ExpectationNotMetError
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Expectations/ExpectationMatcherHandler
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Expectations/Differs/Default
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Expectations/Differs
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Expectations
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Example/SharedExampleGroup
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Example/PendingExampleFixedError
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Example/Pending
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Example/ModuleReopeningFix
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Example/ExamplePendingError
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Example/ExampleMethods
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Example/ExampleMatcher
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Example/ExampleGroupMethods
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Example/ExampleGroupFactory
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Example/ExampleGroup
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Example/Configuration
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec/Example
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Spec
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/RspecCommandError
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Regexp
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/RCov/VerifyTask
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/RCov
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Object
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Class
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Autotest/Rspec
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri/Autotest
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/ri
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/story/runner
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/story/extensions
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/story
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/runner/formatter/story
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/runner/formatter
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/runner
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/rake
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/mocks/extensions
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/mocks
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/matchers
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/interop/test/unit/ui/console
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/interop/test/unit/ui
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/interop/test/unit
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/interop/test
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/interop
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/extensions
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/expectations/extensions
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/expectations/differs
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/expectations
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec/example
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/spec
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib/autotest
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files/lib
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/files
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Test/Unit/UI/Console
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Test/Unit/UI
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Test/Unit
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Test
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Story/Runner/StoryParser
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Story/Runner/StoryMediator
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Story/Runner
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Story/Extensions/Main
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Story/Extensions
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Story
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Runner/Reporter
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Runner/Formatter/Story
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Runner/Formatter/SnippetExtractor
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Runner/Formatter
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Runner
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Rake
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Mocks
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Matchers
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Extensions
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Expectations/Differs
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Expectations
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec/Example
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Spec
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/RCov
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes/Autotest
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc/classes
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3/rdoc
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rspec-1.1.3
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Time
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Test/Unit/Collector/Dir
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Test/Unit/Collector
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Test/Unit
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Test
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Sys
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/String
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/SshFreshDirPublisher
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/SshFilePublisher
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/SshDirPublisher
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/RakeFileUtils
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/TestTask
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/TaskManager
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/TaskLib
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/TaskArguments
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/Task
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/SshFreshDirPublisher
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/SshFilePublisher
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/SshDirPublisher
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/RuleRecursionOverflowError
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/RubyForgePublisher
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/RDocTask
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/PackageTask
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/NameSpace
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/MultiTask
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/MakefileLoader
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/InvocationChain/EmptyInvocationChain
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/InvocationChain
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/GemPackageTask
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/FtpUploader
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/FtpFile
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/FileTask
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/FileList
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/FileCreationTask
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/EarlyTime
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/DefaultLoader
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/CompositePublisher
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/Cloneable
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/Application
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Module
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/FileUtils
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/CompositePublisher
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/files/lib/rake/loaders
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/files/lib/rake/contrib
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/files/lib/rake
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/files/lib
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/files/doc/release_notes
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/files/doc
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/files
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/classes/Test/Unit/Collector
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/classes/Test/Unit
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/classes/Test
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/classes/Rake/InvocationChain
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/classes/Rake
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/classes
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc/rake-0.8.1
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/doc
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8/cache
-@dirrm %%DATADIR%%/lib/ruby/gems/1.8
-@dirrm %%DATADIR%%/lib/ruby/gems
-@dirrm %%DATADIR%%/lib/ruby/1.8/xsd/xmlparser
-@dirrm %%DATADIR%%/lib/ruby/1.8/xsd/codegen
-@dirrm %%DATADIR%%/lib/ruby/1.8/xsd
-@dirrm %%DATADIR%%/lib/ruby/1.8/xmlrpc
-@dirrm %%DATADIR%%/lib/ruby/1.8/wsdl/xmlSchema
-@dirrm %%DATADIR%%/lib/ruby/1.8/wsdl/soap
-@dirrm %%DATADIR%%/lib/ruby/1.8/wsdl
-@dirrm %%DATADIR%%/lib/ruby/1.8/webrick/httpservlet
-@dirrm %%DATADIR%%/lib/ruby/1.8/webrick/httpauth
-@dirrm %%DATADIR%%/lib/ruby/1.8/webrick
-@dirrm %%DATADIR%%/lib/ruby/1.8/uri
-@dirrm %%DATADIR%%/lib/ruby/1.8/test/unit/util
-@dirrm %%DATADIR%%/lib/ruby/1.8/test/unit/ui/tk
-@dirrm %%DATADIR%%/lib/ruby/1.8/test/unit/ui/gtk2
-@dirrm %%DATADIR%%/lib/ruby/1.8/test/unit/ui/gtk
-@dirrm %%DATADIR%%/lib/ruby/1.8/test/unit/ui/fox
-@dirrm %%DATADIR%%/lib/ruby/1.8/test/unit/ui/console
-@dirrm %%DATADIR%%/lib/ruby/1.8/test/unit/ui
-@dirrm %%DATADIR%%/lib/ruby/1.8/test/unit/collector
-@dirrm %%DATADIR%%/lib/ruby/1.8/test/unit
-@dirrm %%DATADIR%%/lib/ruby/1.8/test
-@dirrm %%DATADIR%%/lib/ruby/1.8/soap/rpc
-@dirrm %%DATADIR%%/lib/ruby/1.8/soap/mapping
-@dirrm %%DATADIR%%/lib/ruby/1.8/soap/header
-@dirrm %%DATADIR%%/lib/ruby/1.8/soap/encodingstyle
-@dirrm %%DATADIR%%/lib/ruby/1.8/soap
-@dirrm %%DATADIR%%/lib/ruby/1.8/shell
-@dirrm %%DATADIR%%/lib/ruby/1.8/runit/cui
-@dirrm %%DATADIR%%/lib/ruby/1.8/runit
-@dirrm %%DATADIR%%/lib/ruby/1.8/rss/maker
-@dirrm %%DATADIR%%/lib/ruby/1.8/rss
-@dirrm %%DATADIR%%/lib/ruby/1.8/rinda
-@dirrm %%DATADIR%%/lib/ruby/1.8/rexml/validation
-@dirrm %%DATADIR%%/lib/ruby/1.8/rexml/parsers
-@dirrm %%DATADIR%%/lib/ruby/1.8/rexml/light
-@dirrm %%DATADIR%%/lib/ruby/1.8/rexml/formatters
-@dirrm %%DATADIR%%/lib/ruby/1.8/rexml/encodings
-@dirrm %%DATADIR%%/lib/ruby/1.8/rexml/dtd
-@dirrm %%DATADIR%%/lib/ruby/1.8/rexml
-@dirrm %%DATADIR%%/lib/ruby/1.8/rdoc/ri
-@dirrm %%DATADIR%%/lib/ruby/1.8/rdoc/parsers
-@dirrm %%DATADIR%%/lib/ruby/1.8/rdoc/markup/test
-@dirrm %%DATADIR%%/lib/ruby/1.8/rdoc/markup/simple_markup
-@dirrm %%DATADIR%%/lib/ruby/1.8/rdoc/markup/sample
-@dirrm %%DATADIR%%/lib/ruby/1.8/rdoc/markup
-@dirrm %%DATADIR%%/lib/ruby/1.8/rdoc/generators/template/xml
-@dirrm %%DATADIR%%/lib/ruby/1.8/rdoc/generators/template/html
-@dirrm %%DATADIR%%/lib/ruby/1.8/rdoc/generators/template/chm
-@dirrm %%DATADIR%%/lib/ruby/1.8/rdoc/generators/template
-@dirrm %%DATADIR%%/lib/ruby/1.8/rdoc/generators
-@dirrm %%DATADIR%%/lib/ruby/1.8/rdoc/dot
-@dirrm %%DATADIR%%/lib/ruby/1.8/rdoc
-@dirrm %%DATADIR%%/lib/ruby/1.8/racc
-@dirrm %%DATADIR%%/lib/ruby/1.8/optparse
-@dirrm %%DATADIR%%/lib/ruby/1.8/net
-@dirrm %%DATADIR%%/lib/ruby/1.8/irb/lc/ja
-@dirrm %%DATADIR%%/lib/ruby/1.8/irb/lc
-@dirrm %%DATADIR%%/lib/ruby/1.8/irb/ext
-@dirrm %%DATADIR%%/lib/ruby/1.8/irb/cmd
-@dirrm %%DATADIR%%/lib/ruby/1.8/irb
-@dirrm %%DATADIR%%/lib/ruby/1.8/io
-@dirrm %%DATADIR%%/lib/ruby/1.8/drb
-@dirrm %%DATADIR%%/lib/ruby/1.8/date
-@dirrm %%DATADIR%%/lib/ruby/1.8/cgi/session
-@dirrm %%DATADIR%%/lib/ruby/1.8/cgi
-@dirrm %%DATADIR%%/lib/ruby/1.8/bigdecimal
-@dirrm %%DATADIR%%/lib/ruby/1.8
-@dirrm %%DATADIR%%/lib/ruby
-@dirrm %%DATADIR%%/lib
-@dirrm %%DATADIR%%
-@dirrm %%PORTDOCS%%%%EXAMPLESDIR%%/duby
-@dirrm %%PORTDOCS%%%%EXAMPLESDIR%%
-@dirrm %%PORTDOCS%%%%DOCSDIR%%/rbyaml
-@dirrm %%PORTDOCS%%%%DOCSDIR%%/patches/rubylib
-@dirrm %%PORTDOCS%%%%DOCSDIR%%/patches/rails
-@dirrm %%PORTDOCS%%%%DOCSDIR%%/patches
-@dirrm %%PORTDOCS%%%%DOCSDIR%%/jvyaml
-@dirrm %%PORTDOCS%%%%DOCSDIR%%/api
-@dirrm %%PORTDOCS%%%%DOCSDIR%%
+share/%%PORTNAME%%-%%PORTVERSION%%/bin/gem
+share/%%PORTNAME%%-%%PORTVERSION%%/bin/gem_mirror
+share/%%PORTNAME%%-%%PORTVERSION%%/bin/gem_server
+share/%%PORTNAME%%-%%PORTVERSION%%/bin/gemlock
+share/%%PORTNAME%%-%%PORTVERSION%%/bin/gemri
+share/%%PORTNAME%%-%%PORTVERSION%%/bin/gemwhich
+share/%%PORTNAME%%-%%PORTVERSION%%/bin/generate_yaml_index.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/bin/index_gem_repository.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/bin/jgem
+share/%%PORTNAME%%-%%PORTVERSION%%/bin/jirb
+share/%%PORTNAME%%-%%PORTVERSION%%/bin/jirb_swing
+share/%%PORTNAME%%-%%PORTVERSION%%/bin/jruby
+share/%%PORTNAME%%-%%PORTVERSION%%/bin/jruby-ng
+share/%%PORTNAME%%-%%PORTVERSION%%/bin/jruby-ng-server
+share/%%PORTNAME%%-%%PORTVERSION%%/bin/jruby.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/bin/jrubyc
+share/%%PORTNAME%%-%%PORTVERSION%%/bin/rake
+share/%%PORTNAME%%-%%PORTVERSION%%/bin/rdoc
+share/%%PORTNAME%%-%%PORTVERSION%%/bin/ri
+share/%%PORTNAME%%-%%PORTVERSION%%/bin/spec
+share/%%PORTNAME%%-%%PORTVERSION%%/bin/spec_translator
+share/%%PORTNAME%%-%%PORTVERSION%%/bin/testrb
+share/%%PORTNAME%%-%%PORTVERSION%%/bin/update_rubygems
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/bsf.jar
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/jruby.jar
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/profile-all.properties
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/profile-ruby.properties
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/profile.jar
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/.document
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/English.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/Env.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/README
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/abbrev.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/base64.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/benchmark.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/bigdecimal/jacobian.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/bigdecimal/ludcmp.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/bigdecimal/math.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/bigdecimal/newton.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/bigdecimal/util.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/cgi-lib.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/cgi.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/cgi/.document
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/cgi/session.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/cgi/session/pstore.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/complex.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/csv.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/date.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/date/format.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/date2.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/debug.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/delegate.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/dl.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/drb.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/drb/acl.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/drb/drb.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/drb/eq.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/drb/extserv.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/drb/extservm.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/drb/gw.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/drb/invokemethod.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/drb/observer.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/drb/ssl.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/drb/timeridconv.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/drb/unix.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/e2mmap.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/erb.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/eregex.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/expect.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/fileutils.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/finalize.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/find.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/forwardable.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/ftools.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/generator.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/getoptlong.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/getopts.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/gserver.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/importenv.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/io/nonblock.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/ipaddr.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/irb.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/irb/cmd/chws.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/irb/cmd/fork.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/irb/cmd/help.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/irb/cmd/load.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/irb/cmd/nop.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/irb/cmd/pushws.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/irb/cmd/subirb.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/irb/completion.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/irb/context.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/irb/ext/change-ws.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/irb/ext/history.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/irb/ext/loader.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/irb/ext/math-mode.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/irb/ext/multi-irb.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/irb/ext/save-history.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/irb/ext/tracer.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/irb/ext/use-loader.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/irb/ext/workspaces.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/irb/extend-command.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/irb/frame.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/irb/help.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/irb/init.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/irb/input-method.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/irb/lc/error.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/irb/lc/help-message
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/irb/lc/ja/error.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/irb/lc/ja/help-message
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/irb/locale.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/irb/notifier.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/irb/output-method.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/irb/ruby-lex.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/irb/ruby-token.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/irb/slex.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/irb/version.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/irb/workspace.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/irb/ws-for-case-2.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/irb/xmp.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/jcode.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/kconv.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/logger.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/mailread.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/mathn.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/matrix.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/md5.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/mkmf.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/monitor.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/mutex_m.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/net/ftp.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/net/http.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/net/https.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/net/imap.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/net/pop.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/net/protocol.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/net/smtp.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/net/telnet.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/observer.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/open-uri.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/open3.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/optparse.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/optparse/date.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/optparse/shellwords.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/optparse/time.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/optparse/uri.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/optparse/version.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/ostruct.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/parsearg.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/parsedate.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/pathname.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/ping.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/pp.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/prettyprint.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/profile.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/profiler.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/pstore.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/racc/parser.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rational.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rdoc/README
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rdoc/code_objects.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rdoc/diagram.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rdoc/dot/dot.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rdoc/generators/chm_generator.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rdoc/generators/html_generator.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rdoc/generators/ri_generator.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rdoc/generators/template/chm/chm.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rdoc/generators/template/html/hefss.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rdoc/generators/template/html/html.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rdoc/generators/template/html/kilmer.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rdoc/generators/template/html/old_html.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rdoc/generators/template/html/one_page_html.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rdoc/generators/template/xml/rdf.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rdoc/generators/template/xml/xml.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rdoc/generators/xml_generator.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rdoc/markup/.document
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rdoc/markup/sample/rdoc2latex.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rdoc/markup/sample/sample.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rdoc/markup/simple_markup.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rdoc/markup/simple_markup/fragments.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rdoc/markup/simple_markup/inline.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rdoc/markup/simple_markup/lines.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rdoc/markup/simple_markup/preprocess.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rdoc/markup/simple_markup/to_flow.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rdoc/markup/simple_markup/to_html.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rdoc/markup/simple_markup/to_latex.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rdoc/markup/test/AllTests.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rdoc/markup/test/TestInline.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rdoc/markup/test/TestParse.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rdoc/options.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rdoc/parsers/parse_c.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rdoc/parsers/parse_f95.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rdoc/parsers/parse_rb.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rdoc/parsers/parse_simple.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rdoc/parsers/parserfactory.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rdoc/rdoc.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rdoc/ri/ri_cache.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rdoc/ri/ri_descriptions.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rdoc/ri/ri_display.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rdoc/ri/ri_driver.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rdoc/ri/ri_formatter.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rdoc/ri/ri_options.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rdoc/ri/ri_paths.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rdoc/ri/ri_reader.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rdoc/ri/ri_util.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rdoc/ri/ri_writer.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rdoc/template.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rdoc/tokenstream.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rdoc/usage.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/readbytes.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/resolv-replace.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/resolv.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rexml/attlistdecl.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rexml/attribute.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rexml/cdata.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rexml/child.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rexml/comment.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rexml/doctype.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rexml/document.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rexml/dtd/attlistdecl.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rexml/dtd/dtd.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rexml/dtd/elementdecl.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rexml/dtd/entitydecl.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rexml/dtd/notationdecl.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rexml/element.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rexml/encoding.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rexml/encodings/CP-1252.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rexml/encodings/EUC-JP.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rexml/encodings/ICONV.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rexml/encodings/ISO-8859-1.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rexml/encodings/ISO-8859-15.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rexml/encodings/SHIFT-JIS.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rexml/encodings/SHIFT_JIS.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rexml/encodings/UNILE.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rexml/encodings/US-ASCII.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rexml/encodings/UTF-16.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rexml/encodings/UTF-8.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rexml/entity.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rexml/formatters/default.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rexml/formatters/pretty.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rexml/formatters/transitive.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rexml/functions.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rexml/instruction.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rexml/light/node.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rexml/namespace.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rexml/node.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rexml/output.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rexml/parent.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rexml/parseexception.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rexml/parsers/baseparser.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rexml/parsers/lightparser.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rexml/parsers/pullparser.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rexml/parsers/sax2parser.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rexml/parsers/streamparser.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rexml/parsers/treeparser.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rexml/parsers/ultralightparser.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rexml/parsers/xpathparser.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rexml/quickpath.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rexml/rexml.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rexml/sax2listener.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rexml/source.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rexml/streamlistener.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rexml/syncenumerator.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rexml/text.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rexml/validation/relaxng.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rexml/validation/validation.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rexml/validation/validationexception.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rexml/xmldecl.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rexml/xmltokens.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rexml/xpath.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rexml/xpath_parser.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rinda/rinda.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rinda/ring.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rinda/tuplespace.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rss.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rss/0.9.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rss/1.0.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rss/2.0.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rss/content.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rss/converter.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rss/dublincore.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rss/image.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rss/maker.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rss/maker/0.9.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rss/maker/1.0.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rss/maker/2.0.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rss/maker/base.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rss/maker/content.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rss/maker/dublincore.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rss/maker/image.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rss/maker/syndication.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rss/maker/taxonomy.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rss/maker/trackback.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rss/parser.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rss/rexmlparser.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rss/rss.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rss/syndication.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rss/taxonomy.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rss/trackback.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rss/utils.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rss/xml-stylesheet.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rss/xmlparser.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rss/xmlscanner.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rubyunit.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/runit/assert.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/runit/cui/testrunner.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/runit/error.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/runit/testcase.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/runit/testresult.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/runit/testsuite.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/runit/topublic.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/scanf.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/set.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/sha1.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/shell.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/shell/builtin-command.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/shell/command-processor.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/shell/error.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/shell/filter.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/shell/process-controller.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/shell/system-command.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/shell/version.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/shellwords.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/singleton.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/soap/attachment.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/soap/baseData.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/soap/element.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/soap/encodingstyle/aspDotNetHandler.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/soap/encodingstyle/handler.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/soap/encodingstyle/literalHandler.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/soap/encodingstyle/soapHandler.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/soap/generator.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/soap/header/handler.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/soap/header/handlerset.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/soap/header/simplehandler.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/soap/httpconfigloader.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/soap/mapping.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/soap/mapping/factory.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/soap/mapping/mapping.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/soap/mapping/registry.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/soap/mapping/rubytypeFactory.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/soap/mapping/typeMap.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/soap/mapping/wsdlencodedregistry.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/soap/mapping/wsdlliteralregistry.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/soap/marshal.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/soap/mimemessage.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/soap/netHttpClient.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/soap/parser.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/soap/processor.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/soap/property.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/soap/rpc/cgistub.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/soap/rpc/driver.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/soap/rpc/element.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/soap/rpc/httpserver.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/soap/rpc/proxy.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/soap/rpc/router.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/soap/rpc/rpc.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/soap/rpc/soaplet.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/soap/rpc/standaloneServer.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/soap/soap.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/soap/streamHandler.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/soap/wsdlDriver.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/sync.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/tempfile.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/test/unit.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/test/unit/assertionfailederror.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/test/unit/assertions.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/test/unit/autorunner.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/test/unit/collector.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/test/unit/collector/dir.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/test/unit/collector/objectspace.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/test/unit/error.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/test/unit/failure.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/test/unit/testcase.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/test/unit/testresult.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/test/unit/testsuite.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/test/unit/ui/console/testrunner.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/test/unit/ui/fox/testrunner.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/test/unit/ui/gtk/testrunner.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/test/unit/ui/gtk2/testrunner.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/test/unit/ui/testrunnermediator.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/test/unit/ui/testrunnerutilities.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/test/unit/ui/tk/testrunner.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/test/unit/util/backtracefilter.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/test/unit/util/observable.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/test/unit/util/procwrapper.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/thread.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/thwait.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/time.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/timeout.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/tmpdir.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/tracer.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/tsort.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/un.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/uri.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/uri/common.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/uri/ftp.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/uri/generic.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/uri/http.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/uri/https.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/uri/ldap.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/uri/mailto.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/webrick.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/webrick/accesslog.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/webrick/cgi.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/webrick/compat.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/webrick/config.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/webrick/cookie.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/webrick/htmlutils.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/webrick/httpauth.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/webrick/httpauth/authenticator.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/webrick/httpauth/basicauth.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/webrick/httpauth/digestauth.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/webrick/httpauth/htdigest.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/webrick/httpauth/htgroup.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/webrick/httpauth/htpasswd.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/webrick/httpauth/userdb.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/webrick/httpproxy.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/webrick/httprequest.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/webrick/httpresponse.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/webrick/https.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/webrick/httpserver.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/webrick/httpservlet.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/webrick/httpservlet/abstract.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/webrick/httpservlet/cgi_runner.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/webrick/httpservlet/cgihandler.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/webrick/httpservlet/erbhandler.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/webrick/httpservlet/filehandler.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/webrick/httpservlet/prochandler.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/webrick/httpstatus.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/webrick/httputils.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/webrick/httpversion.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/webrick/log.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/webrick/server.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/webrick/ssl.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/webrick/utils.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/webrick/version.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/wsdl/binding.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/wsdl/data.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/wsdl/definitions.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/wsdl/documentation.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/wsdl/import.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/wsdl/importer.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/wsdl/info.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/wsdl/message.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/wsdl/operation.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/wsdl/operationBinding.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/wsdl/param.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/wsdl/parser.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/wsdl/part.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/wsdl/port.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/wsdl/portType.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/wsdl/service.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/wsdl/soap/address.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/wsdl/soap/binding.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/wsdl/soap/body.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/wsdl/soap/cgiStubCreator.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/wsdl/soap/classDefCreator.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/wsdl/soap/classDefCreatorSupport.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/wsdl/soap/clientSkeltonCreator.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/wsdl/soap/complexType.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/wsdl/soap/data.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/wsdl/soap/definitions.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/wsdl/soap/driverCreator.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/wsdl/soap/element.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/wsdl/soap/fault.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/wsdl/soap/header.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/wsdl/soap/headerfault.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/wsdl/soap/mappingRegistryCreator.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/wsdl/soap/methodDefCreator.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/wsdl/soap/operation.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/wsdl/soap/servantSkeltonCreator.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/wsdl/soap/standaloneServerStubCreator.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/wsdl/soap/wsdl2ruby.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/wsdl/types.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/wsdl/wsdl.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/wsdl/xmlSchema/all.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/wsdl/xmlSchema/annotation.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/wsdl/xmlSchema/any.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/wsdl/xmlSchema/attribute.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/wsdl/xmlSchema/choice.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/wsdl/xmlSchema/complexContent.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/wsdl/xmlSchema/complexType.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/wsdl/xmlSchema/content.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/wsdl/xmlSchema/data.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/wsdl/xmlSchema/element.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/wsdl/xmlSchema/enumeration.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/wsdl/xmlSchema/import.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/wsdl/xmlSchema/importer.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/wsdl/xmlSchema/include.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/wsdl/xmlSchema/length.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/wsdl/xmlSchema/parser.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/wsdl/xmlSchema/pattern.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/wsdl/xmlSchema/schema.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/wsdl/xmlSchema/sequence.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/wsdl/xmlSchema/simpleContent.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/wsdl/xmlSchema/simpleExtension.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/wsdl/xmlSchema/simpleRestriction.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/wsdl/xmlSchema/simpleType.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/wsdl/xmlSchema/unique.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/wsdl/xmlSchema/xsd2ruby.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/xmlrpc/.document
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/xmlrpc/README.txt
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/xmlrpc/base64.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/xmlrpc/client.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/xmlrpc/config.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/xmlrpc/create.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/xmlrpc/datetime.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/xmlrpc/httpserver.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/xmlrpc/marshal.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/xmlrpc/parser.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/xmlrpc/server.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/xmlrpc/utils.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/xsd/charset.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/xsd/codegen.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/xsd/codegen/classdef.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/xsd/codegen/commentdef.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/xsd/codegen/gensupport.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/xsd/codegen/methoddef.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/xsd/codegen/moduledef.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/xsd/datatypes.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/xsd/datatypes1999.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/xsd/iconvcharset.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/xsd/mapping.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/xsd/namedelements.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/xsd/ns.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/xsd/qname.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/xsd/xmlparser.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/xsd/xmlparser/parser.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/xsd/xmlparser/rexmlparser.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/xsd/xmlparser/xmlparser.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/xsd/xmlparser/xmlscanner.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/cache/rake-0.8.1.gem
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/cache/rspec-1.1.4.gem
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/classes/CompositePublisher.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/classes/FileUtils.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/classes/Module.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/classes/Rake/Application.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/classes/Rake/Cloneable.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/classes/Rake/CompositePublisher.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/classes/Rake/DefaultLoader.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/classes/Rake/EarlyTime.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/classes/Rake/FileCreationTask.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/classes/Rake/FileList.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/classes/Rake/FileTask.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/classes/Rake/FtpFile.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/classes/Rake/FtpUploader.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/classes/Rake/GemPackageTask.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/classes/Rake/InvocationChain.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/classes/Rake/InvocationChain/EmptyInvocationChain.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/classes/Rake/MakefileLoader.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/classes/Rake/MultiTask.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/classes/Rake/NameSpace.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/classes/Rake/PackageTask.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/classes/Rake/RDocTask.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/classes/Rake/RubyForgePublisher.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/classes/Rake/RuleRecursionOverflowError.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/classes/Rake/SshDirPublisher.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/classes/Rake/SshFilePublisher.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/classes/Rake/SshFreshDirPublisher.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/classes/Rake/Task.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/classes/Rake/TaskArguments.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/classes/Rake/TaskLib.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/classes/Rake/TaskManager.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/classes/Rake/TestTask.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/classes/RakeFileUtils.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/classes/SshDirPublisher.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/classes/SshFilePublisher.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/classes/SshFreshDirPublisher.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/classes/String.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/classes/Sys.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/classes/Test.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/classes/Test/Unit.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/classes/Test/Unit/Collector.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/classes/Test/Unit/Collector/Dir.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/classes/Time.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/created.rid
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/files/CHANGES.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/files/MIT-LICENSE.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/files/README.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/files/TODO.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/files/doc/glossary_rdoc.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/files/doc/proto_rake_rdoc.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/files/doc/rakefile_rdoc.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/files/doc/rational_rdoc.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/files/doc/release_notes/rake-0_4_14_rdoc.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/files/doc/release_notes/rake-0_4_15_rdoc.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/files/doc/release_notes/rake-0_5_0_rdoc.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/files/doc/release_notes/rake-0_5_3_rdoc.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/files/doc/release_notes/rake-0_5_4_rdoc.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/files/doc/release_notes/rake-0_6_0_rdoc.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/files/doc/release_notes/rake-0_7_0_rdoc.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/files/doc/release_notes/rake-0_7_1_rdoc.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/files/doc/release_notes/rake-0_7_2_rdoc.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/files/doc/release_notes/rake-0_7_3_rdoc.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/files/lib/rake/classic_namespace_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/files/lib/rake/clean_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/files/lib/rake/contrib/compositepublisher_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/files/lib/rake/contrib/ftptools_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/files/lib/rake/contrib/publisher_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/files/lib/rake/contrib/rubyforgepublisher_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/files/lib/rake/contrib/sshpublisher_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/files/lib/rake/contrib/sys_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/files/lib/rake/gempackagetask_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/files/lib/rake/loaders/makefile_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/files/lib/rake/packagetask_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/files/lib/rake/rake_test_loader_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/files/lib/rake/rdoctask_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/files/lib/rake/ruby182_test_unit_fix_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/files/lib/rake/runtest_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/files/lib/rake/tasklib_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/files/lib/rake/testtask_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/files/lib/rake_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/fr_class_index.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/fr_file_index.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/fr_method_index.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/index.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/rdoc-style.css
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/CompositePublisher/add-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/CompositePublisher/cdesc-CompositePublisher.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/CompositePublisher/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/CompositePublisher/upload-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/FileUtils/cdesc-FileUtils.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/FileUtils/ruby-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/FileUtils/safe_ln-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/FileUtils/sh-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/FileUtils/split_all-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Module/cdesc-Module.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Module/const_missing-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Module/rake_extension-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/Application/add_import-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/Application/add_loader-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/Application/cdesc-Application.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/Application/collect_tasks-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/Application/command_line_options-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/Application/const_warning-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/Application/display_prerequisites-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/Application/display_tasks_and_comments-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/Application/do_option-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/Application/handle_options-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/Application/have_rakefile-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/Application/help-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/Application/init-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/Application/invoke_task-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/Application/load_imports-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/Application/load_rakefile-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/Application/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/Application/options-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/Application/parse_task_string-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/Application/rake_require-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/Application/rakefile_location-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/Application/run-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/Application/standard_exception_handling-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/Application/top_level-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/Application/truncate-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/Cloneable/cdesc-Cloneable.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/Cloneable/clone-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/Cloneable/dup-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/CompositePublisher/add-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/CompositePublisher/cdesc-CompositePublisher.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/CompositePublisher/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/CompositePublisher/upload-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/DefaultLoader/cdesc-DefaultLoader.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/DefaultLoader/load-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/EarlyTime/%3c%3d%3e-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/EarlyTime/cdesc-EarlyTime.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/EarlyTime/to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/FileCreationTask/cdesc-FileCreationTask.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/FileCreationTask/needed%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/FileCreationTask/timestamp-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/FileList/%2a-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/FileList/%3d%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/FileList/%5b%5d-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/FileList/add-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/FileList/calculate_exclude_regexp-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/FileList/cdesc-FileList.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/FileList/clear_exclude-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/FileList/egrep-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/FileList/exclude%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/FileList/exclude-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/FileList/existing%21-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/FileList/existing-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/FileList/ext-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/FileList/gsub%21-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/FileList/gsub-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/FileList/import-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/FileList/include-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/FileList/is_a%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/FileList/kind_of%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/FileList/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/FileList/pathmap-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/FileList/resolve-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/FileList/sub%21-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/FileList/sub-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/FileList/to_a-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/FileList/to_ary-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/FileList/to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/FileTask/cdesc-FileTask.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/FileTask/needed%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/FileTask/timestamp-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/FtpFile/cdesc-FtpFile.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/FtpFile/date-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/FtpFile/directory%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/FtpFile/mode-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/FtpFile/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/FtpFile/path-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/FtpFile/symlink%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/FtpFile/time-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/FtpUploader/cdesc-FtpUploader.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/FtpUploader/close-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/FtpUploader/connect-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/FtpUploader/makedirs-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/FtpUploader/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/FtpUploader/upload_files-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/GemPackageTask/cdesc-GemPackageTask.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/GemPackageTask/define-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/GemPackageTask/gem_file-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/GemPackageTask/init-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/GemPackageTask/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/InvocationChain/EmptyInvocationChain/append-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/InvocationChain/EmptyInvocationChain/cdesc-EmptyInvocationChain.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/InvocationChain/EmptyInvocationChain/member%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/InvocationChain/EmptyInvocationChain/to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/InvocationChain/append-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/InvocationChain/append-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/InvocationChain/cdesc-InvocationChain.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/InvocationChain/member%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/InvocationChain/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/InvocationChain/to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/MakefileLoader/cdesc-MakefileLoader.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/MakefileLoader/load-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/MultiTask/cdesc-MultiTask.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/MultiTask/invoke_prerequisites-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/NameSpace/%5b%5d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/NameSpace/cdesc-NameSpace.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/NameSpace/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/NameSpace/tasks-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/PackageTask/cdesc-PackageTask.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/PackageTask/define-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/PackageTask/init-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/PackageTask/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/PackageTask/package_dir_path-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/PackageTask/package_name-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/PackageTask/tar_bz2_file-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/PackageTask/tar_gz_file-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/PackageTask/tgz_file-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/PackageTask/zip_file-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/RDocTask/cdesc-RDocTask.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/RDocTask/define-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/RDocTask/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/RDocTask/option_list-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/RDocTask/option_string-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/RDocTask/quote-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/RubyForgePublisher/cdesc-RubyForgePublisher.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/RubyForgePublisher/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/RuleRecursionOverflowError/add_target-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/RuleRecursionOverflowError/cdesc-RuleRecursionOverflowError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/RuleRecursionOverflowError/message-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/RuleRecursionOverflowError/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/SshDirPublisher/cdesc-SshDirPublisher.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/SshDirPublisher/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/SshDirPublisher/upload-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/SshFilePublisher/cdesc-SshFilePublisher.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/SshFilePublisher/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/SshFilePublisher/upload-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/SshFreshDirPublisher/cdesc-SshFreshDirPublisher.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/SshFreshDirPublisher/upload-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/Task/%5b%5d-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/Task/add_description-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/Task/arg_names-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/Task/cdesc-Task.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/Task/clear-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/Task/comment%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/Task/create_rule-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/Task/define_task-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/Task/enhance-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/Task/execute-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/Task/inspect-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/Task/investigation-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/Task/invoke-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/Task/invoke_prerequisites-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/Task/invoke_with_call_chain-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/Task/name-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/Task/needed%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/Task/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/Task/scope_name-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/Task/set_arg_names-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/Task/source-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/Task/sources-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/Task/task_defined%3f-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/Task/tasks-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/Task/timestamp-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/Task/to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/TaskArguments/%5b%5d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/TaskArguments/cdesc-TaskArguments.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/TaskArguments/each-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/TaskArguments/inspect-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/TaskArguments/lookup-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/TaskArguments/method_missing-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/TaskArguments/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/TaskArguments/new_scope-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/TaskArguments/to_hash-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/TaskArguments/to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/TaskLib/cdesc-TaskLib.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/TaskLib/paste-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/TaskManager/%5b%5d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/TaskManager/cdesc-TaskManager.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/TaskManager/clear-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/TaskManager/create_rule-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/TaskManager/current_scope-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/TaskManager/define_task-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/TaskManager/enhance_with_matching_rule-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/TaskManager/in_namespace-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/TaskManager/intern-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/TaskManager/lookup-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/TaskManager/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/TaskManager/resolve_args-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/TaskManager/synthesize_file_task-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/TaskManager/tasks-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/TestTask/cdesc-TestTask.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/TestTask/define-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/TestTask/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/TestTask/test_files%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/cdesc-Rake.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/RakeFileUtils/cdesc-RakeFileUtils.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/RakeFileUtils/nowrite-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/RakeFileUtils/verbose-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/RakeFileUtils/when_writing-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/SshDirPublisher/cdesc-SshDirPublisher.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/SshDirPublisher/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/SshDirPublisher/upload-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/SshFilePublisher/cdesc-SshFilePublisher.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/SshFilePublisher/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/SshFilePublisher/upload-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/SshFreshDirPublisher/cdesc-SshFreshDirPublisher.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/SshFreshDirPublisher/upload-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/String/cdesc-String.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/String/ext-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/String/pathmap-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/String/pathmap_explode-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/String/pathmap_partial-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/String/pathmap_replace-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Sys/cdesc-Sys.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Sys/copy-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Sys/copy_files-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Sys/delete-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Sys/delete_all-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Sys/for_files-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Sys/indir-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Sys/install-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Sys/link-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Sys/link_files-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Sys/log-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Sys/makedirs-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Sys/quiet-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Sys/ruby-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Sys/run-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Sys/split_all-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Sys/symlink-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Sys/symlink_files-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Sys/verbose-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Test/Unit/Collector/Dir/cdesc-Dir.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Test/Unit/Collector/Dir/collect_file-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Test/Unit/Collector/cdesc-Collector.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Test/Unit/cdesc-Unit.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Test/cdesc-Test.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Time/%3c%3d%3e-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Time/cdesc-Time.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/created.rid
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Autotest.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Autotest/Rspec.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Class.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Object.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/RCov.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/RCov/VerifyTask.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Regexp.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/RspecCommandError.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Example.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Example/Configuration.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Example/ExampleGroup.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Example/ExampleGroupFactory.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Example/ExampleGroupMethods.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Example/ExampleMatcher.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Example/ExampleMethods.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Example/ExamplePendingError.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Example/ModuleInclusionWarnings.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Example/ModuleInclusionWarnings/MethodDispatcher.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Example/ModuleReopeningFix.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Example/Pending.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Example/PendingExampleFixedError.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Example/SharedExampleGroup.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Expectations.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Expectations/Differs.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Expectations/Differs/Default.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Expectations/ExpectationMatcherHandler.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Expectations/ExpectationNotMetError.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Expectations/InvalidMatcherError.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Expectations/MatcherHandlerHelper.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Expectations/NegativeExpectationMatcherHandler.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Expectations/ObjectExpectations.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Expectations/StringHelpers.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Extensions.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Extensions/Main.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Matchers.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Matchers/BaseOperatorMatcher.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Matchers/Exist.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Matchers/MatcherError.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Matchers/ModuleMethods.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Matchers/SimpleMatcher.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/MetaClass.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Mocks.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Mocks/AmbiguousReturnError.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Mocks/AnyArgConstraint.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Mocks/AnyArgsConstraint.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Mocks/ArgumentConstraintMatchers.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Mocks/ArgumentExpectation.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Mocks/BaseExpectation.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Mocks/BooleanArgConstraint.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Mocks/DuckTypeArgConstraint.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Mocks/ErrorGenerator.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Mocks/ExampleMethods.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Mocks/HashIncludingConstraint.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Mocks/LiteralArgConstraint.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Mocks/MatcherConstraint.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Mocks/MessageExpectation.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Mocks/Methods.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Mocks/Mock.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Mocks/MockExpectationError.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Mocks/NegativeMessageExpectation.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Mocks/NoArgsConstraint.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Mocks/NumericArgConstraint.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Mocks/OrderGroup.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Mocks/Proxy.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Mocks/RegexpArgConstraint.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Mocks/Space.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Mocks/StringArgConstraint.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Rake.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Rake/SpecTask.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Runner.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Runner/BacktraceTweaker.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Runner/ClassAndArgumentsParser.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Runner/CommandLine.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Runner/DrbCommandLine.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Runner/ExampleGroupRunner.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Runner/Formatter.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Runner/Formatter/BaseFormatter.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Runner/Formatter/BaseTextFormatter.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Runner/Formatter/FailingExampleGroupsFormatter.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Runner/Formatter/FailingExamplesFormatter.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Runner/Formatter/HtmlFormatter.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Runner/Formatter/NestedTextFormatter.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Runner/Formatter/ProfileFormatter.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Runner/Formatter/ProgressBarFormatter.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Runner/Formatter/SnippetExtractor/NullConverter.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Runner/Formatter/SpecdocFormatter.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Runner/Formatter/Story.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Runner/Formatter/Story/HtmlFormatter.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Runner/Formatter/Story/PlainTextFormatter.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Runner/Formatter/TextMateFormatter.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Runner/HeckleRunner.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Runner/Heckler.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Runner/NoisyBacktraceTweaker.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Runner/OptionParser.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Runner/Options.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Runner/QuietBacktraceTweaker.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Runner/Reporter.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Runner/Reporter/Failure.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Runner/SpecParser.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Story.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Story/Extensions.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Story/Extensions/Main.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Story/Extensions/Main/StoryRunnerStepGroupAdapter.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Story/GivenScenario.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Story/Runner.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Story/Runner/IllegalStepError.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Story/Runner/PlainTextStoryRunner.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Story/Runner/ScenarioCollector.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Story/Runner/ScenarioRunner.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Story/Runner/StoryMediator.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Story/Runner/StoryMediator/Scenario.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Story/Runner/StoryMediator/Step.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Story/Runner/StoryMediator/Story.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Story/Runner/StoryParser.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Story/Runner/StoryParser/GivenState.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Story/Runner/StoryParser/ScenarioState.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Story/Runner/StoryParser/StartingState.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Story/Runner/StoryParser/State.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Story/Runner/StoryParser/StoryState.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Story/Runner/StoryParser/ThenState.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Story/Runner/StoryParser/WhenState.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Story/Runner/StoryRunner.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Story/Scenario.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Story/Step.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Story/StepGroup.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Story/StepGroupHash.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Story/StepMother.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Story/Story.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Story/World.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Translator.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/VERSION.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/String.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Symbol.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Test.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Test/Unit.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Test/Unit/AutoRunner.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Test/Unit/TestCase.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Test/Unit/TestResult.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Test/Unit/TestSuiteAdapter.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Test/Unit/UI.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Test/Unit/UI/Console.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Test/Unit/UI/Console/TestRunner.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/created.rid
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/CHANGES.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/MIT-LICENSE.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/README.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/UPGRADE.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/autotest/discover_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/autotest/rspec_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/example/configuration_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/example/errors_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/example/example_group_factory_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/example/example_group_methods_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/example/example_group_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/example/example_matcher_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/example/example_methods_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/example/module_inclusion_warnings_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/example/module_reopening_fix_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/example/pending_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/example/shared_example_group_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/example_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/expectations/differs/default_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/expectations/errors_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/expectations/extensions/object_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/expectations/extensions/string_and_symbol_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/expectations/extensions_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/expectations/handler_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/expectations_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/extensions/class_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/extensions/main_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/extensions/metaclass_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/extensions/object_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/extensions_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/interop/test/unit/autorunner_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/interop/test/unit/testcase_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/interop/test/unit/testresult_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/interop/test/unit/testsuite_adapter_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/interop/test/unit/ui/console/testrunner_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/interop/test_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/matchers/be_close_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/matchers/be_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/matchers/change_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/matchers/eql_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/matchers/equal_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/matchers/exist_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/matchers/has_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/matchers/have_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/matchers/include_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/matchers/match_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/matchers/operator_matcher_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/matchers/raise_error_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/matchers/respond_to_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/matchers/satisfy_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/matchers/simple_matcher_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/matchers/throw_symbol_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/matchers_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/mocks/argument_constraint_matchers_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/mocks/argument_expectation_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/mocks/error_generator_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/mocks/errors_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/mocks/extensions/object_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/mocks/extensions_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/mocks/framework_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/mocks/message_expectation_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/mocks/methods_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/mocks/mock_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/mocks/order_group_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/mocks/proxy_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/mocks/space_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/mocks/spec_methods_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/mocks_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/rake/spectask_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/rake/verify_rcov_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/runner/backtrace_tweaker_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/runner/class_and_arguments_parser_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/runner/command_line_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/runner/drb_command_line_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/runner/example_group_runner_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/runner/formatter/base_formatter_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/runner/formatter/base_text_formatter_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/runner/formatter/failing_example_groups_formatter_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/runner/formatter/failing_examples_formatter_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/runner/formatter/html_formatter_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/runner/formatter/nested_text_formatter_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/runner/formatter/profile_formatter_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/runner/formatter/progress_bar_formatter_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/runner/formatter/snippet_extractor_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/runner/formatter/specdoc_formatter_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/runner/formatter/story/html_formatter_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/runner/formatter/story/plain_text_formatter_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/runner/formatter/text_mate_formatter_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/runner/heckle_runner_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/runner/heckle_runner_unsupported_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/runner/option_parser_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/runner/options_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/runner/reporter_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/runner/spec_parser_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/runner_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/story/extensions/main_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/story/extensions/regexp_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/story/extensions/string_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/story/extensions_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/story/given_scenario_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/story/runner/plain_text_story_runner_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/story/runner/scenario_collector_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/story/runner/scenario_runner_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/story/runner/story_mediator_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/story/runner/story_parser_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/story/runner/story_runner_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/story/runner_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/story/scenario_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/story/step_group_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/story/step_mother_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/story/step_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/story/story_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/story/world_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/story_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/translator_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/version_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec_rb.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/fr_class_index.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/fr_file_index.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/fr_method_index.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/index.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/rdoc-style.css
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Autotest/Rspec/cdesc-Rspec.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Autotest/Rspec/consolidate_failures-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Autotest/Rspec/make_test_cmd-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Autotest/Rspec/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Autotest/Rspec/spec_command-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Autotest/Rspec/spec_commands-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Autotest/cdesc-Autotest.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Class/cdesc-Class.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Class/subclass-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Object/args_and_options-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Object/cdesc-Object.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/RCov/VerifyTask/cdesc-VerifyTask.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/RCov/VerifyTask/define-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/RCov/VerifyTask/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/RCov/cdesc-RCov.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Regexp/arg_regexp-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Regexp/cdesc-Regexp.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Regexp/step_name-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/RspecCommandError/cdesc-RspecCommandError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Example/Configuration/after-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Example/Configuration/append_after-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Example/Configuration/append_before-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Example/Configuration/before-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Example/Configuration/cdesc-Configuration.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Example/Configuration/include-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Example/Configuration/mock_with-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Example/Configuration/predicate_matchers-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Example/Configuration/prepend_after-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Example/Configuration/prepend_before-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Example/ExampleGroup/cdesc-ExampleGroup.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Example/ExampleGroup/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Example/ExampleGroupFactory/cdesc-ExampleGroupFactory.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Example/ExampleGroupFactory/create_example_group-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Example/ExampleGroupFactory/default-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Example/ExampleGroupFactory/determine_superclass-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Example/ExampleGroupFactory/get-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Example/ExampleGroupFactory/register-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Example/ExampleGroupFactory/reset-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Example/ExampleGroupMethods/after-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Example/ExampleGroupMethods/append_after-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Example/ExampleGroupMethods/append_before-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Example/ExampleGroupMethods/before-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Example/ExampleGroupMethods/cdesc-ExampleGroupMethods.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Example/ExampleGroupMethods/context-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Example/ExampleGroupMethods/describe-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Example/ExampleGroupMethods/described_type-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Example/ExampleGroupMethods/description-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Example/ExampleGroupMethods/description_text-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Example/ExampleGroupMethods/inherited-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Example/ExampleGroupMethods/it-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Example/ExampleGroupMethods/it_should_behave_like-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Example/ExampleGroupMethods/predicate_matchers-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Example/ExampleGroupMethods/prepend_after-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Example/ExampleGroupMethods/prepend_before-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Example/ExampleGroupMethods/register-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Example/ExampleGroupMethods/registration_backtrace-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Example/ExampleGroupMethods/remove_after-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Example/ExampleGroupMethods/run-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Example/ExampleGroupMethods/run_after_each-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Example/ExampleGroupMethods/run_before_each-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Example/ExampleGroupMethods/set_description-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Example/ExampleGroupMethods/setup-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Example/ExampleGroupMethods/specify-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Example/ExampleGroupMethods/teardown-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Example/ExampleGroupMethods/xit-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Example/ExampleGroupMethods/xspecify-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Example/ExampleMatcher/cdesc-ExampleMatcher.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Example/ExampleMatcher/example_group_regex-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Example/ExampleMatcher/example_group_regex_not_considering_modules-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Example/ExampleMatcher/example_group_with_before_all_regexp-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Example/ExampleMatcher/example_regexp-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Example/ExampleMatcher/matches%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Example/ExampleMatcher/matches_example_not_considering_modules%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Example/ExampleMatcher/matches_literal_example%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Example/ExampleMatcher/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Example/ExampleMethods/__full_description-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Example/ExampleMethods/after_example-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Example/ExampleMethods/before_example-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Example/ExampleMethods/cdesc-ExampleMethods.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Example/ExampleMethods/description-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Example/ExampleMethods/execute-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Example/ExampleMethods/implementation_backtrace-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Example/ExampleMethods/instance_variable_hash-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Example/ExampleMethods/run_with_description_capturing-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Example/ExampleMethods/set_instance_variables_from_hash-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Example/ExampleMethods/violated-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Example/ExamplePendingError/cdesc-ExamplePendingError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Example/ModuleInclusionWarnings/MethodDispatcher/call-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Example/ModuleInclusionWarnings/MethodDispatcher/cdesc-MethodDispatcher.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Example/ModuleInclusionWarnings/MethodDispatcher/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Example/ModuleInclusionWarnings/MethodDispatcher/respond_to%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Example/ModuleInclusionWarnings/cdesc-ModuleInclusionWarnings.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Example/ModuleInclusionWarnings/respond_to%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Example/ModuleReopeningFix/cdesc-ModuleReopeningFix.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Example/ModuleReopeningFix/child_modules-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Example/ModuleReopeningFix/include-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Example/ModuleReopeningFix/included-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Example/Pending/cdesc-Pending.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Example/Pending/pending-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Example/PendingExampleFixedError/cdesc-PendingExampleFixedError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Example/SharedExampleGroup/add_shared_example_group-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Example/SharedExampleGroup/cdesc-SharedExampleGroup.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Example/SharedExampleGroup/execute_in_class_hierarchy-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Example/SharedExampleGroup/find_shared_example_group-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Example/SharedExampleGroup/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Example/SharedExampleGroup/shared_example_groups-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Example/cdesc-Example.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Expectations/Differs/Default/cdesc-Default.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Expectations/Differs/Default/context_lines-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Expectations/Differs/Default/diff_as_object-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Expectations/Differs/Default/diff_as_string-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Expectations/Differs/Default/format-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Expectations/Differs/Default/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Expectations/Differs/cdesc-Differs.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Expectations/ExpectationMatcherHandler/cdesc-ExpectationMatcherHandler.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Expectations/ExpectationMatcherHandler/handle_matcher-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Expectations/ExpectationNotMetError/cdesc-ExpectationNotMetError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Expectations/InvalidMatcherError/cdesc-InvalidMatcherError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Expectations/MatcherHandlerHelper/cdesc-MatcherHandlerHelper.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Expectations/MatcherHandlerHelper/describe_matcher-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Expectations/NegativeExpectationMatcherHandler/cdesc-NegativeExpectationMatcherHandler.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Expectations/NegativeExpectationMatcherHandler/handle_matcher-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Expectations/ObjectExpectations/cdesc-ObjectExpectations.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Expectations/ObjectExpectations/should-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Expectations/ObjectExpectations/should_not-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Expectations/StringHelpers/cdesc-StringHelpers.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Expectations/StringHelpers/starts_with%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Expectations/cdesc-Expectations.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Extensions/Main/cdesc-Main.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Extensions/Main/context-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Extensions/Main/describe-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Extensions/Main/share_as-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Extensions/Main/share_examples_for-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Extensions/Main/shared_examples_for-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Extensions/cdesc-Extensions.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Matchers/BaseOperatorMatcher/%3c%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Matchers/BaseOperatorMatcher/%3c-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Matchers/BaseOperatorMatcher/%3d%3d%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Matchers/BaseOperatorMatcher/%3d%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Matchers/BaseOperatorMatcher/%3d%7e-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Matchers/BaseOperatorMatcher/%3e%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Matchers/BaseOperatorMatcher/%3e-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Matchers/BaseOperatorMatcher/cdesc-BaseOperatorMatcher.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Matchers/BaseOperatorMatcher/fail_with_message-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Matchers/BaseOperatorMatcher/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Matchers/Be/cdesc-Be.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Matchers/BeClose/cdesc-BeClose.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Matchers/Change/cdesc-Change.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Matchers/Eql/cdesc-Eql.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Matchers/Equal/cdesc-Equal.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Matchers/Exist/cdesc-Exist.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Matchers/Exist/failure_message-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Matchers/Exist/matches%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Matchers/Exist/negative_failure_message-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Matchers/Has/cdesc-Has.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Matchers/Have/cdesc-Have.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Matchers/Include/cdesc-Include.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Matchers/Match/cdesc-Match.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Matchers/MatcherError/cdesc-MatcherError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Matchers/ModuleMethods/cdesc-ModuleMethods.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Matchers/ModuleMethods/clear_generated_description-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Matchers/NegativeOperatorMatcher/cdesc-NegativeOperatorMatcher.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Matchers/PositiveOperatorMatcher/cdesc-PositiveOperatorMatcher.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Matchers/RaiseError/cdesc-RaiseError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Matchers/RespondTo/cdesc-RespondTo.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Matchers/Satisfy/cdesc-Satisfy.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Matchers/SimpleMatcher/cdesc-SimpleMatcher.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Matchers/SimpleMatcher/failure_message-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Matchers/SimpleMatcher/matches%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Matchers/SimpleMatcher/negative_failure_message-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Matchers/SimpleMatcher/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Matchers/ThrowSymbol/cdesc-ThrowSymbol.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Matchers/be-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Matchers/be_close-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Matchers/cdesc-Matchers.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Matchers/change-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Matchers/eql-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Matchers/equal-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Matchers/exist-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Matchers/have-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Matchers/have_at_least-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Matchers/have_at_most-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Matchers/have_exactly-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Matchers/include-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Matchers/match-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Matchers/raise_error-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Matchers/respond_to-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Matchers/satisfy-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Matchers/simple_matcher-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Matchers/throw_symbol-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/MetaClass/cdesc-MetaClass.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/MetaClass/metaclass-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/AmbiguousReturnError/cdesc-AmbiguousReturnError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/AnyArgConstraint/%3d%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/AnyArgConstraint/cdesc-AnyArgConstraint.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/AnyArgConstraint/matches%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/AnyArgConstraint/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/AnyArgsConstraint/cdesc-AnyArgsConstraint.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/AnyArgsConstraint/description-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/ArgumentConstraintMatchers/any_args-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/ArgumentConstraintMatchers/anything-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/ArgumentConstraintMatchers/boolean-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/ArgumentConstraintMatchers/cdesc-ArgumentConstraintMatchers.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/ArgumentConstraintMatchers/duck_type-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/ArgumentConstraintMatchers/hash_including-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/ArgumentConstraintMatchers/no_args-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/ArgumentExpectation/cdesc-ArgumentExpectation.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/ArgumentExpectation/check_args-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/ArgumentExpectation/constraints_match%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/ArgumentExpectation/convert_constraint-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/ArgumentExpectation/is_matcher%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/ArgumentExpectation/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/ArgumentExpectation/process_arg_constraints-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/ArgumentExpectation/warn_deprecated-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/BaseExpectation/and_raise-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/BaseExpectation/and_return-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/BaseExpectation/and_throw-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/BaseExpectation/and_yield-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/BaseExpectation/cdesc-BaseExpectation.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/BaseExpectation/expected_args-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/BaseExpectation/invoke-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/BaseExpectation/invoke_consecutive_return_block-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/BaseExpectation/invoke_method_block-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/BaseExpectation/invoke_return_block-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/BaseExpectation/invoke_with_yield-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/BaseExpectation/matches-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/BaseExpectation/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/BooleanArgConstraint/%3d%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/BooleanArgConstraint/cdesc-BooleanArgConstraint.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/BooleanArgConstraint/matches%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/BooleanArgConstraint/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/DuckTypeArgConstraint/cdesc-DuckTypeArgConstraint.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/DuckTypeArgConstraint/description-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/DuckTypeArgConstraint/matches%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/DuckTypeArgConstraint/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/ErrorGenerator/cdesc-ErrorGenerator.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/ErrorGenerator/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/ErrorGenerator/opts-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/ErrorGenerator/raise_block_failed_error-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/ErrorGenerator/raise_expectation_error-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/ErrorGenerator/raise_missing_block_error-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/ErrorGenerator/raise_out_of_order_error-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/ErrorGenerator/raise_unexpected_message_args_error-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/ErrorGenerator/raise_unexpected_message_error-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/ErrorGenerator/raise_wrong_arity_error-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/ExampleMethods/cdesc-ExampleMethods.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/ExampleMethods/mock-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/ExampleMethods/stub-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/ExampleMethods/stub_everything-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/HashIncludingConstraint/%3d%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/HashIncludingConstraint/cdesc-HashIncludingConstraint.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/HashIncludingConstraint/description-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/HashIncludingConstraint/matches%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/HashIncludingConstraint/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/LiteralArgConstraint/cdesc-LiteralArgConstraint.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/LiteralArgConstraint/matches%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/LiteralArgConstraint/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/MatcherConstraint/cdesc-MatcherConstraint.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/MatcherConstraint/matches%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/MatcherConstraint/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/MessageExpectation/advise-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/MessageExpectation/any_number_of_times-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/MessageExpectation/at_least-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/MessageExpectation/at_most-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/MessageExpectation/cdesc-MessageExpectation.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/MessageExpectation/exactly-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/MessageExpectation/expected_messages_received%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/MessageExpectation/generate_error-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/MessageExpectation/ignoring_args%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/MessageExpectation/matches_at_least_count%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/MessageExpectation/matches_at_most_count%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/MessageExpectation/matches_exact_count%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/MessageExpectation/matches_name_but_not_args-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/MessageExpectation/negative_expectation_for%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/MessageExpectation/never-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/MessageExpectation/once-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/MessageExpectation/ordered-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/MessageExpectation/set_expected_received_count-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/MessageExpectation/similar_messages-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/MessageExpectation/times-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/MessageExpectation/twice-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/MessageExpectation/verify_messages_received-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/MessageExpectation/with-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/Methods/cdesc-Methods.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/Methods/should_not_receive-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/Methods/should_receive-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/Methods/stub%21-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/Mock/%3d%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/Mock/cdesc-Mock.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/Mock/inspect-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/Mock/method_missing-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/Mock/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/MockExpectationError/cdesc-MockExpectationError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/NegativeMessageExpectation/cdesc-NegativeMessageExpectation.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/NegativeMessageExpectation/negative_expectation_for%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/NegativeMessageExpectation/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/NoArgsConstraint/%3d%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/NoArgsConstraint/cdesc-NoArgsConstraint.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/NoArgsConstraint/description-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/NumericArgConstraint/cdesc-NumericArgConstraint.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/NumericArgConstraint/matches%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/NumericArgConstraint/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/OrderGroup/cdesc-OrderGroup.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/OrderGroup/consume-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/OrderGroup/handle_order_constraint-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/OrderGroup/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/OrderGroup/ready_for%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/OrderGroup/register-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/Proxy/add_message_expectation-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/Proxy/add_negative_message_expectation-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/Proxy/add_stub-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/Proxy/cdesc-Proxy.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/Proxy/has_negative_expectation%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/Proxy/message_received-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/Proxy/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/Proxy/null_object%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/Proxy/raise_unexpected_message_args_error-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/Proxy/raise_unexpected_message_error-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/Proxy/received_message%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/Proxy/reset-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/RegexpArgConstraint/cdesc-RegexpArgConstraint.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/RegexpArgConstraint/matches%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/RegexpArgConstraint/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/Space/add-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/Space/cdesc-Space.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/Space/reset_all-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/Space/verify_all-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/StringArgConstraint/cdesc-StringArgConstraint.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/StringArgConstraint/matches%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/StringArgConstraint/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/cdesc-Mocks.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Rake/SpecTask/attr_accessor-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Rake/SpecTask/cdesc-SpecTask.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Rake/SpecTask/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Rake/cdesc-Rake.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/BacktraceTweaker/cdesc-BacktraceTweaker.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/BacktraceTweaker/clean_up_double_slashes-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/ClassAndArgumentsParser/cdesc-ClassAndArgumentsParser.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/ClassAndArgumentsParser/parse-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/CommandLine/cdesc-CommandLine.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/CommandLine/run-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/DrbCommandLine/cdesc-DrbCommandLine.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/DrbCommandLine/run-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/ExampleGroupRunner/cdesc-ExampleGroupRunner.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/ExampleGroupRunner/example_groups-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/ExampleGroupRunner/finish-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/ExampleGroupRunner/load_files-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/ExampleGroupRunner/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/ExampleGroupRunner/number_of_examples-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/ExampleGroupRunner/prepare-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/ExampleGroupRunner/reporter-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/ExampleGroupRunner/reverse-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/ExampleGroupRunner/run-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/BaseFormatter/add_example_group-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/BaseFormatter/cdesc-BaseFormatter.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/BaseFormatter/close-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/BaseFormatter/dump_failure-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/BaseFormatter/dump_pending-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/BaseFormatter/dump_summary-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/BaseFormatter/example_failed-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/BaseFormatter/example_passed-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/BaseFormatter/example_pending-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/BaseFormatter/example_started-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/BaseFormatter/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/BaseFormatter/start-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/BaseFormatter/start_dump-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/BaseTextFormatter/backtrace_line-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/BaseTextFormatter/blue-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/BaseTextFormatter/cdesc-BaseTextFormatter.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/BaseTextFormatter/close-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/BaseTextFormatter/colour%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/BaseTextFormatter/colour-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/BaseTextFormatter/colourise-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/BaseTextFormatter/dry_run%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/BaseTextFormatter/dump_failure-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/BaseTextFormatter/dump_pending-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/BaseTextFormatter/dump_summary-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/BaseTextFormatter/example_pending-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/BaseTextFormatter/format_backtrace-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/BaseTextFormatter/green-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/BaseTextFormatter/magenta-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/BaseTextFormatter/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/BaseTextFormatter/output_to_tty%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/BaseTextFormatter/red-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/BaseTextFormatter/yellow-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/FailingExampleGroupsFormatter/cdesc-FailingExampleGroupsFormatter.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/FailingExampleGroupsFormatter/dump_failure-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/FailingExampleGroupsFormatter/dump_summary-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/FailingExampleGroupsFormatter/example_failed-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/FailingExamplesFormatter/cdesc-FailingExamplesFormatter.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/FailingExamplesFormatter/dump_failure-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/FailingExamplesFormatter/dump_summary-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/FailingExamplesFormatter/example_failed-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/HtmlFormatter/add_example_group-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/HtmlFormatter/cdesc-HtmlFormatter.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/HtmlFormatter/dump_failure-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/HtmlFormatter/dump_summary-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/HtmlFormatter/example_failed-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/HtmlFormatter/example_group_number-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/HtmlFormatter/example_number-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/HtmlFormatter/example_passed-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/HtmlFormatter/example_pending-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/HtmlFormatter/example_started-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/HtmlFormatter/extra_failure_content-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/HtmlFormatter/global_scripts-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/HtmlFormatter/global_styles-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/HtmlFormatter/html_header-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/HtmlFormatter/method_missing-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/HtmlFormatter/move_progress-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/HtmlFormatter/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/HtmlFormatter/percent_done-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/HtmlFormatter/report_header-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/HtmlFormatter/start-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/HtmlFormatter/start_dump-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/NestedTextFormatter/add_example_group-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/NestedTextFormatter/cdesc-NestedTextFormatter.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/NestedTextFormatter/current_indentation-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/NestedTextFormatter/described_example_group_chain-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/NestedTextFormatter/example_failed-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/NestedTextFormatter/example_passed-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/NestedTextFormatter/example_pending-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/NestedTextFormatter/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/ProfileFormatter/cdesc-ProfileFormatter.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/ProfileFormatter/example_passed-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/ProfileFormatter/example_started-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/ProfileFormatter/method_missing-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/ProfileFormatter/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/ProfileFormatter/start-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/ProfileFormatter/start_dump-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/ProgressBarFormatter/cdesc-ProgressBarFormatter.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/ProgressBarFormatter/example_failed-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/ProgressBarFormatter/example_passed-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/ProgressBarFormatter/example_pending-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/ProgressBarFormatter/method_missing-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/ProgressBarFormatter/start_dump-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/SnippetExtractor/NullConverter/cdesc-NullConverter.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/SnippetExtractor/NullConverter/convert-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/SnippetExtractor/cdesc-SnippetExtractor.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/SpecdocFormatter/add_example_group-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/SpecdocFormatter/cdesc-SpecdocFormatter.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/SpecdocFormatter/example_failed-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/SpecdocFormatter/example_passed-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/SpecdocFormatter/example_pending-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/Story/HtmlFormatter/cdesc-HtmlFormatter.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/Story/HtmlFormatter/collected_steps-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/Story/HtmlFormatter/found_scenario-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/Story/HtmlFormatter/print_step-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/Story/HtmlFormatter/run_ended-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/Story/HtmlFormatter/run_started-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/Story/HtmlFormatter/scenario_ended-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/Story/HtmlFormatter/scenario_failed-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/Story/HtmlFormatter/scenario_pending-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/Story/HtmlFormatter/scenario_started-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/Story/HtmlFormatter/scenario_succeeded-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/Story/HtmlFormatter/step_failed-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/Story/HtmlFormatter/step_pending-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/Story/HtmlFormatter/step_succeeded-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/Story/HtmlFormatter/step_upcoming-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/Story/HtmlFormatter/story_ended-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/Story/HtmlFormatter/story_started-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/Story/PlainTextFormatter/cdesc-PlainTextFormatter.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/Story/PlainTextFormatter/collected_steps-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/Story/PlainTextFormatter/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/Story/PlainTextFormatter/run_ended-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/Story/PlainTextFormatter/run_started-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/Story/PlainTextFormatter/scenario_failed-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/Story/PlainTextFormatter/scenario_pending-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/Story/PlainTextFormatter/scenario_started-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/Story/PlainTextFormatter/scenario_succeeded-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/Story/PlainTextFormatter/step_failed-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/Story/PlainTextFormatter/step_pending-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/Story/PlainTextFormatter/step_succeeded-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/Story/PlainTextFormatter/step_upcoming-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/Story/PlainTextFormatter/story_ended-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/Story/PlainTextFormatter/story_started-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/Story/cdesc-Story.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/TextMateFormatter/backtrace_line-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/TextMateFormatter/cdesc-TextMateFormatter.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/cdesc-Formatter.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/HeckleRunner/cdesc-HeckleRunner.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/HeckleRunner/heckle_class_or_module-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/HeckleRunner/heckle_method-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/HeckleRunner/heckle_with-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/HeckleRunner/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/HeckleRunner/verify_constant-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Heckler/cdesc-Heckler.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Heckler/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Heckler/tests_pass%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/NoisyBacktraceTweaker/cdesc-NoisyBacktraceTweaker.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/NoisyBacktraceTweaker/tweak_backtrace-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/OptionParser/cdesc-OptionParser.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/OptionParser/invoke_requires-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/OptionParser/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/OptionParser/order%21-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/OptionParser/parse-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/OptionParser/parse_drb-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/OptionParser/parse_generate_options-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/OptionParser/parse_help-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/OptionParser/parse_options_file-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/OptionParser/parse_version-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/OptionParser/stdout%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/OptionParser/write_generated_options-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Options/add_example_group-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Options/cdesc-Options.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Options/colour%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Options/custom_runner%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Options/custom_runner-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Options/default_differ-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Options/differ_class%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Options/examples_run%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Options/examples_should_be_run%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Options/examples_should_not_be_run-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Options/files_to_load-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Options/formatters-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Options/heckle-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Options/load_class-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Options/load_formatters-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Options/load_heckle_runner-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Options/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Options/number_of_examples-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Options/parse_diff-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Options/parse_example-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Options/parse_format-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Options/remove_example_group-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Options/run_examples-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Options/set_spec_from_line_number-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Options/sorted_files-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Options/sorter-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Options/stderr%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Options/story_formatters-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/QuietBacktraceTweaker/cdesc-QuietBacktraceTweaker.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/QuietBacktraceTweaker/tweak_backtrace-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Reporter/Failure/cdesc-Failure.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Reporter/Failure/example_name-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Reporter/Failure/expectation_not_met%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Reporter/Failure/header-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Reporter/Failure/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Reporter/Failure/pending_fixed%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Reporter/add_example_group-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Reporter/cdesc-Reporter.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Reporter/dump-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Reporter/end-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Reporter/example_failed-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Reporter/example_finished-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Reporter/example_started-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Reporter/failure-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Reporter/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Reporter/start-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/SpecParser/cdesc-SpecParser.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/SpecParser/consider_example_for_best_match-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/SpecParser/consider_example_groups_for_best_match-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/SpecParser/is_best_match%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/SpecParser/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/SpecParser/parse_backtrace-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/SpecParser/spec_name_for-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/cdesc-Runner.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/configure-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Extensions/Main/Story-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Extensions/Main/StoryRunnerStepGroupAdapter/cdesc-StoryRunnerStepGroupAdapter.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Extensions/Main/StoryRunnerStepGroupAdapter/run-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Extensions/Main/cdesc-Main.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Extensions/Main/run_story-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Extensions/Main/steps_for-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Extensions/Main/with_steps_for-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Extensions/cdesc-Extensions.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/GivenScenario/cdesc-GivenScenario.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/GivenScenario/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/GivenScenario/perform-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Runner/IllegalStepError/cdesc-IllegalStepError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Runner/IllegalStepError/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Runner/PlainTextStoryRunner/%5b%5d%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Runner/PlainTextStoryRunner/cdesc-PlainTextStoryRunner.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Runner/PlainTextStoryRunner/load-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Runner/PlainTextStoryRunner/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Runner/PlainTextStoryRunner/run-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Runner/PlainTextStoryRunner/steps-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Runner/ScenarioCollector/Scenario-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Runner/ScenarioCollector/cdesc-ScenarioCollector.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Runner/ScenarioCollector/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Runner/ScenarioRunner/add_listener-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Runner/ScenarioRunner/cdesc-ScenarioRunner.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Runner/ScenarioRunner/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Runner/ScenarioRunner/run-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Runner/StoryMediator/Scenario/add_step-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Runner/StoryMediator/Scenario/cdesc-Scenario.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Runner/StoryMediator/Scenario/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Runner/StoryMediator/Scenario/to_proc-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Runner/StoryMediator/Step/cdesc-Step.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Runner/StoryMediator/Step/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Runner/StoryMediator/Step/to_proc-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Runner/StoryMediator/Story/add_scenario-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Runner/StoryMediator/Story/cdesc-Story.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Runner/StoryMediator/Story/current_scenario-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Runner/StoryMediator/Story/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Runner/StoryMediator/Story/to_proc-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Runner/StoryMediator/cdesc-StoryMediator.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Runner/StoryMediator/create_given-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Runner/StoryMediator/create_given_scenario-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Runner/StoryMediator/create_scenario-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Runner/StoryMediator/create_story-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Runner/StoryMediator/create_then-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Runner/StoryMediator/create_when-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Runner/StoryMediator/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Runner/StoryMediator/run_stories-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Runner/StoryMediator/stories-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Runner/StoryParser/GivenState/cdesc-GivenState.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Runner/StoryParser/GivenState/given-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Runner/StoryParser/GivenState/one_more_of_the_same-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Runner/StoryParser/ScenarioState/cdesc-ScenarioState.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Runner/StoryParser/ScenarioState/one_more_of_the_same-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Runner/StoryParser/ScenarioState/scenario-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Runner/StoryParser/StartingState/cdesc-StartingState.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Runner/StoryParser/StartingState/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Runner/StoryParser/State/cdesc-State.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Runner/StoryParser/State/eof-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Runner/StoryParser/State/event-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Runner/StoryParser/State/given-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Runner/StoryParser/State/given_scenario-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Runner/StoryParser/State/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Runner/StoryParser/State/other-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Runner/StoryParser/State/outcome-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Runner/StoryParser/State/remove_tag_from-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Runner/StoryParser/State/scenario-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Runner/StoryParser/State/story-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Runner/StoryParser/StoryState/cdesc-StoryState.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Runner/StoryParser/StoryState/eof-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Runner/StoryParser/StoryState/event-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Runner/StoryParser/StoryState/given-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Runner/StoryParser/StoryState/one_more_of_the_same-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Runner/StoryParser/StoryState/other-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Runner/StoryParser/StoryState/outcome-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Runner/StoryParser/StoryState/scenario-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Runner/StoryParser/StoryState/story-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Runner/StoryParser/ThenState/cdesc-ThenState.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Runner/StoryParser/ThenState/one_more_of_the_same-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Runner/StoryParser/ThenState/outcome-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Runner/StoryParser/WhenState/cdesc-WhenState.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Runner/StoryParser/WhenState/event-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Runner/StoryParser/WhenState/one_more_of_the_same-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Runner/StoryParser/add_story_line-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Runner/StoryParser/cdesc-StoryParser.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Runner/StoryParser/create_given-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Runner/StoryParser/create_given_scenario-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Runner/StoryParser/create_scenario-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Runner/StoryParser/create_story-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Runner/StoryParser/create_then-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Runner/StoryParser/create_when-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Runner/StoryParser/init_story-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Runner/StoryParser/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Runner/StoryParser/parse-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Runner/StoryParser/process_line-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Runner/StoryParser/states-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Runner/StoryParser/transition_to-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Runner/StoryRunner/Story-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Runner/StoryRunner/add_listener-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Runner/StoryRunner/cdesc-StoryRunner.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Runner/StoryRunner/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Runner/StoryRunner/run_stories-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Runner/StoryRunner/scenario_from_current_story-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Runner/StoryRunner/scenario_from_current_story-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Runner/cdesc-Runner.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Runner/create_story_runner-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Runner/dry_run-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Runner/register_listener-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Scenario/cdesc-Scenario.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Scenario/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Step/cdesc-Step.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Step/init_module-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Step/matches%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Step/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Step/parse_args-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Step/perform-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Step/sanitize-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/StepGroup/%3c%3c-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/StepGroup/Given-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/StepGroup/GivenScenario-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/StepGroup/Then-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/StepGroup/When-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/StepGroup/add-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/StepGroup/add_to-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/StepGroup/cdesc-StepGroup.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/StepGroup/clear-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/StepGroup/create_matcher-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/StepGroup/empty%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/StepGroup/find-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/StepGroup/given_scenario-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/StepGroup/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/StepGroup/steps-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/StepGroupHash/cdesc-StepGroupHash.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/StepGroupHash/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/StepMother/cdesc-StepMother.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/StepMother/clear-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/StepMother/empty%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/StepMother/find-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/StepMother/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/StepMother/store-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/StepMother/use-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Story/%5b%5d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Story/assign_steps_to-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Story/cdesc-Story.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Story/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Story/run_in-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Story/steps_for-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/World/And-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/World/Given-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/World/GivenScenario-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/World/Then-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/World/When-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/World/add_listener-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/World/cdesc-World.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/World/create-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/World/errors-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/World/errors-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/World/listeners-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/World/run_given_scenario_with_suspended_listeners-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/World/start_collecting_errors-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/World/step_mother-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/World/step_names-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/World/store_and_call-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/World/use-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/cdesc-Story.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Translator/cdesc-Translator.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Translator/standard_matcher%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Translator/translate-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Translator/translate_dir-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Translator/translate_file-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Translator/translate_line-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/VERSION/cdesc-VERSION.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/cdesc-Spec.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/exit%3f-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/run%3f-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/run-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/String/arg_regexp-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/String/cdesc-String.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/String/step_name-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Symbol/cdesc-Symbol.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Test/Unit/AutoRunner/cdesc-AutoRunner.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Test/Unit/AutoRunner/process_args-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Test/Unit/TestCase/cdesc-TestCase.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Test/Unit/TestCase/example_method%3f-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Test/Unit/TestCase/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Test/Unit/TestCase/run-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Test/Unit/TestCase/suite-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Test/Unit/TestCase/test_method%3f-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Test/Unit/TestResult/cdesc-TestResult.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Test/Unit/TestResult/passed%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Test/Unit/TestSuiteAdapter/cdesc-TestSuiteAdapter.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Test/Unit/TestSuiteAdapter/delete-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Test/Unit/TestSuiteAdapter/empty%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Test/Unit/TestSuiteAdapter/name-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Test/Unit/TestSuiteAdapter/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Test/Unit/TestSuiteAdapter/run-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Test/Unit/TestSuiteAdapter/size-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Test/Unit/UI/Console/TestRunner/cdesc-TestRunner.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Test/Unit/UI/Console/TestRunner/finished-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Test/Unit/UI/Console/TestRunner/finished_with_rspec-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Test/Unit/UI/Console/TestRunner/setup_mediator-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Test/Unit/UI/Console/TestRunner/setup_mediator_with_rspec-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Test/Unit/UI/Console/TestRunner/started-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Test/Unit/UI/Console/TestRunner/started_with_rspec-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Test/Unit/UI/Console/TestRunner/test_finished-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Test/Unit/UI/Console/TestRunner/test_finished_with_rspec-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Test/Unit/UI/Console/TestRunner/test_started-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Test/Unit/UI/Console/TestRunner/test_started_with_rspec-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Test/Unit/UI/Console/cdesc-Console.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Test/Unit/UI/cdesc-UI.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Test/Unit/cdesc-Unit.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Test/cdesc-Test.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/created.rid
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rake-0.8.1/CHANGES
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rake-0.8.1/MIT-LICENSE
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rake-0.8.1/README
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rake-0.8.1/Rakefile
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rake-0.8.1/TODO
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rake-0.8.1/bin/rake
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rake-0.8.1/doc/example/Rakefile1
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rake-0.8.1/doc/example/Rakefile2
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rake-0.8.1/doc/example/a.c
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rake-0.8.1/doc/example/b.c
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rake-0.8.1/doc/example/main.c
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rake-0.8.1/doc/glossary.rdoc
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rake-0.8.1/doc/jamis.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rake-0.8.1/doc/proto_rake.rdoc
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rake-0.8.1/doc/rake.1.gz
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rake-0.8.1/doc/rakefile.rdoc
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rake-0.8.1/doc/rational.rdoc
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rake-0.8.1/doc/release_notes/rake-0.4.14.rdoc
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rake-0.8.1/doc/release_notes/rake-0.4.15.rdoc
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rake-0.8.1/doc/release_notes/rake-0.5.0.rdoc
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rake-0.8.1/doc/release_notes/rake-0.5.3.rdoc
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rake-0.8.1/doc/release_notes/rake-0.5.4.rdoc
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rake-0.8.1/doc/release_notes/rake-0.6.0.rdoc
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rake-0.8.1/doc/release_notes/rake-0.7.0.rdoc
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rake-0.8.1/doc/release_notes/rake-0.7.1.rdoc
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rake-0.8.1/doc/release_notes/rake-0.7.2.rdoc
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rake-0.8.1/doc/release_notes/rake-0.7.3.rdoc
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rake-0.8.1/install.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rake-0.8.1/lib/rake.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rake-0.8.1/lib/rake/classic_namespace.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rake-0.8.1/lib/rake/clean.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rake-0.8.1/lib/rake/contrib/compositepublisher.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rake-0.8.1/lib/rake/contrib/ftptools.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rake-0.8.1/lib/rake/contrib/publisher.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rake-0.8.1/lib/rake/contrib/rubyforgepublisher.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rake-0.8.1/lib/rake/contrib/sshpublisher.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rake-0.8.1/lib/rake/contrib/sys.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rake-0.8.1/lib/rake/gempackagetask.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rake-0.8.1/lib/rake/loaders/makefile.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rake-0.8.1/lib/rake/packagetask.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rake-0.8.1/lib/rake/rake_test_loader.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rake-0.8.1/lib/rake/rdoctask.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rake-0.8.1/lib/rake/ruby182_test_unit_fix.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rake-0.8.1/lib/rake/runtest.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rake-0.8.1/lib/rake/tasklib.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rake-0.8.1/lib/rake/testtask.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/capture_stdout.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/contrib/testsys.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/data/chains/Rakefile
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/data/default/Rakefile
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/data/dryrun/Rakefile
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/data/file_creation_task/Rakefile
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/data/imports/Rakefile
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/data/imports/deps.mf
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/data/multidesc/Rakefile
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/data/namespace/Rakefile
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/data/rakelib/test1.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/data/rbext/rakefile.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/data/sample.mf
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/data/statusreturn/Rakefile
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/data/unittest/Rakefile
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/filecreation.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/functional.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/rake_test_setup.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/reqfile.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/reqfile2.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/session_functional.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/shellcommand.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/test_application.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/test_clean.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/test_definitions.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/test_earlytime.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/test_extension.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/test_file_creation_task.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/test_file_task.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/test_filelist.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/test_fileutils.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/test_ftp.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/test_invocation_chain.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/test_makefile_loader.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/test_multitask.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/test_namespace.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/test_package_task.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/test_pathmap.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/test_rake.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/test_require.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/test_rules.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/test_task_arguments.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/test_task_manager.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/test_tasks.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/test_test_task.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/test_top_level_functions.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/CHANGES
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/MIT-LICENSE
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/README
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/Rakefile
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/TODO
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/UPGRADE
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/bin/spec
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/bin/spec_translator
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/examples/pure/autogenerated_docstrings_example.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/examples/pure/before_and_after_example.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/examples/pure/behave_as_example.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/examples/pure/custom_expectation_matchers.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/examples/pure/custom_formatter.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/examples/pure/dynamic_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/examples/pure/file_accessor.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/examples/pure/file_accessor_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/examples/pure/greeter_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/examples/pure/helper_method_example.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/examples/pure/io_processor.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/examples/pure/io_processor_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/examples/pure/legacy_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/examples/pure/mocking_example.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/examples/pure/multi_threaded_behaviour_runner.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/examples/pure/nested_classes_example.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/examples/pure/partial_mock_example.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/examples/pure/pending_example.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/examples/pure/predicate_example.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/examples/pure/priority.txt
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/examples/pure/shared_example_group_example.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/examples/pure/shared_stack_examples.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/examples/pure/spec_helper.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/examples/pure/stack.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/examples/pure/stack_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/examples/pure/stack_spec_with_nested_example_groups.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/examples/pure/stubbing_example.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/examples/stories/adder.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/examples/stories/addition
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/examples/stories/addition.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/examples/stories/calculator.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/examples/stories/game-of-life/README.txt
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/examples/stories/game-of-life/behaviour/everything.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/examples/stories/game-of-life/behaviour/examples/examples.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/examples/stories/game-of-life/behaviour/examples/game_behaviour.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/examples/stories/game-of-life/behaviour/examples/grid_behaviour.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/examples/stories/game-of-life/behaviour/stories/CellsWithLessThanTwoNeighboursDie.story
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/examples/stories/game-of-life/behaviour/stories/CellsWithMoreThanThreeNeighboursDie.story
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/examples/stories/game-of-life/behaviour/stories/EmptySpacesWithThreeNeighboursCreateACell.story
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/examples/stories/game-of-life/behaviour/stories/ICanCreateACell.story
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/examples/stories/game-of-life/behaviour/stories/ICanKillACell.story
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/examples/stories/game-of-life/behaviour/stories/TheGridWraps.story
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/examples/stories/game-of-life/behaviour/stories/create_a_cell.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/examples/stories/game-of-life/behaviour/stories/helper.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/examples/stories/game-of-life/behaviour/stories/kill_a_cell.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/examples/stories/game-of-life/behaviour/stories/steps.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/examples/stories/game-of-life/behaviour/stories/stories.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/examples/stories/game-of-life/behaviour/stories/stories.txt
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/examples/stories/game-of-life/life.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/examples/stories/game-of-life/life/game.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/examples/stories/game-of-life/life/grid.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/examples/stories/helper.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/examples/stories/steps/addition_steps.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/failing_examples/README.txt
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/failing_examples/diffing_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/failing_examples/failing_autogenerated_docstrings_example.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/failing_examples/failure_in_setup.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/failing_examples/failure_in_teardown.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/failing_examples/mocking_example.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/failing_examples/mocking_with_flexmock.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/failing_examples/mocking_with_mocha.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/failing_examples/mocking_with_rr.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/failing_examples/partial_mock_example.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/failing_examples/predicate_example.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/failing_examples/raising_example.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/failing_examples/spec_helper.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/failing_examples/syntax_error_example.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/failing_examples/team_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/failing_examples/timeout_behaviour.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/autotest/discover.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/autotest/rspec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/example.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/example/configuration.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/example/errors.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/example/example_group.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/example/example_group_factory.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/example/example_group_methods.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/example/example_matcher.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/example/example_methods.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/example/module_inclusion_warnings.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/example/module_reopening_fix.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/example/pending.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/example/shared_example_group.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/expectations.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/expectations/differs/default.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/expectations/errors.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/expectations/extensions.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/expectations/extensions/object.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/expectations/extensions/string_and_symbol.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/expectations/handler.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/extensions.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/extensions/class.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/extensions/main.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/extensions/metaclass.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/extensions/object.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/interop/test.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/interop/test/unit/autorunner.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/interop/test/unit/testcase.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/interop/test/unit/testresult.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/interop/test/unit/testsuite_adapter.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/interop/test/unit/ui/console/testrunner.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/matchers.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/matchers/be.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/matchers/be_close.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/matchers/change.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/matchers/eql.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/matchers/equal.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/matchers/exist.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/matchers/has.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/matchers/have.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/matchers/include.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/matchers/match.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/matchers/operator_matcher.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/matchers/raise_error.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/matchers/respond_to.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/matchers/satisfy.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/matchers/simple_matcher.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/matchers/throw_symbol.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/mocks.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/mocks/argument_constraint_matchers.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/mocks/argument_expectation.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/mocks/error_generator.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/mocks/errors.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/mocks/extensions.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/mocks/extensions/object.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/mocks/framework.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/mocks/message_expectation.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/mocks/methods.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/mocks/mock.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/mocks/order_group.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/mocks/proxy.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/mocks/space.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/mocks/spec_methods.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/rake/spectask.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/rake/verify_rcov.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/runner.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/runner/backtrace_tweaker.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/runner/class_and_arguments_parser.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/runner/command_line.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/runner/drb_command_line.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/runner/example_group_runner.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/runner/formatter/base_formatter.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/runner/formatter/base_text_formatter.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/runner/formatter/failing_example_groups_formatter.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/runner/formatter/failing_examples_formatter.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/runner/formatter/html_formatter.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/runner/formatter/nested_text_formatter.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/runner/formatter/profile_formatter.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/runner/formatter/progress_bar_formatter.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/runner/formatter/snippet_extractor.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/runner/formatter/specdoc_formatter.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/runner/formatter/story/html_formatter.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/runner/formatter/story/plain_text_formatter.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/runner/formatter/text_mate_formatter.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/runner/heckle_runner.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/runner/heckle_runner_unsupported.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/runner/option_parser.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/runner/options.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/runner/reporter.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/runner/spec_parser.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/story.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/story/extensions.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/story/extensions/main.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/story/extensions/regexp.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/story/extensions/string.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/story/given_scenario.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/story/runner.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/story/runner/plain_text_story_runner.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/story/runner/scenario_collector.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/story/runner/scenario_runner.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/story/runner/story_mediator.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/story/runner/story_parser.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/story/runner/story_runner.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/story/scenario.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/story/step.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/story/step_group.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/story/step_mother.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/story/story.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/story/world.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/translator.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/version.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/plugins/mock_frameworks/flexmock.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/plugins/mock_frameworks/mocha.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/plugins/mock_frameworks/rr.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/plugins/mock_frameworks/rspec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/rake_tasks/examples.rake
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/rake_tasks/examples_with_rcov.rake
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/rake_tasks/failing_examples_with_html.rake
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/rake_tasks/verify_rcov.rake
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/README.jruby
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/autotest/discover_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/autotest/rspec_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/autotest_helper.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/autotest_matchers.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/rspec_suite.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/ruby_forker.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec.opts
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/example/configuration_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/example/example_group/described_module_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/example/example_group/warning_messages_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/example/example_group_class_definition_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/example/example_group_factory_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/example/example_group_methods_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/example/example_group_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/example/example_matcher_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/example/example_methods_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/example/example_runner_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/example/example_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/example/nested_example_group_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/example/pending_module_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/example/predicate_matcher_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/example/shared_example_group_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/example/subclassing_example_group_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/expectations/differs/default_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/expectations/extensions/object_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/expectations/fail_with_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/extensions/main_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/interop/test/unit/resources/spec_that_fails.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/interop/test/unit/resources/spec_that_passes.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/interop/test/unit/resources/spec_with_errors.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/interop/test/unit/resources/test_case_that_fails.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/interop/test/unit/resources/test_case_that_passes.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/interop/test/unit/resources/test_case_with_errors.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/interop/test/unit/resources/testsuite_adapter_spec_with_test_unit.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/interop/test/unit/spec_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/interop/test/unit/test_unit_spec_helper.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/interop/test/unit/testcase_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/interop/test/unit/testsuite_adapter_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/matchers/be_close_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/matchers/be_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/matchers/change_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/matchers/description_generation_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/matchers/eql_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/matchers/equal_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/matchers/exist_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/matchers/handler_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/matchers/has_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/matchers/have_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/matchers/include_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/matchers/match_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/matchers/matcher_methods_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/matchers/mock_constraint_matchers_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/matchers/operator_matcher_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/matchers/raise_error_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/matchers/respond_to_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/matchers/satisfy_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/matchers/simple_matcher_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/matchers/throw_symbol_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/mocks/any_number_of_times_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/mocks/argument_expectation_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/mocks/at_least_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/mocks/at_most_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/mocks/bug_report_10260_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/mocks/bug_report_10263_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/mocks/bug_report_11545_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/mocks/bug_report_15719_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/mocks/bug_report_7611_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/mocks/bug_report_7805_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/mocks/bug_report_8165_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/mocks/bug_report_8302_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/mocks/failing_mock_argument_constraints_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/mocks/hash_including_matcher_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/mocks/mock_ordering_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/mocks/mock_space_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/mocks/mock_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/mocks/multiple_return_value_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/mocks/null_object_mock_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/mocks/once_counts_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/mocks/options_hash_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/mocks/partial_mock_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/mocks/partial_mock_using_mocks_directly_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/mocks/passing_mock_argument_constraints_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/mocks/precise_counts_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/mocks/record_messages_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/mocks/stub_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/mocks/twice_counts_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/package/bin_spec_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/runner/class_and_argument_parser_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/runner/command_line_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/runner/drb_command_line_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/runner/empty_file.txt
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/runner/examples.txt
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/runner/execution_context_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/runner/failed.txt
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/runner/formatter/failing_example_groups_formatter_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/runner/formatter/failing_examples_formatter_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/runner/formatter/html_formatted-1.8.4.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/runner/formatter/html_formatted-1.8.5-jruby.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/runner/formatter/html_formatted-1.8.5.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/runner/formatter/html_formatted-1.8.6-jruby.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/runner/formatter/html_formatted-1.8.6.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/runner/formatter/html_formatter_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/runner/formatter/nested_text_formatter_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/runner/formatter/profile_formatter_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/runner/formatter/progress_bar_formatter_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/runner/formatter/snippet_extractor_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/runner/formatter/spec_mate_formatter_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/runner/formatter/specdoc_formatter_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/runner/formatter/story/html_formatter_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/runner/formatter/story/plain_text_formatter_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/runner/formatter/text_mate_formatted-1.8.4.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/runner/formatter/text_mate_formatted-1.8.6.html
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/runner/heckle_runner_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/runner/heckler_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/runner/noisy_backtrace_tweaker_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/runner/option_parser_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/runner/options_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/runner/output_one_time_fixture.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/runner/output_one_time_fixture_runner.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/runner/output_one_time_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/runner/quiet_backtrace_tweaker_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/runner/reporter_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/runner/resources/a_bar.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/runner/resources/a_foo.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/runner/resources/a_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/runner/spec.opts
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/runner/spec_drb.opts
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/runner/spec_parser/spec_parser_fixture.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/runner/spec_parser_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/runner/spec_spaced.opts
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/runner_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/spec_classes.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/story/builders.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/story/extensions/main_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/story/extensions_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/story/given_scenario_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/story/runner/plain_text_story_runner_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/story/runner/scenario_collector_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/story/runner/scenario_runner_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/story/runner/story_mediator_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/story/runner/story_parser_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/story/runner/story_runner_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/story/runner_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/story/scenario_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/story/step_group_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/story/step_mother_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/story/step_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/story/story_helper.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/story/story_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/story/world_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/translator_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec_helper.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/stories/all.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/stories/example_groups/autogenerated_docstrings
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/stories/example_groups/example_group_with_should_methods
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/stories/example_groups/nested_groups
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/stories/example_groups/output
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/stories/example_groups/stories.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/stories/helper.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/stories/interop/examples_and_tests_together
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/stories/interop/stories.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/stories/interop/test_case_with_should_methods
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/stories/mock_framework_integration/stories.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/stories/mock_framework_integration/use_flexmock.story
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/stories/pending_stories/README
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/stories/resources/helpers/cmdline.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/stories/resources/helpers/story_helper.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/stories/resources/matchers/smart_match.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/stories/resources/spec/example_group_with_should_methods.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/stories/resources/spec/simple_spec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/stories/resources/spec/spec_with_flexmock.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/stories/resources/steps/running_rspec.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/stories/resources/stories/failing_story.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/stories/resources/test/spec_and_test_together.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/stories/resources/test/test_case_with_should_methods.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/sources-0.0.1/lib/sources.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/specifications/rake-0.8.1.gemspec
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/specifications/rspec-1.1.4.gemspec
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/specifications/sources-0.0.1.gemspec
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/builtin/core_ext/symbol.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/builtin/java/ast.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/builtin/java/collections.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/builtin/java/exceptions.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/builtin/java/interfaces.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/builtin/java/regex.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/builtin/javasupport.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/builtin/javasupport/core_ext.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/builtin/javasupport/core_ext/array.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/builtin/javasupport/core_ext/kernel.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/builtin/javasupport/core_ext/module.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/builtin/javasupport/core_ext/object.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/builtin/javasupport/core_ext/proc.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/builtin/javasupport/core_ext/string.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/builtin/javasupport/java.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/builtin/javasupport/proxy/array.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/builtin/javasupport/proxy/base.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/builtin/javasupport/proxy/concrete.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/builtin/javasupport/proxy/interface.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/builtin/javasupport/utilities/array.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/builtin/javasupport/utilities/base.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/builtin/rdoc_jruby.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/compiler/builder.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/compiler/builder2.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/compiler/bytecode.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/compiler/signature.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/duby.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/duby/ast.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/duby/ast/call.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/duby/ast/class.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/duby/ast/flow.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/duby/ast/literal.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/duby/ast/local.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/duby/ast/method.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/duby/ast/structure.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/duby/c_compiler.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/duby/compiler.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/duby/compiler2.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/duby/compiler_old.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/duby/declaration.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/duby/jvm_compiler.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/duby/mapper.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/duby/plugin/math.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/duby/signature.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/duby/transform.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/duby/typer.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/duby/typer_old.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/gemconfigure.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/jruby/jrubyc.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/jruby/openssl/builtin.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/jruby/openssl/gem.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/jruby/openssl/gem_only.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/jruby/openssl/stub.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/jruby/vm.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/rbconfig/datadir.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/rubygems.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/rubygems/builder.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/rubygems/command.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/rubygems/command_manager.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/rubygems/commands/build_command.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/rubygems/commands/cert_command.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/rubygems/commands/check_command.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/rubygems/commands/cleanup_command.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/rubygems/commands/contents_command.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/rubygems/commands/dependency_command.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/rubygems/commands/environment_command.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/rubygems/commands/fetch_command.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/rubygems/commands/generate_index_command.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/rubygems/commands/help_command.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/rubygems/commands/install_command.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/rubygems/commands/list_command.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/rubygems/commands/lock_command.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/rubygems/commands/mirror_command.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/rubygems/commands/outdated_command.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/rubygems/commands/pristine_command.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/rubygems/commands/query_command.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/rubygems/commands/rdoc_command.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/rubygems/commands/search_command.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/rubygems/commands/server_command.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/rubygems/commands/sources_command.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/rubygems/commands/specification_command.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/rubygems/commands/stale_command.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/rubygems/commands/uninstall_command.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/rubygems/commands/unpack_command.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/rubygems/commands/update_command.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/rubygems/commands/which_command.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/rubygems/config_file.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/rubygems/defaults.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/rubygems/defaults/jruby.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/rubygems/dependency.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/rubygems/dependency_installer.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/rubygems/dependency_list.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/rubygems/digest/digest_adapter.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/rubygems/digest/md5.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/rubygems/digest/sha1.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/rubygems/digest/sha2.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/rubygems/doc_manager.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/rubygems/exceptions.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/rubygems/ext.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/rubygems/ext/builder.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/rubygems/ext/configure_builder.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/rubygems/ext/ext_conf_builder.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/rubygems/ext/rake_builder.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/rubygems/format.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/rubygems/gem_openssl.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/rubygems/gem_path_searcher.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/rubygems/gem_runner.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/rubygems/indexer.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/rubygems/install_update_options.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/rubygems/installer.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/rubygems/local_remote_options.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/rubygems/old_format.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/rubygems/package.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/rubygems/package/f_sync_dir.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/rubygems/package/tar_header.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/rubygems/package/tar_input.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/rubygems/package/tar_output.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/rubygems/package/tar_reader.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/rubygems/package/tar_reader/entry.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/rubygems/package/tar_writer.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/rubygems/platform.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/rubygems/remote_fetcher.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/rubygems/require_paths_builder.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/rubygems/requirement.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/rubygems/rubygems_version.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/rubygems/security.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/rubygems/server.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/rubygems/source_index.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/rubygems/source_info_cache.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/rubygems/source_info_cache_entry.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/rubygems/spec_fetcher.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/rubygems/specification.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/rubygems/test_utilities.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/rubygems/timer.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/rubygems/uninstaller.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/rubygems/user_interaction.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/rubygems/validator.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/rubygems/version.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/rubygems/version_option.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/securerandom.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/ubygems.rb
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/ACL/ACLEntry/cdesc-ACLEntry.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/ACL/ACLEntry/dot_pat-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/ACL/ACLEntry/dot_pat_str-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/ACL/ACLEntry/match-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/ACL/ACLEntry/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/ACL/ACLList/add-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/ACL/ACLList/cdesc-ACLList.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/ACL/ACLList/match-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/ACL/ACLList/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/ACL/allow_addr%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/ACL/allow_socket%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/ACL/cdesc-ACL.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/ACL/install_list-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/ACL/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Abbrev/abbrev-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Abbrev/cdesc-Abbrev.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Acceptables/cdesc-Acceptables.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/AmbiguousArgument/cdesc-AmbiguousArgument.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/AmbiguousOption/cdesc-AmbiguousOption.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Arguable/cdesc-Arguable.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Arguable/extend_object-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Arguable/getopts-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Arguable/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Arguable/options%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Arguable/options-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Arguable/order%21-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Arguable/parse%21-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Arguable/permute%21-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/ArgumentError/cdesc-ArgumentError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Array/%26-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Array/%2a-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Array/%2b-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Array/%2d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Array/%3c%3c-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Array/%3c%3d%3e-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Array/%3d%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Array/%5b%5d%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Array/%5b%5d-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Array/%5b%5d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Array/%7c-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Array/abbrev-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Array/assoc-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Array/at-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Array/cdesc-Array.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Array/clear-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Array/collect%21-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Array/collect-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Array/compact%21-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Array/compact-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Array/concat-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Array/dclone-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Array/delete-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Array/delete_at-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Array/delete_if-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Array/each-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Array/each_index-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Array/empty%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Array/eql%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Array/fetch-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Array/fill-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Array/first-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Array/flatten%21-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Array/flatten-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Array/frozen%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Array/hash-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Array/include%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Array/index-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Array/indexes-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Array/indices-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Array/join-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Array/initialize_copy-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Array/insert-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Array/inspect-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Array/last-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Array/length-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Array/map%21-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Array/map-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Array/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Array/nitems-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Array/pack-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Array/pop-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Array/pretty_print-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Array/pretty_print_cycle-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Array/push-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Array/quote-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Array/rassoc-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Array/reject%21-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Array/reject-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Array/replace-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Array/reverse%21-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Array/reverse-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Array/reverse_each-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Array/rindex-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Array/select-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Array/shift-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Array/size-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Array/slice%21-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Array/slice-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Array/sort%21-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Array/sort-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Array/to_a-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Array/to_ary-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Array/to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Array/to_yaml-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Array/transpose-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Array/uniq%21-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Array/uniq-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Array/unshift-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Array/values_at-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Array/yaml_initialize-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Array/zip-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Base64/Deprecated/cdesc-Deprecated.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Base64/b64encode-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Base64/cdesc-Base64.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Base64/decode64-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Base64/decode_b-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Base64/encode64-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/BasicSocket/cdesc-BasicSocket.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/BasicSocket/getsockopt-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/BasicSocket/recv_nonblock-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/BasicSocket/setsockopt-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Benchmark/Job/cdesc-Job.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Benchmark/Report/cdesc-Report.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Benchmark/Tms/%2a-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Benchmark/Tms/%2b-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Benchmark/Tms/%2d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Benchmark/Tms/%2f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Benchmark/Tms/add%21-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Benchmark/Tms/add-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Benchmark/Tms/cdesc-Tms.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Benchmark/Tms/format-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Benchmark/Tms/memberwise-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Benchmark/Tms/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Benchmark/Tms/to_a-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Benchmark/Tms/to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Benchmark/benchmark-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Benchmark/bm-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Benchmark/bmbm-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Benchmark/cdesc-Benchmark.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Benchmark/measure-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Benchmark/realtime-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Bignum/%25-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Bignum/%26-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Bignum/%2a%2a-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Bignum/%2a-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Bignum/%2b-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Bignum/%2d%40-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Bignum/%2d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Bignum/%2f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Bignum/%3c%3c-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Bignum/%3c%3d%3e-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Bignum/%3d%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Bignum/%3e%3e-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Bignum/%5b%5d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Bignum/%5e-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Bignum/%7c-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Bignum/%7e-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Bignum/abs-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Bignum/cdesc-Bignum.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Bignum/coerce-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Bignum/div-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Bignum/divmod-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Bignum/hash-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Bignum/eql%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Bignum/modulo-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Bignum/power%21-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Bignum/quo-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Bignum/rdiv-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Bignum/remainder-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Bignum/rpower-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Bignum/size-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Bignum/to_f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Bignum/to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Binding/cdesc-Binding.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Binding/clone-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Binding/dup-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CGI/Cookie/cdesc-Cookie.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CGI/Cookie/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CGI/Cookie/parse-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CGI/Cookie/secure%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CGI/Cookie/to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CGI/Html3/cdesc-Html3.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CGI/Html4/cdesc-Html4.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CGI/Html4Fr/cdesc-Html4Fr.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CGI/Html4Tr/cdesc-Html4Tr.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CGI/HtmlExtension/a-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CGI/HtmlExtension/base-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CGI/HtmlExtension/blockquote-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CGI/HtmlExtension/caption-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CGI/HtmlExtension/cdesc-HtmlExtension.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CGI/HtmlExtension/checkbox-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CGI/HtmlExtension/checkbox_group-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CGI/HtmlExtension/file_field-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CGI/HtmlExtension/form-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CGI/HtmlExtension/hidden-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CGI/HtmlExtension/html-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CGI/HtmlExtension/image_button-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CGI/HtmlExtension/img-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CGI/HtmlExtension/multipart_form-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CGI/HtmlExtension/password_field-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CGI/HtmlExtension/popup_menu-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CGI/HtmlExtension/radio_button-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CGI/HtmlExtension/radio_group-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CGI/HtmlExtension/reset-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CGI/HtmlExtension/scrolling_list-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CGI/HtmlExtension/submit-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CGI/HtmlExtension/text_field-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CGI/HtmlExtension/textarea-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CGI/QueryExtension/Value/cdesc-Value.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CGI/QueryExtension/%5b%5d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CGI/QueryExtension/cdesc-QueryExtension.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CGI/QueryExtension/has_key%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CGI/QueryExtension/include%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CGI/QueryExtension/initialize_query-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CGI/QueryExtension/key%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CGI/QueryExtension/keys-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CGI/QueryExtension/multipart%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CGI/QueryExtension/params%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CGI/QueryExtension/raw_cookie-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CGI/QueryExtension/raw_cookie2-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CGI/QueryExtension/read_from_cmdline-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CGI/QueryExtension/read_multipart-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CGI/Session/FileStore/cdesc-FileStore.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CGI/Session/FileStore/close-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CGI/Session/FileStore/delete-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CGI/Session/FileStore/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CGI/Session/FileStore/restore-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CGI/Session/FileStore/update-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CGI/Session/MemoryStore/cdesc-MemoryStore.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CGI/Session/MemoryStore/close-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CGI/Session/MemoryStore/delete-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CGI/Session/MemoryStore/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CGI/Session/MemoryStore/restore-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CGI/Session/MemoryStore/update-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CGI/Session/NoSession/cdesc-NoSession.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CGI/Session/%5b%5d%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CGI/Session/%5b%5d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CGI/Session/cdesc-Session.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CGI/Session/close-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CGI/Session/create_new_id-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CGI/Session/delete-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CGI/Session/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CGI/Session/update-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CGI/TagMaker/cdesc-TagMaker.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CGI/cdesc-CGI.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CGI/cookie-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CGI/env_table-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CGI/error-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CGI/escape-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CGI/escapeElement-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CGI/escapeHTML-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CGI/header-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CGI/header-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CGI/message-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CGI/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CGI/out-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CGI/parse-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CGI/pretty-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CGI/print-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CGI/print-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CGI/read_from_cmdline-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CGI/rfc1123_date-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CGI/stdinput-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CGI/stdoutput-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CGI/tag-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CGI/unescape-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CGI/unescapeElement-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CGI/unescapeHTML-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CSV/BasicWriter/cdesc-BasicWriter.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CSV/BasicWriter/close_on_terminate-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CSV/BasicWriter/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CSV/BasicWriter/terminate-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CSV/Cell/cdesc-Cell.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CSV/Cell/data-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CSV/Cell/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CSV/IOBuf/cdesc-IOBuf.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CSV/IOBuf/close-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CSV/IOBuf/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CSV/IOBuf/read-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CSV/IOBuf/terminate-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CSV/IOReader/cdesc-IOReader.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CSV/IOReader/close_on_terminate-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CSV/IOReader/get_row-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CSV/IOReader/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CSV/IOReader/terminate-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CSV/IllegalFormatError/cdesc-IllegalFormatError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CSV/Reader/cdesc-Reader.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CSV/Reader/close-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CSV/Reader/create-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CSV/Reader/each-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CSV/Reader/get_row-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CSV/Reader/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CSV/Reader/parse-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CSV/Reader/shift-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CSV/Reader/terminate-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CSV/Row/cdesc-Row.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CSV/StreamBuf/%5b%5d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CSV/StreamBuf/add_buf-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CSV/StreamBuf/buf_size-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CSV/StreamBuf/cdesc-StreamBuf.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CSV/StreamBuf/drop-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CSV/StreamBuf/get-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CSV/StreamBuf/idx_is_eos%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CSV/StreamBuf/is_eos%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CSV/StreamBuf/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CSV/StreamBuf/read-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CSV/StreamBuf/rel_buf-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CSV/StreamBuf/terminate-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CSV/StringReader/cdesc-StringReader.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CSV/StringReader/get_row-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CSV/StringReader/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CSV/Writer/%3c%3c-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CSV/Writer/add_row-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CSV/Writer/cdesc-Writer.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CSV/Writer/close-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CSV/Writer/create-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CSV/Writer/generate-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CSV/Writer/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CSV/Writer/terminate-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CSV/cdesc-CSV.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CSV/foreach-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CSV/generate-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CSV/generate_body-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CSV/generate_line-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CSV/generate_row-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CSV/generate_separator-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CSV/open-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CSV/open_reader-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CSV/open_writer-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CSV/parse-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CSV/parse_body-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CSV/parse_line-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CSV/parse_row-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CSV/read-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CSV/readlines-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Class/allocate-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Class/cdesc-Class.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Class/inherited-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Class/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Class/new-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Class/superclass-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Class/to_yaml-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Comparable/%3c%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Comparable/%3c-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Comparable/%3d%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Comparable/%3e%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Comparable/%3e-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Comparable/between%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Comparable/cdesc-Comparable.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CompletingHash/cdesc-CompletingHash.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CompletingHash/match-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Complex/%25-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Complex/%2a%2a-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Complex/%2a-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Complex/%2b-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Complex/%2d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Complex/%2f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Complex/%3c%3d%3e-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Complex/%3d%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Complex/abs-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Complex/abs2-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Complex/angle-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Complex/arg-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Complex/cdesc-Complex.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Complex/coerce-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Complex/conj-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Complex/conjugate-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Complex/denominator-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Complex/hash-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Complex/inspect-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Complex/new%21-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Complex/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Complex/numerator-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Complex/polar-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Complex/polar-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Complex/to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/ConditionVariable/broadcast-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/ConditionVariable/cdesc-ConditionVariable.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/ConditionVariable/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/ConditionVariable/signal-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/ConditionVariable/wait-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Continuation/%5b%5d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Continuation/call-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Continuation/cdesc-Continuation.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DEBUGGER__/Context/break_points-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DEBUGGER__/Context/cdesc-Context.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DEBUGGER__/Context/check_break_points-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DEBUGGER__/Context/check_suspend-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DEBUGGER__/Context/clear_suspend-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DEBUGGER__/Context/context-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DEBUGGER__/Context/debug_command-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DEBUGGER__/Context/debug_eval-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DEBUGGER__/Context/debug_funcname-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DEBUGGER__/Context/debug_method_info-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DEBUGGER__/Context/debug_print_help-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DEBUGGER__/Context/debug_silent_eval-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DEBUGGER__/Context/debug_variable_info-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DEBUGGER__/Context/display-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DEBUGGER__/Context/display_expression-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DEBUGGER__/Context/display_expressions-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DEBUGGER__/Context/display_frames-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DEBUGGER__/Context/display_list-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DEBUGGER__/Context/excn_handle-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DEBUGGER__/Context/format_frame-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DEBUGGER__/Context/frame_set_pos-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DEBUGGER__/Context/line_at-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DEBUGGER__/Context/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DEBUGGER__/Context/readline-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DEBUGGER__/Context/resume_all-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DEBUGGER__/Context/set_last_thread-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DEBUGGER__/Context/set_suspend-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DEBUGGER__/Context/set_trace-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DEBUGGER__/Context/set_trace_all-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DEBUGGER__/Context/stdout-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DEBUGGER__/Context/stop_next-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DEBUGGER__/Context/suspend_all-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DEBUGGER__/Context/thnum-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DEBUGGER__/Context/trace%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DEBUGGER__/Context/trace_func-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DEBUGGER__/Context/var_list-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DEBUGGER__/Mutex/cdesc-Mutex.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DEBUGGER__/Mutex/lock-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DEBUGGER__/Mutex/locked%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DEBUGGER__/Mutex/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DEBUGGER__/Mutex/unlock-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DEBUGGER__/break_points-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DEBUGGER__/cdesc-DEBUGGER__.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DEBUGGER__/context-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DEBUGGER__/debug_thread_info-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DEBUGGER__/display-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DEBUGGER__/get_thread-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DEBUGGER__/interrupt-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DEBUGGER__/make_thread_list-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DEBUGGER__/resume-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DEBUGGER__/set_last_thread-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DEBUGGER__/set_trace-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DEBUGGER__/stdout%3d-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DEBUGGER__/stdout-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DEBUGGER__/suspend-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DEBUGGER__/thread_list-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DEBUGGER__/thread_list_all-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DEBUGGER__/waiting-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DOT/DOTDigraph/cdesc-DOTDigraph.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DOT/DOTDigraph/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DOT/DOTEdge/cdesc-DOTEdge.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DOT/DOTEdge/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DOT/DOTEdge/to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DOT/DOTElement/cdesc-DOTElement.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DOT/DOTElement/each_option-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DOT/DOTElement/each_option_pair-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DOT/DOTElement/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DOT/DOTNode/%3c%3c-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DOT/DOTNode/cdesc-DOTNode.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DOT/DOTNode/each_port-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DOT/DOTNode/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DOT/DOTNode/pop-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DOT/DOTNode/push-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DOT/DOTNode/to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DOT/DOTPort/cdesc-DOTPort.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DOT/DOTPort/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DOT/DOTPort/to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DOT/DOTSimpleElement/cdesc-DOTSimpleElement.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DOT/DOTSimpleElement/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DOT/DOTSimpleElement/to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DOT/DOTSubgraph/%3c%3c-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DOT/DOTSubgraph/cdesc-DOTSubgraph.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DOT/DOTSubgraph/each_node-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DOT/DOTSubgraph/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DOT/DOTSubgraph/pop-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DOT/DOTSubgraph/push-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DOT/DOTSubgraph/to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DOT/cdesc-DOT.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DOT/change_tab-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbArray/_dump-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbArray/_load-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbArray/cdesc-DRbArray.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbArray/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbBadScheme/cdesc-DRbBadScheme.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbBadURI/cdesc-DRbBadURI.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbConn/cdesc-DRbConn.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbConnError/cdesc-DRbConnError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbError/cdesc-DRbError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbIdConv/cdesc-DRbIdConv.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbIdConv/to_id-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbIdConv/to_obj-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbMessage/cdesc-DRbMessage.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbMessage/make_proxy-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbObject/%3d%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbObject/__drbref-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbObject/__drburi-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbObject/_dump-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbObject/_load-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbObject/cdesc-DRbObject.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbObject/eql%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbObject/hash-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbObject/method_missing-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbObject/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbObject/new_with-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbObject/new_with_uri-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbObject/prepare_backtrace-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbObject/respond_to%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbObject/with_friend-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbObservable/cdesc-DRbObservable.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbObservable/notify_observers-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbProtocol/add_protocol-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbProtocol/cdesc-DRbProtocol.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbProtocol/open-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbProtocol/open_server-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbProtocol/uri_option-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbRemoteError/cdesc-DRbRemoteError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbRemoteError/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbSSLSocket/SSLConfig/%5b%5d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbSSLSocket/SSLConfig/accept-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbSSLSocket/SSLConfig/cdesc-SSLConfig.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbSSLSocket/SSLConfig/connect-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbSSLSocket/SSLConfig/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbSSLSocket/SSLConfig/setup_certificate-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbSSLSocket/SSLConfig/setup_ssl_context-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbSSLSocket/accept-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbSSLSocket/cdesc-DRbSSLSocket.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbSSLSocket/close-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbSSLSocket/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbSSLSocket/open-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbSSLSocket/open_server-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbSSLSocket/parse_uri-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbSSLSocket/stream-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbSSLSocket/uri_option-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbServer/InvokeMethod/cdesc-InvokeMethod.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbServer/InvokeMethod18Mixin/block_yield-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbServer/InvokeMethod18Mixin/cdesc-InvokeMethod18Mixin.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbServer/InvokeMethod18Mixin/perform_with_block-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbServer/alive%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbServer/any_to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbServer/cdesc-DRbServer.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbServer/check_insecure_method-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbServer/default_acl-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbServer/default_argc_limit-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbServer/default_id_conv-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbServer/default_load_limit-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbServer/default_safe_level-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbServer/insecure_method%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbServer/kill_sub_thread-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbServer/main_loop-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbServer/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbServer/run-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbServer/stop_service-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbServer/to_id-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbServer/to_obj-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbServer/verbose%3d-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbServer/verbose%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbServer/verbose-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbServer/verbose-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbServerNotFound/cdesc-DRbServerNotFound.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbTCPSocket/accept-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbTCPSocket/alive%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbTCPSocket/cdesc-DRbTCPSocket.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbTCPSocket/close-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbTCPSocket/getservername-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbTCPSocket/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbTCPSocket/open-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbTCPSocket/open_server-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbTCPSocket/open_server_inaddr_any-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbTCPSocket/parse_uri-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbTCPSocket/peeraddr-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbTCPSocket/recv_reply-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbTCPSocket/recv_request-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbTCPSocket/send_reply-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbTCPSocket/send_request-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbTCPSocket/stream-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbTCPSocket/uri_option-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbUNIXSocket/accept-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbUNIXSocket/cdesc-DRbUNIXSocket.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbUNIXSocket/close-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbUNIXSocket/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbUNIXSocket/open-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbUNIXSocket/open_server-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbUNIXSocket/parse_uri-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbUNIXSocket/set_sockopt-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbUNIXSocket/temp_server-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbUNIXSocket/uri_option-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbURIOption/cdesc-DRbURIOption.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbUndumped/cdesc-DRbUndumped.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbUnknown/cdesc-DRbUnknown.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbUnknown/exception-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbUnknown/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbUnknown/reload-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbUnknownError/cdesc-DRbUnknownError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbUnknownError/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/ExtServ/alive%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/ExtServ/cdesc-ExtServ.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/ExtServ/front-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/ExtServ/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/ExtServ/stop_service-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/GW/%5b%5d%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/GW/%5b%5d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/GW/cdesc-GW.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/GW/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/ExtServManager/cdesc-ExtServManager.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/ExtServManager/command%3d-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/ExtServManager/command-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/ExtServManager/invoke_service-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/ExtServManager/invoke_service_command-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/ExtServManager/invoke_thread-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/ExtServManager/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/ExtServManager/regist-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/ExtServManager/service-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/ExtServManager/unregist-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/GWIdConv/cdesc-GWIdConv.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/GWIdConv/to_obj-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/TimerIdConv/TimerHolder2/InvalidIndexError/cdesc-InvalidIndexError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/TimerIdConv/TimerHolder2/add-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/TimerIdConv/TimerHolder2/alternate-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/TimerIdConv/TimerHolder2/cdesc-TimerHolder2.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/TimerIdConv/TimerHolder2/fetch-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/TimerIdConv/TimerHolder2/include%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/TimerIdConv/TimerHolder2/keeper-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/TimerIdConv/TimerHolder2/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/TimerIdConv/TimerHolder2/peek-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/TimerIdConv/cdesc-TimerIdConv.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/TimerIdConv/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/TimerIdConv/to_id-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/TimerIdConv/to_obj-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/cdesc-DRb.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/config-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/current_server-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/fetch_server-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/front-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/here%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/install_acl-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/install_id_conv-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/regist_server-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/remove_server-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/start_service-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/stop_service-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/thread-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/to_id-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/to_obj-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/uri-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DTracer/cdesc-DTracer.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Data/cdesc-Data.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Dir/%5b%5d-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Dir/cdesc-Dir.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Dir/chdir-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Dir/chroot-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Dir/close-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Dir/delete-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Dir/each-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Dir/entries-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Dir/foreach-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Dir/getwd-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Dir/glob-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Dir/mkdir-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Dir/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Dir/open-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Dir/path-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Dir/pos%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Dir/pos-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Dir/pwd-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Dir/read-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Dir/rewind-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Dir/rmdir-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Dir/seek-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Dir/tell-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Dir/tmpdir-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Dir/unlink-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Date/Format/Bag/cdesc-Bag.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Date/Format/cdesc-Format.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Date/Infinity/cdesc-Infinity.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Date/%2b-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Date/%2d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Date/%3c%3c-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Date/%3c%3d%3e-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Date/%3d%3d%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Date/%3e%3e-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Date/_dump-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Date/_load-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Date/_parse-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Date/_strptime-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Date/ajd-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Date/ajd_to_amjd-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Date/ajd_to_jd-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Date/amjd-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Date/amjd_to_ajd-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Date/asctime-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Date/cdesc-Date.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Date/civil-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Date/civil-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Date/civil_to_jd-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Date/commercial-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Date/commercial-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Date/commercial_to_jd-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Date/ctime-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Date/cwday-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Date/cweek-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Date/cwyear-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Date/day-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Date/day_fraction-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Date/day_fraction_to_time-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Date/downto-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Date/england-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Date/eql%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Date/gregorian%3f-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Date/gregorian%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Date/gregorian-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Date/gregorian_leap%3f-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Date/hash-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Date/hour-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Date/inspect-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Date/italy-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Date/jd-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Date/jd-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Date/jd_to_ajd-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Date/jd_to_civil-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Date/jd_to_commercial-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Date/jd_to_ld-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Date/jd_to_mjd-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Date/jd_to_ordinal-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Date/jd_to_wday-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Date/julian%3f-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Date/julian%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Date/julian-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Date/julian_leap%3f-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Date/ld-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Date/ld_to_jd-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Date/leap%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Date/mday-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Date/min-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Date/mjd-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Date/mjd_to_jd-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Date/mon-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Date/month-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Date/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Date/new_offset-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Date/new_start-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Date/next-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Date/next_day-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Date/now-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Date/offset-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Date/ordinal-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Date/ordinal-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Date/ordinal_to_jd-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Date/parse-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Date/s3e-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Date/sec-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Date/sec_fraction-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Date/start-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Date/step-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Date/strftime-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Date/strptime-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Date/succ-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Date/time-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Date/time_to_day_fraction-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Date/to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Date/to_yaml-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Date/today-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Date/upto-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Date/valid_civil%3f-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Date/valid_commercial%3f-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Date/valid_jd%3f-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Date/valid_ordinal%3f-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Date/valid_time%3f-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Date/wday-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Date/weeknum0-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Date/weeknum1-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Date/wnum0-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Date/wnum1-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Date/yday-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Date/year-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Date/zone-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DateTime/_strptime-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DateTime/cdesc-DateTime.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DateTime/civil-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DateTime/commercial-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DateTime/jd-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DateTime/ordinal-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DateTime/parse-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DateTime/strftime-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DateTime/strptime-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DefaultDisplay/cdesc-DefaultDisplay.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DefaultDisplay/display_class_info-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DefaultDisplay/display_class_list-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DefaultDisplay/display_flow-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DefaultDisplay/display_method_info-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DefaultDisplay/display_method_list-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DefaultDisplay/display_params-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DefaultDisplay/display_usage-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DefaultDisplay/list_known_classes-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DefaultDisplay/list_known_names-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DefaultDisplay/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DefaultDisplay/page-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DefaultDisplay/setup_pager-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DefaultDisplay/warn_no_database-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Delegator/__getobj__-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Delegator/cdesc-Delegator.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Delegator/marshal_dump-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Delegator/marshal_load-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Delegator/method_missing-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Delegator/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Delegator/respond_to%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/EOFError/cdesc-EOFError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/ERB/Compiler/Buffer/cdesc-Buffer.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/ERB/Compiler/ExplicitScanner/cdesc-ExplicitScanner.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/ERB/Compiler/PercentLine/cdesc-PercentLine.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/ERB/Compiler/PercentScanner/cdesc-PercentScanner.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/ERB/Compiler/Scanner/cdesc-Scanner.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/ERB/Compiler/SimpleScanner/cdesc-SimpleScanner.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/ERB/Compiler/SimpleScanner2/cdesc-SimpleScanner2.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/ERB/Compiler/TrimScanner/cdesc-TrimScanner.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/ERB/Compiler/cdesc-Compiler.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/ERB/DefMethod/cdesc-DefMethod.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/ERB/Util/cdesc-Util.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/ERB/Util/h-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/ERB/Util/html_escape-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/ERB/Util/u-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/ERB/Util/url_encode-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/ERB/cdesc-ERB.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/ERB/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/ERB/result-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/ERB/run-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/ERB/set_eoutvar-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/ERB/version-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Enumerable/Enumerator/cdesc-Enumerator.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Enumerable/Enumerator/each-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Enumerable/Enumerator/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Enumerable/all%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Enumerable/any%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Enumerable/cdesc-Enumerable.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Enumerable/collect-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Enumerable/detect-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Enumerable/each_cons-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Enumerable/each_slice-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Enumerable/each_with_index-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Enumerable/entries-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Enumerable/enum_cons-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Enumerable/enum_slice-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Enumerable/enum_with_index-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Enumerable/find-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Enumerable/find_all-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Enumerable/grep-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Enumerable/include%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Enumerable/inject-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Enumerable/map-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Enumerable/max-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Enumerable/member%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Enumerable/min-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Enumerable/partition-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Enumerable/reject-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Enumerable/select-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Enumerable/sort-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Enumerable/sort_by-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Enumerable/to_a-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Enumerable/to_set-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Enumerable/zip-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Errno/ECONNABORTED/cdesc-ECONNABORTED.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Errno/ECONNRESET/cdesc-ECONNRESET.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Errno/EPROTO/cdesc-EPROTO.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Errno/cdesc-Errno.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Exception/backtrace-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Exception/cdesc-Exception.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Exception/exception-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Exception/exception-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Exception/inspect-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Exception/message-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Exception/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Exception/set_backtrace-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Exception/to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Exception/to_str-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Exception/to_yaml-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Exception/yaml_new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Exception2MessageMapper/E2MM/Raise-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Exception2MessageMapper/E2MM/cdesc-E2MM.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Exception2MessageMapper/E2MM/def_e2message-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Exception2MessageMapper/E2MM/def_exception-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Exception2MessageMapper/E2MM/e2mm_message-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Exception2MessageMapper/E2MM/extend_object-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Exception2MessageMapper/E2MM/extend_to-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Exception2MessageMapper/Raise-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Exception2MessageMapper/bind-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Exception2MessageMapper/cdesc-Exception2MessageMapper.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Exception2MessageMapper/def_e2message-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Exception2MessageMapper/def_exception-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Exception2MessageMapper/fail-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/ExceptionForMatrix/cdesc-ExceptionForMatrix.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/FalseClass/%26-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/FalseClass/%5e-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/FalseClass/%7c-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/FalseClass/cdesc-FalseClass.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/FalseClass/to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/FalseClass/to_yaml-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/Constants/cdesc-Constants.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/Stat/%3c%3d%3e-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/Stat/atime-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/Stat/blksize-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/Stat/blockdev%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/Stat/blocks-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/Stat/cdesc-Stat.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/Stat/chardev%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/Stat/ctime-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/Stat/dev-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/Stat/dev_major-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/Stat/dev_minor-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/Stat/directory%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/Stat/executable%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/Stat/executable_real%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/Stat/file%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/Stat/ftype-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/Stat/gid-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/Stat/grpowned%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/Stat/ino-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/Stat/inspect-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/Stat/mode-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/Stat/mtime-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/Stat/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/Stat/nlink-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/Stat/owned%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/Stat/pipe%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/Stat/pretty_print-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/Stat/rdev-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/Stat/rdev_major-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/Stat/rdev_minor-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/Stat/readable%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/Stat/readable_real%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/Stat/setgid%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/Stat/setuid%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/Stat/size%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/Stat/size-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/Stat/socket%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/Stat/sticky%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/Stat/symlink%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/Stat/uid-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/Stat/writable%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/Stat/writable_real%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/Stat/zero%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/atime-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/atime-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/basename-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/blockdev%3f-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/catname-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/cdesc-File.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/chardev%3f-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/chmod-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/chmod-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/chown-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/chown-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/compare-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/copy-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/ctime-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/ctime-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/delete-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/directory%3f-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/dirname-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/executable%3f-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/executable_real%3f-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/exist%3f-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/exists%3f-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/expand_path-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/extname-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/file%3f-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/flock-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/fnmatch%3f-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/fnmatch-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/ftype-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/grpowned%3f-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/identical%3f-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/install-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/join-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/lchmod-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/lchown-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/link-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/lstat-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/lstat-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/makedirs-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/move-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/mtime-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/mtime-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/o_chmod-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/owned%3f-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/path-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/pipe%3f-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/readable%3f-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/readable_real%3f-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/readlink-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/rename-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/safe_unlink-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/setgid%3f-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/setuid%3f-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/size%3f-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/size-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/socket%3f-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/split-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/stat-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/sticky%3f-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/symlink%3f-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/symlink-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/syscopy-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/truncate-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/truncate-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/umask-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/unlink-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/utime-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/writable%3f-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/writable_real%3f-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/zero%3f-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/FileTest/blockdev%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/FileTest/cdesc-FileTest.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/FileTest/chardev%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/FileTest/directory%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/FileTest/executable%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/FileTest/executable_real%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/FileTest/exist%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/FileTest/exists%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/FileTest/file%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/FileTest/grpowned%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/FileTest/identical%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/FileTest/owned%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/FileTest/pipe%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/FileTest/readable%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/FileTest/readable_real%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/FileTest/setgid%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/FileTest/setuid%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/FileTest/size%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/FileTest/size-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/FileTest/socket%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/FileTest/sticky%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/FileTest/symlink%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/FileTest/writable%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/FileTest/writable_real%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/FileTest/zero%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/FileUtils/DryRun/cdesc-DryRun.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/FileUtils/Entry_/cdesc-Entry_.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/FileUtils/NoWrite/cdesc-NoWrite.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/FileUtils/StreamUtils_/cdesc-StreamUtils_.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/FileUtils/StreamUtils_/fu_blksize-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/FileUtils/StreamUtils_/fu_default_blksize-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/FileUtils/StreamUtils_/fu_stream_blksize-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/FileUtils/StreamUtils_/fu_windows%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/FileUtils/Verbose/cdesc-Verbose.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/FileUtils/cd-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/FileUtils/cdesc-FileUtils.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/FileUtils/chdir-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/FileUtils/chmod-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/FileUtils/chmod_R-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/FileUtils/chown-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/FileUtils/chown_R-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/FileUtils/cmp-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/FileUtils/collect_method-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/FileUtils/commands-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/FileUtils/compare_file-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/FileUtils/compare_stream-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/FileUtils/copy-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/FileUtils/copy_entry-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/FileUtils/copy_file-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/FileUtils/copy_stream-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/FileUtils/cp-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/FileUtils/cp_r-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/FileUtils/fu_have_symlink%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/FileUtils/fu_world_writable%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/FileUtils/getwd-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/FileUtils/have_option%3f-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/FileUtils/identical%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/FileUtils/install-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/FileUtils/link-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/FileUtils/ln-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/FileUtils/ln_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/FileUtils/ln_sf-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/FileUtils/makedirs-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/FileUtils/mkdir-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/FileUtils/mkdir_p-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/FileUtils/mkpath-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/FileUtils/move-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/FileUtils/mv-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/FileUtils/options-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/FileUtils/pwd-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/FileUtils/options_of-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/FileUtils/remove-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/FileUtils/remove_dir-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/FileUtils/remove_entry-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/FileUtils/remove_entry_secure-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/FileUtils/remove_file-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/FileUtils/rm-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/FileUtils/rm_f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/FileUtils/rm_r-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/FileUtils/rm_rf-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/FileUtils/rmdir-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/FileUtils/rmtree-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/FileUtils/safe_unlink-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/FileUtils/symlink-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/FileUtils/touch-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/FileUtils/uptodate%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Fill/cdesc-Fill.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Finalizer/add_dependency-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Finalizer/cdesc-Finalizer.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Finalizer/delete_all_by_dependant-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Finalizer/delete_all_dependency-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Finalizer/delete_by_dependant-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Finalizer/delete_dependency-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Finalizer/final_of-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Finalizer/finalize_all-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Finalizer/finalize_all_by_dependant-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Finalizer/finalize_all_dependency-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Finalizer/finalize_by_dependant-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Finalizer/finalize_dependency-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Finalizer/safe-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Find/cdesc-Find.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Find/find-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Find/prune-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Fixnum/%25-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Fixnum/%26-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Fixnum/%2a%2a-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Fixnum/%2a-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Fixnum/%2b-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Fixnum/%2d%40-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Fixnum/%2d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Fixnum/%2f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Fixnum/%3c%3c-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Fixnum/%3c%3d%3e-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Fixnum/%3c%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Fixnum/%3c-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Fixnum/%3d%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Fixnum/%3e%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Fixnum/%3e%3e-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Fixnum/%3e-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Fixnum/%5b%5d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Fixnum/%5e-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Fixnum/%7c-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Fixnum/%7e-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Fixnum/abs-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Fixnum/cdesc-Fixnum.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Fixnum/dclone-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Fixnum/div-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Fixnum/divmod-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Fixnum/id2name-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Fixnum/induced_from-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Fixnum/modulo-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Fixnum/power%21-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Fixnum/quo-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Fixnum/rdiv-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Fixnum/rpower-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Fixnum/size-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Fixnum/to_f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Fixnum/to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Fixnum/to_sym-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Fixnum/zero%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Float/%25-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Float/%2a%2a-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Float/%2a-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Float/%2b-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Float/%2d%40-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Float/%2d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Float/%2f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Float/%3c%3d%3e-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Float/%3c%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Float/%3c-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Float/%3d%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Float/%3e%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Float/%3e-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Float/abs-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Float/cdesc-Float.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Float/ceil-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Float/coerce-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Float/dclone-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Float/divmod-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Float/eql%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Float/finite%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Float/floor-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Float/hash-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Float/induced_from-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Float/infinite%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Float/modulo-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Float/nan%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Float/round-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Float/to_f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Float/to_i-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Float/to_int-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Float/to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Float/to_yaml-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Float/truncate-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Float/zero%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/FloatDomainError/cdesc-FloatDomainError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Foo/cdesc-Foo.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Foo/hello-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Foo/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Foo/to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Forwardable/cdesc-Forwardable.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Forwardable/def_delegator-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Forwardable/def_delegators-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Forwardable/def_instance_delegator-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Forwardable/def_instance_delegators-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/GC/cdesc-GC.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/GC/disable-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/GC/enable-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/GC/garbage_collect-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/GC/start-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/GServer/cdesc-GServer.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/GServer/connecting-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/GServer/connections-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/GServer/disconnecting-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/GServer/error-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/GServer/in_service%3f-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/GServer/join-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/GServer/log-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/GServer/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/GServer/serve-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/GServer/shutdown-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/GServer/start-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/GServer/starting-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/GServer/stop-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/GServer/stop-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/GServer/stopped%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/GServer/stopping-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generator/cdesc-Generator.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generator/current-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generator/each-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generator/end%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generator/index-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generator/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generator/next%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generator/next-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generator/pos-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generator/rewind-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generator/yield-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Hash/%3d%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Hash/%5b%5d%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Hash/%5b%5d-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Hash/%5b%5d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Hash/cdesc-Hash.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Hash/clear-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Hash/default%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Hash/default-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Hash/default_proc-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Hash/delete-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Hash/delete_if-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Hash/each-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Hash/each_key-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Hash/each_pair-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Hash/each_value-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Hash/empty%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Hash/fetch-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Hash/has_key%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Hash/has_value%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Hash/include%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Hash/index-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Hash/indexes-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Hash/indices-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Hash/initialize_copy-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Hash/inspect-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Hash/invert-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Hash/key%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Hash/keys-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Hash/length-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Hash/member%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Hash/merge%21-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Hash/merge-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Hash/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Hash/pretty_print-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Hash/pretty_print_cycle-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Hash/rehash-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Hash/reject%21-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Hash/reject-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Hash/replace-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Hash/select-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Hash/shift-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Hash/size-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Hash/sort-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Hash/store-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Hash/to_a-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Hash/to_hash-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Hash/to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Hash/to_yaml-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Hash/update-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Hash/value%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Hash/values-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Hash/values_at-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Hash/yaml_initialize-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/AllReferences/%5b%5d-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/AllReferences/add-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/AllReferences/cdesc-AllReferences.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/AllReferences/keys-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/AllReferences/reset-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/CHMGenerator/cdesc-CHMGenerator.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/CHMGenerator/check_for_html_help_workshop-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/CHMGenerator/compile_project-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/CHMGenerator/create_contents_and_index-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/CHMGenerator/create_help_project-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/CHMGenerator/create_project_file-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/CHMGenerator/for-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/CHMGenerator/generate-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/CHMGenerator/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/ContextUser/add_table_of_sections-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/ContextUser/aref_to-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/ContextUser/as_href-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/ContextUser/build_alias_summary_list-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/ContextUser/build_class_list-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/ContextUser/build_constants_summary_list-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/ContextUser/build_include_list-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/ContextUser/build_method_detail_list-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/ContextUser/build_method_summary_list-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/ContextUser/build_requires_list-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/ContextUser/cdesc-ContextUser.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/ContextUser/collect_methods-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/ContextUser/diagram_reference-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/ContextUser/find_symbol-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/ContextUser/document_self-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/ContextUser/href-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/ContextUser/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/ContextUser/potentially_referenced_list-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/ContextUser/url-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/HTMLGenerator/build_class_list-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/HTMLGenerator/build_indices-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/HTMLGenerator/cdesc-HTMLGenerator.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/HTMLGenerator/for-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/HTMLGenerator/gen_an_index-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/HTMLGenerator/gen_class_index-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/HTMLGenerator/gen_file_index-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/HTMLGenerator/gen_into-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/HTMLGenerator/gen_main_index-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/HTMLGenerator/gen_method_index-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/HTMLGenerator/gen_sub_directories-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/HTMLGenerator/gen_url-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/HTMLGenerator/generate-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/HTMLGenerator/generate_html-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/HTMLGenerator/load_html_template-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/HTMLGenerator/main_url-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/HTMLGenerator/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/HTMLGenerator/write_style_sheet-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/HTMLGeneratorInOne/build_class_list-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/HTMLGeneratorInOne/build_indices-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/HTMLGeneratorInOne/cdesc-HTMLGeneratorInOne.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/HTMLGeneratorInOne/gen_an_index-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/HTMLGeneratorInOne/gen_class_index-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/HTMLGeneratorInOne/gen_file_index-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/HTMLGeneratorInOne/gen_into-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/HTMLGeneratorInOne/gen_method_index-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/HTMLGeneratorInOne/generate-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/HTMLGeneratorInOne/generate_xml-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/HTMLGeneratorInOne/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/HtmlClass/%3c%3d%3e-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/HtmlClass/build_attribute_list-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/HtmlClass/cdesc-HtmlClass.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/HtmlClass/class_attribute_values-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/HtmlClass/http_url-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/HtmlClass/index_name-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/HtmlClass/name-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/HtmlClass/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/HtmlClass/parent_name-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/HtmlClass/value_hash-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/HtmlClass/write_on-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/HtmlFile/%3c%3d%3e-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/HtmlFile/cdesc-HtmlFile.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/HtmlFile/file_attribute_values-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/HtmlFile/filename_to_label-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/HtmlFile/http_url-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/HtmlFile/index_name-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/HtmlFile/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/HtmlFile/parent_name-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/HtmlFile/value_hash-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/HtmlFile/write_on-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/HtmlMethod/%3c%3d%3e-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/HtmlMethod/add_line_numbers-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/HtmlMethod/aliases-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/HtmlMethod/all_methods-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/HtmlMethod/aref-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/HtmlMethod/as_href-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/HtmlMethod/call_seq-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/HtmlMethod/cdesc-HtmlMethod.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/HtmlMethod/create_source_code_file-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/HtmlMethod/description-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/HtmlMethod/document_self-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/HtmlMethod/find_symbol-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/HtmlMethod/index_name-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/HtmlMethod/markup_code-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/HtmlMethod/name-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/HtmlMethod/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/HtmlMethod/params-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/HtmlMethod/parent_name-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/HtmlMethod/path-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/HtmlMethod/reset-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/HtmlMethod/section-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/HtmlMethod/singleton-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/HtmlMethod/visibility-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/HyperlinkHtml/cdesc-HyperlinkHtml.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/HyperlinkHtml/gen_url-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/HyperlinkHtml/handle_special_CROSSREF-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/HyperlinkHtml/handle_special_HYPERLINK-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/HyperlinkHtml/handle_special_TIDYLINK-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/HyperlinkHtml/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/MarkUp/cdesc-MarkUp.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/MarkUp/cvs_url-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/MarkUp/markup-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/MarkUp/style_url-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/RIGenerator/cdesc-RIGenerator.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/RIGenerator/for-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/RIGenerator/generate-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/RIGenerator/generate_class_info-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/RIGenerator/generate_method_info-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/RIGenerator/markup-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/RIGenerator/method_list-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/RIGenerator/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/RIGenerator/params_of-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/RIGenerator/process_class-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/RIGenerator/update_or_replace-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/XMLGenerator/build_class_list-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/XMLGenerator/build_indices-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/XMLGenerator/cdesc-XMLGenerator.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/XMLGenerator/for-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/XMLGenerator/gen_an_index-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/XMLGenerator/gen_class_index-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/XMLGenerator/gen_file_index-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/XMLGenerator/gen_into-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/XMLGenerator/gen_method_index-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/XMLGenerator/generate-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/XMLGenerator/generate_xml-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/XMLGenerator/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/cdesc-Generators.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/GetoptLong/AmbigousOption/cdesc-AmbigousOption.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/GetoptLong/Error/cdesc-Error.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/GetoptLong/InvalidOption/cdesc-InvalidOption.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/GetoptLong/MissingArgument/cdesc-MissingArgument.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/GetoptLong/NeedlessArgument/cdesc-NeedlessArgument.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/GetoptLong/cdesc-GetoptLong.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/GetoptLong/each-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/GetoptLong/each_option-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/GetoptLong/error_message-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/GetoptLong/get-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/GetoptLong/get_option-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/GetoptLong/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/GetoptLong/ordering%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/GetoptLong/set_error-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/GetoptLong/set_options-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/GetoptLong/terminate-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/GetoptLong/terminated%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IO/%3c%3c-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IO/binmode-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IO/block_scanf-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IO/cdesc-IO.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IO/close-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IO/close_read-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IO/close_write-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IO/closed%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IO/each-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IO/each_byte-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IO/each_line-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IO/eof%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IO/eof-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IO/fcntl-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IO/fileno-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IO/flush-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IO/for_fd-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IO/foreach-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IO/fsync-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IO/getc-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IO/gets-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IO/inspect-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IO/ioctl-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IO/isatty-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IO/lineno%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IO/lineno-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IO/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IO/open-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IO/pid-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IO/pipe-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IO/popen-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IO/pos%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IO/pos-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IO/print-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IO/printf-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IO/putc-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IO/puts-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IO/read-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IO/read-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IO/read_nonblock-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IO/readbytes-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IO/readchar-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IO/readline-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IO/readlines-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IO/readlines-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IO/readpartial-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IO/reopen-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IO/rewind-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IO/scanf-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IO/seek-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IO/select-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IO/soak_up_spaces-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IO/stat-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IO/sync%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IO/sync-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IO/sysopen-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IO/sysread-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IO/sysseek-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IO/syswrite-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IO/tell-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IO/to_i-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IO/to_io-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IO/tty%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IO/ungetc-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IO/write-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IO/write_nonblock-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IOError/cdesc-IOError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IPAddr/%26-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IPAddr/%3c%3c-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IPAddr/%3d%3d%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IPAddr/%3d%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IPAddr/%3e%3e-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IPAddr/%7c-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IPAddr/%7e-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IPAddr/_reverse-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IPAddr/_to_string-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IPAddr/addr_mask-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IPAddr/cdesc-IPAddr.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IPAddr/hton-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IPAddr/in6_addr-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IPAddr/in_addr-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IPAddr/include%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IPAddr/inspect-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IPAddr/ip6_arpa-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IPAddr/ip6_int-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IPAddr/ipv4%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IPAddr/ipv4_compat-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IPAddr/ipv4_compat%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IPAddr/ipv4_mapped%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IPAddr/ipv4_mapped-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IPAddr/ipv6%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IPAddr/mask%21-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IPAddr/mask-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IPAddr/native-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IPAddr/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IPAddr/new_ntoh-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IPAddr/ntop-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IPAddr/reverse-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IPAddr/set-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IPAddr/to_i-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IPAddr/to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IPAddr/to_string-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IPSocket/cdesc-IPSocket.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/Abort/cdesc-Abort.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/Context/_set_last_value-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/Context/cdesc-Context.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/Context/change_workspace-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/Context/debug%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/Context/debug_level%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/Context/eval_history%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/Context/evaluate-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/Context/exit-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/Context/file_input%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/Context/history_file%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/Context/history_file-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/Context/home_workspace-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/Context/init_save_history-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/Context/inspect%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/Context/inspect-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/Context/inspect_mode%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/Context/main-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/Context/irb_level-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/Context/math_mode%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/Context/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/Context/pop_workspace-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/Context/prompt_mode%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/Context/prompting%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/Context/push_workspace-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/Context/save_history%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/Context/save_history-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/Context/set_last_value-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/Context/to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/Context/use_loader%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/Context/use_loader%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/Context/use_loader-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/Context/use_readline%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/Context/use_tracer%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/Context/verbose%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/Context/workspaces-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/ContextExtender/cdesc-ContextExtender.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/ContextExtender/def_extend_command-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/ContextExtender/install_extend_commands-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/ExtendCommand/ChangeWorkspace/cdesc-ChangeWorkspace.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/ExtendCommand/ChangeWorkspace/execute-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/ExtendCommand/CurrentWorkingWorkspace/cdesc-CurrentWorkingWorkspace.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/ExtendCommand/CurrentWorkingWorkspace/execute-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/ExtendCommand/Foreground/cdesc-Foreground.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/ExtendCommand/Foreground/execute-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/ExtendCommand/Fork/cdesc-Fork.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/ExtendCommand/Fork/execute-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/ExtendCommand/Help/cdesc-Help.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/ExtendCommand/Help/execute-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/ExtendCommand/IrbCommand/cdesc-IrbCommand.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/ExtendCommand/IrbCommand/execute-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/ExtendCommand/Jobs/cdesc-Jobs.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/ExtendCommand/Jobs/execute-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/ExtendCommand/Kill/cdesc-Kill.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/ExtendCommand/Kill/execute-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/ExtendCommand/Load/cdesc-Load.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/ExtendCommand/Load/execute-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/ExtendCommand/Nop/cdesc-Nop.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/ExtendCommand/Nop/execute-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/ExtendCommand/Nop/execute-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/ExtendCommand/Nop/irb-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/ExtendCommand/Nop/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/ExtendCommand/PopWorkspace/cdesc-PopWorkspace.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/ExtendCommand/PopWorkspace/execute-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/ExtendCommand/PushWorkspace/cdesc-PushWorkspace.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/ExtendCommand/PushWorkspace/execute-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/ExtendCommand/Require/cdesc-Require.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/ExtendCommand/Require/execute-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/ExtendCommand/Source/cdesc-Source.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/ExtendCommand/Source/execute-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/ExtendCommand/Workspaces/cdesc-Workspaces.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/ExtendCommand/Workspaces/execute-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/ExtendCommand/cdesc-ExtendCommand.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/ExtendCommandBundle/cdesc-ExtendCommandBundle.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/ExtendCommandBundle/def_extend_command-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/ExtendCommandBundle/extend_object-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/ExtendCommandBundle/install_alias_method-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/ExtendCommandBundle/install_extend_commands-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/ExtendCommandBundle/irb_context-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/ExtendCommandBundle/irb_exit-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/ExtendCommandBundle/irb_load-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/ExtendCommandBundle/irb_original_method_name-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/ExtendCommandBundle/irb_require-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/FileInputMethod/cdesc-FileInputMethod.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/FileInputMethod/eof%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/FileInputMethod/gets-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/FileInputMethod/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/Frame/bottom-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/Frame/bottom-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/Frame/cdesc-Frame.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/Frame/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/Frame/sender-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/Frame/top-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/Frame/top-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/Frame/trace_func-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/History/%5b%5d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/History/cdesc-History.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/History/inspect-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/History/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/History/push-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/History/size-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/HistorySavingAbility/cdesc-HistorySavingAbility.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/HistorySavingAbility/create_finalizer-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/HistorySavingAbility/extended-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/HistorySavingAbility/load_history-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/InputCompletor/cdesc-InputCompletor.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/InputCompletor/select_message-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/InputMethod/cdesc-InputMethod.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/InputMethod/gets-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/InputMethod/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/InputMethod/readable_atfer_eof%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/Irb/cdesc-Irb.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/Irb/eval_input-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/Irb/inspect-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/Irb/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/Irb/output_value-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/Irb/prompt-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/Irb/signal_handle-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/Irb/signal_status-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/Irb/suspend_context-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/Irb/suspend_input_method-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/Irb/suspend_name-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/Irb/suspend_workspace-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/IrbLoader/cdesc-IrbLoader.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/IrbLoader/irb_load-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/IrbLoader/load_file-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/IrbLoader/old-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/IrbLoader/search_file_from_ruby_path-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/IrbLoader/source_file-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/JobManager/cdesc-JobManager.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/JobManager/delete-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/JobManager/insert-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/JobManager/inspect-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/JobManager/irb-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/JobManager/kill-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/JobManager/main_irb-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/JobManager/main_thread-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/JobManager/n_jobs-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/JobManager/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/JobManager/search-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/JobManager/switch-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/JobManager/thread-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/LoadAbort/cdesc-LoadAbort.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/Locale/String-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/Locale/cdesc-Locale.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/Locale/find-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/Locale/format-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/Locale/gets-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/Locale/lc2kconv-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/Locale/lc_path-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/Locale/load-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/Locale/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/Locale/print-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/Locale/printf-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/Locale/puts-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/Locale/readline-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/Locale/real_load-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/Locale/require-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/Locale/search_file-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/MethodExtender/cdesc-MethodExtender.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/MethodExtender/def_post_proc-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/MethodExtender/def_pre_proc-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/MethodExtender/new_alias_name-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/Notifier/AbstructNotifier/cdesc-AbstructNotifier.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/Notifier/AbstructNotifier/exec_if-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/Notifier/AbstructNotifier/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/Notifier/AbstructNotifier/notify%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/Notifier/AbstructNotifier/pp-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/Notifier/AbstructNotifier/ppx-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/Notifier/AbstructNotifier/print-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/Notifier/AbstructNotifier/printf-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/Notifier/AbstructNotifier/printn-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/Notifier/AbstructNotifier/puts-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/Notifier/CompositeNotifier/cdesc-CompositeNotifier.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/Notifier/CompositeNotifier/def_notifier-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/Notifier/CompositeNotifier/level%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/Notifier/CompositeNotifier/level_notifier%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/Notifier/CompositeNotifier/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/Notifier/LeveledNotifier/%3c%3d%3e-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/Notifier/LeveledNotifier/cdesc-LeveledNotifier.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/Notifier/LeveledNotifier/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/Notifier/LeveledNotifier/notify%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/Notifier/NoMsgNotifier/cdesc-NoMsgNotifier.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/Notifier/NoMsgNotifier/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/Notifier/NoMsgNotifier/notify%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/Notifier/cdesc-Notifier.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/Notifier/def_notifier-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/OutputMethod/cdesc-OutputMethod.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/OutputMethod/foo-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/OutputMethod/parse_printf_format-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/OutputMethod/pp-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/OutputMethod/ppx-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/OutputMethod/print-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/OutputMethod/printf-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/OutputMethod/printn-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/OutputMethod/puts-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/ReadlineInputMethod/cdesc-ReadlineInputMethod.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/ReadlineInputMethod/eof%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/ReadlineInputMethod/gets-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/ReadlineInputMethod/line-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/ReadlineInputMethod/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/ReadlineInputMethod/readable_atfer_eof%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/SLex/Node/cdesc-Node.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/SLex/Node/create_subnode-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/SLex/Node/match-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/SLex/Node/match_io-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/SLex/Node/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/SLex/Node/search-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/SLex/cdesc-SLex.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/SLex/create-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/SLex/def_rule-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/SLex/def_rules-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/SLex/inspect-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/SLex/match-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/SLex/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/SLex/postproc-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/SLex/preproc-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/SLex/search-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/StdioInputMethod/cdesc-StdioInputMethod.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/StdioInputMethod/eof%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/StdioInputMethod/gets-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/StdioInputMethod/line-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/StdioInputMethod/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/StdioInputMethod/readable_atfer_eof%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/WorkSpace/cdesc-WorkSpace.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/WorkSpace/evaluate-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/WorkSpace/filter_backtrace-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/WorkSpace/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/StdioOutputMethod/cdesc-StdioOutputMethod.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/StdioOutputMethod/print-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/CurrentContext-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/JobManager-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/cdesc-IRB.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/conf-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/delete_caller-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/init_config-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/init_error-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/initialize_tracer-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/irb-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/irb_abort-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/irb_exit-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/load_modules-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/parse_opts-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/print_usage-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/rc_file-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/rc_file_generators-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/run_config-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/setup-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/start-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/version-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Iconv/BrokenLibrary/cdesc-BrokenLibrary.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Iconv/Failure/cdesc-Failure.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Iconv/Failure/failed-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Iconv/Failure/inspect-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Iconv/Failure/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Iconv/Failure/success-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Iconv/IllegalSequence/cdesc-IllegalSequence.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Iconv/InvalidCharacter/cdesc-InvalidCharacter.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Iconv/InvalidEncoding/cdesc-InvalidEncoding.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Iconv/OutOfRange/cdesc-OutOfRange.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Iconv/cdesc-Iconv.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Iconv/charset_map-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Iconv/close-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Iconv/conv-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Iconv/iconv-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Iconv/iconv-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Iconv/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Iconv/open-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IndexError/cdesc-IndexError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Integer/cdesc-Integer.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Integer/ceil-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Integer/chr-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Integer/denominator-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Integer/downto-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Integer/floor-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Integer/from_prime_division-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Integer/gcd-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Integer/gcd2-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Integer/gcdlcm-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Integer/induced_from-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Integer/integer%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Integer/lcm-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Integer/next-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Integer/numerator-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Integer/prime_division-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Integer/round-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Integer/succ-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Integer/times-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Integer/to_i-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Integer/to_int-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Integer/to_r-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Integer/to_yaml-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Integer/truncate-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Integer/upto-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Interrupt/cdesc-Interrupt.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/InvalidArgument/cdesc-InvalidArgument.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/InvalidOption/cdesc-InvalidOption.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Kconv/cdesc-Kconv.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Kconv/guess-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Kconv/guess_old-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Kconv/iseuc-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Kconv/issjis-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Kconv/isutf8-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Kconv/kconv-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Kconv/toeuc-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Kconv/tojis-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Kconv/tosjis-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Kconv/toutf16-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Kconv/toutf8-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Kernel/%60-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Kernel/Array-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Kernel/Float-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Kernel/Integer-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Kernel/Pathname-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Kernel/String-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Kernel/URI-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Kernel/abort-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Kernel/at_exit-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Kernel/autoload%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Kernel/autoload-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Kernel/binding-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Kernel/block_given%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Kernel/callcc-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Kernel/caller-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Kernel/catch-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Kernel/cdesc-Kernel.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Kernel/chomp%21-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Kernel/chomp-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Kernel/chop%21-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Kernel/chop-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Kernel/eval-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Kernel/exec-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Kernel/exit%21-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Kernel/exit-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Kernel/fail-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Kernel/fork-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Kernel/format-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Kernel/getc-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Kernel/gets-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Kernel/global_variables-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Kernel/gsub%21-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Kernel/gsub-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Kernel/iterator%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Kernel/lambda-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Kernel/load-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Kernel/local_variables-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Kernel/loop-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Kernel/method_missing-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Kernel/open-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Kernel/open_uri_original_open-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Kernel/p-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Kernel/pp-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Kernel/pretty_inspect-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Kernel/print-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Kernel/printf-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Kernel/proc-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Kernel/putc-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Kernel/puts-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Kernel/raise-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Kernel/rand-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Kernel/readline-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Kernel/readlines-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Kernel/require-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Kernel/scan-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Kernel/scanf-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Kernel/select-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Kernel/set_trace_func-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Kernel/sleep-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Kernel/split-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Kernel/sprintf-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Kernel/srand-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Kernel/sub%21-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Kernel/sub-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Kernel/syscall-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Kernel/system-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Kernel/test-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Kernel/throw-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Kernel/trace_var-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Kernel/trap-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Kernel/untrace_var-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Kernel/warn-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Kernel/y-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/List/accept-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/List/append-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/List/cdesc-List.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/List/complete-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/List/each_option-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/List/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/List/prepend-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/List/reject-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/List/search-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/List/summarize-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/List/update-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/LoadError/cdesc-LoadError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/LocalJumpError/cdesc-LocalJumpError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/LocalJumpError/exit_value-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/LocalJumpError/reason-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Logger/Application/cdesc-Application.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Logger/Application/level%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Logger/Application/log%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Logger/Application/log-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Logger/Application/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Logger/Application/run-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Logger/Application/set_log-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Logger/Application/start-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Logger/Error/cdesc-Error.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Logger/Formatter/call-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Logger/Formatter/cdesc-Formatter.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Logger/Formatter/format_datetime-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Logger/Formatter/msg2str-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Logger/Formatter/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Logger/LogDevice/LogDeviceMutex/cdesc-LogDeviceMutex.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Logger/LogDevice/add_log_header-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Logger/LogDevice/cdesc-LogDevice.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Logger/LogDevice/check_shift_log-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Logger/LogDevice/close-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Logger/LogDevice/create_logfile-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Logger/LogDevice/eod-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Logger/LogDevice/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Logger/LogDevice/open_logfile-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Logger/LogDevice/previous_period_end-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Logger/LogDevice/shift_log_age-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Logger/LogDevice/shift_log_period-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Logger/LogDevice/write-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Logger/Severity/cdesc-Severity.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Logger/ShiftingError/cdesc-ShiftingError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Logger/%3c%3c-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Logger/add-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Logger/cdesc-Logger.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Logger/close-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Logger/datetime_format%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Logger/datetime_format-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Logger/debug%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Logger/debug-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Logger/error%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Logger/error-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Logger/fatal%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Logger/fatal-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Logger/format_message-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Logger/info%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Logger/format_severity-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Logger/info-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Logger/log-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Logger/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Logger/unknown-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Logger/warn%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Logger/warn-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Logging/cdesc-Logging.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Logging/logfile-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Logging/message-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Logging/open-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Logging/postpone-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Mail/%5b%5d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Mail/body-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Mail/cdesc-Mail.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Mail/header-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Mail/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Marshal/cdesc-Marshal.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Marshal/dump-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Marshal/load-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Marshal/restore-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/MatchData/%5b%5d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/MatchData/begin-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/MatchData/captures-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/MatchData/cdesc-MatchData.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/MatchData/end-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/MatchData/inspect-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/MatchData/length-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/MatchData/offset-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/MatchData/post_match-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/MatchData/pre_match-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/MatchData/pretty_print-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/MatchData/select-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/MatchData/size-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/MatchData/string-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/MatchData/to_a-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/MatchData/to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/MatchData/values_at-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Math/acos-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Math/acos-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Math/acosh-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Math/acosh-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Math/asin-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Math/asin-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Math/asinh-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Math/asinh-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Math/atan-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Math/atan-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Math/atan2-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Math/atan2-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Math/atanh-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Math/atanh-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Math/cdesc-Math.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Math/cos-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Math/cos-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Math/cosh-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Math/cosh-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Math/erf-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Math/erfc-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Math/exp-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Math/exp-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Math/frexp-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Math/hypot-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Math/ldexp-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Math/log-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Math/log-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Math/log10-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Math/log10-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Math/rsqrt-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Math/sin-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Math/sin-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Math/sinh-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Math/sinh-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Math/sqrt-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Math/sqrt-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Math/tan-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Math/tan-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Math/tanh-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Math/tanh-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Matrix/Scalar/cdesc-Scalar.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Matrix/%2a%2a-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Matrix/%2a-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Matrix/%2b-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Matrix/%2d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Matrix/%2f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Matrix/%3d%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Matrix/%5b%5d-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Matrix/%5b%5d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Matrix/cdesc-Matrix.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Matrix/clone-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Matrix/coerce-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Matrix/collect-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Matrix/column-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Matrix/column_size-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Matrix/column_vector-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Matrix/column_vectors-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Matrix/columns-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Matrix/compare_by_row_vectors-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Matrix/det-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Matrix/determinant-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Matrix/diagonal-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Matrix/eql%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Matrix/hash-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Matrix/identity-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Matrix/init_rows-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Matrix/inspect-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Matrix/inv-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Matrix/inverse-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Matrix/inverse_from-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Matrix/map-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Matrix/minor-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Matrix/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Matrix/rank-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Matrix/regular%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Matrix/row-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Matrix/row_size-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Matrix/row_vector-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Matrix/row_vectors-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Matrix/rows-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Matrix/scalar-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Matrix/singular%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Matrix/square%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Matrix/t-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Matrix/to_a-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Matrix/to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Matrix/tr-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Matrix/trace-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Matrix/transpose-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Matrix/zero-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Method/%3d%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Method/%5b%5d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Method/arity-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Method/call-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Method/cdesc-Method.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Method/clone-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Method/inspect-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Method/to_proc-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Method/to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Method/unbind-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/MissingArgument/cdesc-MissingArgument.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Module/%3c%3d%3e-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Module/%3c%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Module/%3c-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Module/%3d%3d%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Module/%3d%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Module/%3e%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Module/%3e-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Module/alias_method-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Module/ancestors-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Module/append_features-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Module/attr-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Module/attr_accessor-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Module/attr_reader-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Module/attr_writer-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Module/autoload%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Module/autoload-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Module/cdesc-Module.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Module/class_eval-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Module/class_variable_defined%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Module/class_variable_get-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Module/class_variable_set-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Module/class_variables-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Module/const_defined%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Module/const_get-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Module/const_missing-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Module/const_set-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Module/constants-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Module/constants-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Module/define_method-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Module/extend_object-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Module/extended-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Module/freeze-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Module/include%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Module/include-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Module/included-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Module/included_modules-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Module/instance_method-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Module/instance_methods-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Module/method_added-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Module/method_defined%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Module/method_removed-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Module/method_undefined-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Module/module_eval-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Module/module_function-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Module/name-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Module/nesting-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Module/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Module/private-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Module/private_class_method-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Module/private_instance_methods-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Module/private_method_defined%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Module/to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Module/protected-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Module/protected_instance_methods-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Module/protected_method_defined%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Module/public-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Module/public_class_method-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Module/public_instance_methods-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Module/public_method_defined%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Module/remove_class_variable-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Module/remove_const-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Module/remove_method-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Module/undef_method-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/NKF/cdesc-NKF.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/NKF/guess1-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/NKF/guess2-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/NKF/nkf-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Monitor/cdesc-Monitor.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/MonitorMixin/ConditionVariable/Timeout/cdesc-Timeout.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/MonitorMixin/ConditionVariable/broadcast-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/MonitorMixin/ConditionVariable/cdesc-ConditionVariable.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/MonitorMixin/ConditionVariable/count_waiters-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/MonitorMixin/ConditionVariable/create_timer-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/MonitorMixin/ConditionVariable/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/MonitorMixin/ConditionVariable/signal-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/MonitorMixin/ConditionVariable/wait-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/MonitorMixin/ConditionVariable/wait_until-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/MonitorMixin/ConditionVariable/wait_while-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/MonitorMixin/cdesc-MonitorMixin.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/MonitorMixin/extend_object-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/MonitorMixin/mon_acquire-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/MonitorMixin/mon_check_owner-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/MonitorMixin/mon_enter-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/MonitorMixin/mon_enter_for_cond-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/MonitorMixin/mon_exit-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/MonitorMixin/mon_exit_for_cond-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/MonitorMixin/mon_initialize-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/MonitorMixin/mon_release-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/MonitorMixin/mon_synchronize-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/MonitorMixin/mon_try_enter-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/MonitorMixin/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/MonitorMixin/new_cond-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/MonitorMixin/synchronize-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/MonitorMixin/try_mon_enter-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Mutex/cdesc-Mutex.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Mutex/exclusive_unlock-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Mutex/lock-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Mutex/locked%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Mutex/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Mutex/synchronize-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Mutex/try_lock-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Mutex/unlock-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Mutex_m/append_features-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Mutex_m/cdesc-Mutex_m.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Mutex_m/define_aliases-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Mutex_m/extend_object-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Mutex_m/mu_extended-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Mutex_m/mu_initialize-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Mutex_m/mu_lock-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Mutex_m/mu_locked%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Mutex_m/mu_synchronize-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Mutex_m/mu_try_lock-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Mutex_m/mu_unlock-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Mutex_m/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/NameDescriptor/cdesc-NameDescriptor.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/NameDescriptor/full_class_name-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/NameDescriptor/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/NameError/message/cdesc-message.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/NameError/cdesc-NameError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/NameError/name-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/NameError/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/NameError/to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/NeedlessArgument/cdesc-NeedlessArgument.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/APOP/apop%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/APOP/cdesc-APOP.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/BufferedIO/cdesc-BufferedIO.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/FTP/abort-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/FTP/acct-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/FTP/cdesc-FTP.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/FTP/chdir-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/FTP/close-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/FTP/closed%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/FTP/connect-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/FTP/delete-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/FTP/dir-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/FTP/get-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/FTP/getaddress-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/FTP/getbinaryfile-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/FTP/getdir-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/FTP/getline-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/FTP/getmultiline-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/FTP/getresp-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/FTP/gettextfile-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/FTP/help-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/FTP/list-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/FTP/login-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/FTP/ls-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/FTP/makepasv-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/FTP/makeport-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/FTP/mdtm-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/FTP/mkdir-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/FTP/mtime-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/FTP/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/FTP/nlst-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/FTP/noop-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/FTP/open-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/FTP/open_socket-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/FTP/parse227-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/FTP/parse228-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/FTP/parse229-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/FTP/parse257-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/FTP/put-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/FTP/putbinaryfile-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/FTP/putline-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/FTP/puttextfile-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/FTP/pwd-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/FTP/quit-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/FTP/rename-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/FTP/retrbinary-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/FTP/retrlines-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/FTP/return_code%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/FTP/return_code-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/FTP/rmdir-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/FTP/sanitize-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/FTP/sendcmd-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/FTP/sendport-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/FTP/set_socket-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/FTP/site-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/FTP/size-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/FTP/status-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/FTP/storbinary-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/FTP/storlines-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/FTP/system-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/FTP/transfercmd-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/FTP/voidcmd-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/FTP/voidresp-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTP/Copy/cdesc-Copy.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTP/Delete/cdesc-Delete.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTP/Get/cdesc-Get.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTP/Head/cdesc-Head.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTP/Lock/cdesc-Lock.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTP/Mkcol/cdesc-Mkcol.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTP/Move/cdesc-Move.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTP/Options/cdesc-Options.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTP/Post/cdesc-Post.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTP/Propfind/cdesc-Propfind.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTP/Proppatch/cdesc-Proppatch.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTP/ProxyDelta/cdesc-ProxyDelta.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTP/Put/cdesc-Put.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTP/Trace/cdesc-Trace.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTP/Unlock/cdesc-Unlock.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTP/D-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTP/Proxy-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTP/active%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTP/addr_port-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTP/begin_transport-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTP/cdesc-HTTP.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTP/conn_address-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTP/conn_port-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTP/connect-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTP/copy-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTP/default_port-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTP/delete-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTP/do_finish-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTP/do_start-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTP/edit_path-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTP/end_transport-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTP/finish-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTP/get-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTP/get-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTP/get2-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTP/get_print-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTP/get_response-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTP/head-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTP/head2-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTP/http_default_port-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTP/https_default_port-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTP/inspect-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTP/keep_alive%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTP/lock-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTP/mkcol-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTP/move-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTP/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTP/on_connect-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTP/options-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTP/peer_cert-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTP/post-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTP/post2-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTP/post_form-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTP/propfind-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTP/proppatch-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTP/proxy%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTP/proxy_address-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTP/proxy_class%3f-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTP/proxy_pass-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTP/proxy_port-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTP/proxy_user-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTP/proxyaddr-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTP/request-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTP/proxyport-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTP/read_timeout%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTP/request_get-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTP/request_head-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTP/request_post-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTP/send_request-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTP/set_debug_output-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTP/ssl_context_accessor-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTP/ssl_timeout%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTP/ssl_timeout-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTP/start-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTP/start-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTP/started%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTP/timeout%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTP/trace-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTP/unlock-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTP/use_ssl%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTP/use_ssl%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTP/use_ssl-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTP/version_1_1%3f-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTP/version_1_1-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTP/version_1_2%3f-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTP/version_1_2-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTPError/cdesc-HTTPError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTPExceptions/cdesc-HTTPExceptions.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTPFatalError/cdesc-HTTPFatalError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTPGenericRequest/body%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTPGenericRequest/body_exist%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTPGenericRequest/body_stream%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTPGenericRequest/cdesc-HTTPGenericRequest.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTPGenericRequest/inspect-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTPGenericRequest/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTPGenericRequest/request_body_permitted%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTPGenericRequest/response_body_permitted%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTPGenericRequest/send_request_with_body-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTPGenericRequest/send_request_with_body_stream-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTPGenericRequest/supply_default_content_type-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTPGenericRequest/write_header-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTPHeader/%5b%5d%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTPHeader/%5b%5d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTPHeader/add_field-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTPHeader/basic_auth-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTPHeader/basic_encode-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTPHeader/canonical_each-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTPHeader/capitalize-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTPHeader/cdesc-HTTPHeader.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTPHeader/chunked%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTPHeader/content_length%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTPHeader/content_length-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTPHeader/content_range-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTPHeader/content_type%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTPHeader/content_type-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTPHeader/delete-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTPHeader/each-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTPHeader/each_header-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTPHeader/each_capitalized-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTPHeader/each_capitalized_name-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTPHeader/each_key-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTPHeader/each_name-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTPHeader/each_value-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTPHeader/fetch-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTPHeader/form_data%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTPHeader/get_fields-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTPHeader/initialize_http_header-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTPHeader/key%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTPHeader/main_type-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTPHeader/proxy_basic_auth-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTPHeader/range%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTPHeader/range-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTPHeader/range_length-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTPHeader/set_content_type-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTPHeader/set_form_data-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTPHeader/set_range-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTPHeader/sub_type-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTPHeader/to_hash-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTPHeader/type_params-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTPHeader/urlencode-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTPRequest/cdesc-HTTPRequest.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTPRequest/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTPResponse/body-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTPResponse/body_permitted%3f-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTPResponse/cdesc-HTTPResponse.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTPResponse/each_response_header-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTPResponse/entity-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTPResponse/inspect-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTPResponse/procdest-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTPResponse/read_body-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTPResponse/read_body_0-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTPResponse/read_chunked-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTPResponse/read_status_line-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTPResponse/response_class-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTPResponse/stream_check-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTPResponse/to_ary-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTPResponse/value-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTPRetriableError/cdesc-HTTPRetriableError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTPServerException/cdesc-HTTPServerException.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/Atom/cdesc-Atom.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/BadResponseError/cdesc-BadResponseError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/BodyTypeBasic/cdesc-BodyTypeBasic.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/BodyTypeBasic/media_subtype-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/BodyTypeBasic/multipart%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/BodyTypeMessage/cdesc-BodyTypeMessage.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/BodyTypeMessage/media_subtype-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/BodyTypeMessage/multipart%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/BodyTypeMultipart/cdesc-BodyTypeMultipart.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/BodyTypeMultipart/media_subtype-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/BodyTypeMultipart/multipart%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/BodyTypeText/cdesc-BodyTypeText.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/BodyTypeText/media_subtype-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/BodyTypeText/multipart%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/ByeResponseError/cdesc-ByeResponseError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/CramMD5Authenticator/cdesc-CramMD5Authenticator.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/CramMD5Authenticator/hmac_md5-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/CramMD5Authenticator/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/CramMD5Authenticator/process-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/DataFormatError/cdesc-DataFormatError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/Error/cdesc-Error.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/Literal/cdesc-Literal.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/LoginAuthenticator/cdesc-LoginAuthenticator.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/LoginAuthenticator/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/LoginAuthenticator/process-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/MessageSet/cdesc-MessageSet.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/NoResponseError/cdesc-NoResponseError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/QuotedString/cdesc-QuotedString.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/RawData/cdesc-RawData.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/ResponseError/cdesc-ResponseError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/ResponseParseError/cdesc-ResponseParseError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/ResponseParser/cdesc-ResponseParser.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/add_authenticator-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/add_response_handler-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/append-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/authenticate-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/capability-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/cdesc-IMAP.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/check-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/close-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/copy-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/copy_internal-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/create-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/debug%3d-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/debug-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/decode_utf7-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/delete-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/disconnect-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/disconnected%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/encode_utf7-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/examine-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/expunge-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/fetch-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/fetch_internal-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/generate_tag-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/get_response-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/get_tagged_response-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/getacl-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/getquota-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/getquotaroot-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/list-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/login-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/logout-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/lsub-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/noop-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/normalize_searching_criteria-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/pick_up_tagged_response-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/put_string-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/receive_responses-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/record_response-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/remove_response_handler-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/rename-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/search-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/search_internal-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/select-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/send_command-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/send_data-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/send_list_data-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/send_literal-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/send_number_data-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/send_quoted_string-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/send_string_data-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/send_symbol_data-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/send_time_data-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/setacl-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/setquota-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/sort-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/sort_internal-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/status-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/store-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/store_internal-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/subscribe-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/thread-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/thread_internal-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/u16tou8-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/u8tou16-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/uid_copy-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/uid_fetch-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/uid_search-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/uid_sort-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/uid_store-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/uid_thread-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/unsubscribe-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/InternetMessageIO/cdesc-InternetMessageIO.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/NetPrivate/cdesc-NetPrivate.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/POP3/APOP-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/POP3/active%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/POP3/apop%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/POP3/auth_only-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/POP3/auth_only-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/POP3/cdesc-POP3.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/POP3/command-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/POP3/default_port-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/POP3/delete_all-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/POP3/delete_all-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/POP3/do_finish-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/POP3/do_start-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/POP3/each-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/POP3/each_mail-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/POP3/finish-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/POP3/foreach-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/POP3/inspect-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/POP3/mails-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/POP3/n_bytes-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/POP3/n_mails-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/POP3/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/POP3/on_connect-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/POP3/read_timeout%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/POP3/reset-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/POP3/set_debug_output-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/POP3/start-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/POP3/start-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/POP3/started%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/POP3Command/cdesc-POP3Command.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/POPAuthenticationError/cdesc-POPAuthenticationError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/POPBadResponse/cdesc-POPBadResponse.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/POPError/cdesc-POPError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/POPMail/all-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/POPMail/cdesc-POPMail.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/POPMail/delete%21-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/POPMail/delete-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/POPMail/deleted%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/POPMail/header-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/POPMail/inspect-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/POPMail/mail-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/POPMail/pop-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/POPMail/top-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/POPMail/uidl-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/POPMail/unique_id-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/SMTP/auth_cram_md5-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/SMTP/auth_login-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/SMTP/auth_plain-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/SMTP/authenticate-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/SMTP/base64_encode-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/SMTP/cdesc-SMTP.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/SMTP/check_auth_args-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/SMTP/check_response-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/SMTP/critical-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/SMTP/default_port-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/SMTP/do_finish-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/SMTP/do_start-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/SMTP/ehlo-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/SMTP/esmtp%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/SMTP/esmtp%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/SMTP/esmtp-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/SMTP/finish-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/SMTP/get_response-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/SMTP/getok-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/SMTP/helo-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/SMTP/inspect-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/SMTP/mailfrom-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/SMTP/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/SMTP/open_message_stream-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/SMTP/quit-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/SMTP/rcptto-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/SMTP/read_timeout%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/SMTP/ready-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/SMTP/recv_response-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/SMTP/send0-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/SMTP/send_mail-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/SMTP/send_message-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/SMTP/sendmail-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/SMTP/set_debug_output-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/SMTP/start-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/SMTP/start-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/SMTP/started%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/ProtoAuthError/cdesc-ProtoAuthError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/ProtoCommandError/cdesc-ProtoCommandError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/ProtoFatalError/cdesc-ProtoFatalError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/ProtoRetriableError/cdesc-ProtoRetriableError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/ProtoServerError/cdesc-ProtoServerError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/ProtoSyntaxError/cdesc-ProtoSyntaxError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/ProtoUnknownError/cdesc-ProtoUnknownError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/Protocol/cdesc-Protocol.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/ProtocolError/cdesc-ProtocolError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/ReadAdapter/cdesc-ReadAdapter.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/SMTPAuthenticationError/cdesc-SMTPAuthenticationError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/SMTPError/cdesc-SMTPError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/SMTPFatalError/cdesc-SMTPFatalError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/SMTPServerBusy/cdesc-SMTPServerBusy.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/SMTPSyntaxError/cdesc-SMTPSyntaxError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/SMTPUnknownError/cdesc-SMTPUnknownError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/Telnet/binmode%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/Telnet/binmode-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/Telnet/cdesc-Telnet.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/Telnet/cmd-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/Telnet/login-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/Telnet/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/Telnet/preprocess-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/Telnet/print-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/Telnet/puts-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/Telnet/telnetmode%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/Telnet/telnetmode-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/Telnet/waitfor-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/Telnet/write-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/WriteAdapter/%3c%3c-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/WriteAdapter/cdesc-WriteAdapter.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/WriteAdapter/inspect-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/WriteAdapter/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/WriteAdapter/print-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/WriteAdapter/printf-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/WriteAdapter/puts-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/WriteAdapter/write-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/cdesc-Net.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/NilClass/%26-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/NilClass/%5e-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/NilClass/%7c-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/NilClass/cdesc-NilClass.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/NilClass/inspect-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/NilClass/nil%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/NilClass/to_a-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/NilClass/to_f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/NilClass/to_i-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/NilClass/to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/NilClass/to_yaml-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/NoMemoryError/cdesc-NoMemoryError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/NoMethodError/args-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/NoMethodError/cdesc-NoMethodError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/NoMethodError/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/NonString/cdesc-NonString.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/NotImplementedError/cdesc-NotImplementedError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Numeric/%2b%40-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Numeric/%2d%40-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Numeric/%3c%3d%3e-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Numeric/abs-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Numeric/angle-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Numeric/arg-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Numeric/cdesc-Numeric.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Numeric/ceil-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Numeric/coerce-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Numeric/conj-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Numeric/conjugate-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Numeric/div-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Numeric/divmod-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Numeric/eql%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Numeric/floor-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Numeric/im-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Numeric/imag-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Numeric/image-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Numeric/integer%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Numeric/modulo-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Numeric/quo-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Numeric/nonzero%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Numeric/polar-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Numeric/real-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Numeric/remainder-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Numeric/round-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Numeric/singleton_method_added-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Numeric/step-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Numeric/to_int-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Numeric/truncate-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Numeric/zero%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Object/%3d%3d%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Object/%3d%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Object/%3d%7e-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Object/__id__-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Object/__send__-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Object/cdesc-Object.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Object/class-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Object/clone-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Object/dclone-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Object/display-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Object/dup-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Object/enum_for-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Object/eql%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Object/equal%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Object/extend-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Object/freeze-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Object/frozen%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Object/hash-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Object/id-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Object/inspect-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Object/instance_eval-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Object/instance_of%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Object/instance_variable_defined%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Object/instance_variable_get-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Object/instance_variable_set-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Object/instance_variables-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Object/is_a%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Object/kind_of%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Object/method-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Object/methods-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Object/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Object/nil%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Object/object_id-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Object/private_methods-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Object/protected_methods-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Object/public_methods-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Object/remove_instance_variable-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Object/respond_to%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Object/send-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Object/singleton_method_added-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Object/singleton_method_removed-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Object/singleton_method_undefined-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Object/singleton_methods-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Object/taint-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Object/tainted%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Object/to_a-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Object/to_enum-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Object/to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Object/to_yaml-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Object/to_yaml_properties-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Object/to_yaml_style-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Object/type-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Object/untaint-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/ObjectSpace/_id2ref-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/ObjectSpace/add_finalizer-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/ObjectSpace/call_finalizer-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/ObjectSpace/cdesc-ObjectSpace.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/ObjectSpace/define_finalizer-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/ObjectSpace/each_object-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/ObjectSpace/finalizers-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/ObjectSpace/garbage_collect-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/ObjectSpace/remove_finalizer-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/ObjectSpace/undefine_finalizer-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Observable/add_observer-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Observable/cdesc-Observable.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Observable/changed%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Observable/changed-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Observable/count_observers-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Observable/delete_observer-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Observable/delete_observers-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Observable/notify_observers-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Open3/cdesc-Open3.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Open3/popen3-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/OpenStruct/%3d%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/OpenStruct/cdesc-OpenStruct.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/OpenStruct/delete_field-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/OpenStruct/initialize_copy-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/OpenStruct/inspect-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/OpenStruct/marshal_dump-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/OpenStruct/marshal_load-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/OpenStruct/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/OpenStruct/new_ostruct_member-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/OpenStruct/to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/OpenURI/Buffer/cdesc-Buffer.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/OpenURI/HTTPError/cdesc-HTTPError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/OpenURI/HTTPError/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/OpenURI/Meta/cdesc-Meta.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/OpenURI/Meta/charset-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/OpenURI/Meta/content_encoding-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/OpenURI/Meta/content_type-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/OpenURI/Meta/last_modified-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/OpenURI/OpenRead/cdesc-OpenRead.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/OpenURI/OpenRead/open-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/OpenURI/OpenRead/read-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/OpenURI/cdesc-OpenURI.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/OptionParser/Completion/cdesc-Completion.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/OptionParser/Completion/complete-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/OptionParser/Completion/convert-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/OptionParser/NoArgument/cdesc-NoArgument.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/OptionParser/NoArgument/incompatible_argument_styles-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/OptionParser/NoArgument/parse-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/OptionParser/NoArgument/pattern-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/OptionParser/OptionMap/cdesc-OptionMap.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/OptionParser/OptionalArgument/cdesc-OptionalArgument.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/OptionParser/OptionalArgument/parse-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/OptionParser/PlacedArgument/cdesc-PlacedArgument.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/OptionParser/PlacedArgument/parse-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/OptionParser/RequiredArgument/cdesc-RequiredArgument.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/OptionParser/RequiredArgument/parse-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/OptionParser/Switch/cdesc-Switch.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/OptionParser/Switch/conv_arg-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/OptionParser/Switch/guess-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/OptionParser/Switch/incompatible_argument_styles-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/OptionParser/Switch/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/OptionParser/Switch/parse_arg-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/OptionParser/Switch/pattern-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/OptionParser/Switch/summarize-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/OptionParser/cdesc-OptionParser.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/OptionParser/switch_name-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Options/OptionList/cdesc-OptionList.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Options/OptionList/error-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Options/OptionList/help_output-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Options/OptionList/options-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Options/OptionList/strip_output-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Options/OptionList/usage-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Options/cdesc-Options.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Options/check_diagram-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Options/check_files-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Options/error-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Options/parse-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Options/setup_generator-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Options/title%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Options/title-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/PP/ObjectMixin/cdesc-ObjectMixin.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/PP/ObjectMixin/pretty_print-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/PP/ObjectMixin/pretty_print_cycle-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/PP/ObjectMixin/pretty_print_inspect-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/PP/ObjectMixin/pretty_print_instance_variables-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/PP/PPMethods/cdesc-PPMethods.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/PP/PPMethods/comma_breakable-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/PP/PPMethods/guard_inspect_key-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/PP/PPMethods/object_address_group-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/PP/PPMethods/object_group-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/PP/PPMethods/pp-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/PP/PPMethods/pp_hash-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/PP/PPMethods/pp_object-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/PP/PPMethods/seplist-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/PP/SingleLine/cdesc-SingleLine.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/PP/cdesc-PP.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/PP/pp-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/PP/singleline_pp-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/PStore/Error/cdesc-Error.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/PStore/%5b%5d%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/PStore/%5b%5d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/PStore/abort-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/PStore/cdesc-PStore.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/PStore/commit-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/PStore/commit_new-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/PStore/delete-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/PStore/fetch-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/PStore/in_transaction-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/PStore/in_transaction_wr-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/PStore/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/PStore/path-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/PStore/root%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/PStore/roots-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/PStore/transaction-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/ParseDate/cdesc-ParseDate.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/ParseDate/parsedate-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/ParseError/cdesc-ParseError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/ParseError/inspect-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/ParseError/message-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/ParseError/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/ParseError/reason-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/ParseError/recover-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/ParseError/set_option-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/ParseError/to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Pathname/%2b-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Pathname/%3c%3d%3e-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Pathname/%3d%3d%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Pathname/%3d%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Pathname/TO_PATH-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Pathname/absolute%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Pathname/add_trailing_separator-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Pathname/ascend-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Pathname/atime-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Pathname/basename-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Pathname/blockdev%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Pathname/cdesc-Pathname.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Pathname/chardev%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Pathname/chdir-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Pathname/children-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Pathname/chmod-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Pathname/chop_basename-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Pathname/chown-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Pathname/chroot-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Pathname/cleanpath-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Pathname/cleanpath_aggressive-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Pathname/cleanpath_conservative-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Pathname/ctime-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Pathname/del_trailing_separator-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Pathname/delete-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Pathname/descend-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Pathname/dir_foreach-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Pathname/directory%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Pathname/dirname-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Pathname/each_entry-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Pathname/each_filename-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Pathname/each_line-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Pathname/entries-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Pathname/eql%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Pathname/executable%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Pathname/exist%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Pathname/executable_real%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Pathname/expand_path-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Pathname/extname-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Pathname/file%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Pathname/find-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Pathname/fnmatch%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Pathname/fnmatch-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Pathname/foreach-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Pathname/foreachline-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Pathname/freeze-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Pathname/ftype-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Pathname/getwd-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Pathname/glob-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Pathname/grpowned%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Pathname/has_trailing_separator%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Pathname/join-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Pathname/lchmod-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Pathname/lchown-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Pathname/link-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Pathname/lstat-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Pathname/make_link-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Pathname/make_symlink-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Pathname/mkdir-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Pathname/mkpath-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Pathname/mountpoint%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Pathname/mtime-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Pathname/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Pathname/open-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Pathname/opendir-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Pathname/owned%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Pathname/parent-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Pathname/pipe%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Pathname/plus-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Pathname/prepend_prefix-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Pathname/read-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Pathname/readable%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Pathname/readable_real%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Pathname/readlines-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Pathname/readlink-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Pathname/realpath-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Pathname/realpath_rec-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Pathname/relative%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Pathname/relative_path_from-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Pathname/rename-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Pathname/rmdir-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Pathname/rmtree-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Pathname/root%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Pathname/setgid%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Pathname/setuid%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Pathname/size%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Pathname/size-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Pathname/socket%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Pathname/split-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Pathname/split_names-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Pathname/stat-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Pathname/sticky%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Pathname/sub-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Pathname/symlink%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Pathname/symlink-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Pathname/sysopen-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Pathname/taint-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Pathname/to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Pathname/truncate-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Pathname/unlink-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Pathname/untaint-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Pathname/utime-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Pathname/world_readable%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Pathname/world_writable%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Pathname/writable%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Pathname/writable_real%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Pathname/zero%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Ping/cdesc-Ping.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Ping/pingecho-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Precision/cdesc-Precision.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Precision/included-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Precision/prec-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Precision/prec_f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Precision/prec_i-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/PrettyPrint/Breakable/cdesc-Breakable.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/PrettyPrint/Breakable/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/PrettyPrint/Breakable/output-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/PrettyPrint/Group/break%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/PrettyPrint/Group/break-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/PrettyPrint/Group/cdesc-Group.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/PrettyPrint/Group/first%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/PrettyPrint/Group/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/PrettyPrint/GroupQueue/cdesc-GroupQueue.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/PrettyPrint/GroupQueue/delete-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/PrettyPrint/GroupQueue/deq-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/PrettyPrint/GroupQueue/enq-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/PrettyPrint/GroupQueue/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/PrettyPrint/SingleLine/breakable-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/PrettyPrint/SingleLine/cdesc-SingleLine.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/PrettyPrint/SingleLine/first%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/PrettyPrint/SingleLine/flush-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/PrettyPrint/SingleLine/group-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/PrettyPrint/SingleLine/nest-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/PrettyPrint/SingleLine/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/PrettyPrint/SingleLine/text-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/PrettyPrint/Text/add-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/PrettyPrint/Text/cdesc-Text.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/PrettyPrint/Text/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/PrettyPrint/Text/output-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/PrettyPrint/break_outmost_groups-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/PrettyPrint/breakable-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/PrettyPrint/cdesc-PrettyPrint.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/PrettyPrint/current_group-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/PrettyPrint/fill_breakable-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/PrettyPrint/first%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/PrettyPrint/flush-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/PrettyPrint/format-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/PrettyPrint/group-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/PrettyPrint/group_sub-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/PrettyPrint/nest-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/PrettyPrint/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/PrettyPrint/singleline_format-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/PrettyPrint/text-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Prime/cdesc-Prime.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Prime/each-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Prime/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Prime/next-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Prime/succ-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Proc/%3d%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Proc/%5b%5d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Proc/arity-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Proc/binding-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Proc/call-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Proc/cdesc-Proc.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Proc/clone-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Proc/dup-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Proc/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Proc/to_proc-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Proc/to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Process/GID/cdesc-GID.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Process/GID/change_privilege-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Process/GID/eid-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Process/GID/grant_privilege-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Process/GID/re_exchange-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Process/GID/re_exchangeable%3f-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Process/GID/rid-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Process/GID/sid_available%3f-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Process/GID/switch-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Process/Status/%26-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Process/Status/%3d%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Process/Status/%3e%3e-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Process/Status/cdesc-Status.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Process/Status/coredump%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Process/Status/exited%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Process/Status/exitstatus-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Process/Status/inspect-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Process/Status/pid-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Process/Status/signaled%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Process/Status/stopped%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Process/Status/stopsig-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Process/Status/success%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Process/Status/termsig-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Process/Status/to_i-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Process/Status/to_int-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Process/Status/to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Process/Sys/cdesc-Sys.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Process/Sys/getegid-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Process/Sys/geteuid-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Process/Sys/getgid-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Process/Sys/getuid-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Process/Sys/issetugid-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Process/Sys/setegid-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Process/Sys/seteuid-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Process/Sys/setgid-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Process/Sys/setregid-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Process/Sys/setresgid-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Process/Sys/setresuid-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Process/Sys/setreuid-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Process/Sys/setrgid-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Process/Sys/setruid-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Process/Sys/setuid-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Process/UID/cdesc-UID.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Process/UID/change_privilege-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Process/UID/eid-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Process/UID/grant_privilege-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Process/UID/re_exchange-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Process/UID/re_exchangeable%3f-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Process/UID/rid-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Process/UID/sid_available%3f-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Process/UID/switch-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Process/abort-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Process/cdesc-Process.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Process/detach-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Process/egid%3d-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Process/egid-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Process/euid%3d-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Process/euid-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Process/exit%21-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Process/exit-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Process/fork-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Process/getpgid-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Process/getpriority-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Process/getrlimit-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Process/gid%3d-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Process/gid-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Process/groups%3d-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Process/groups-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Process/initgroups-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Process/kill-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Process/maxgroups%3d-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Process/maxgroups-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Process/pid-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Process/ppid-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Process/setpgid-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Process/setpgrp-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Process/setpriority-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Process/setrlimit-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Process/setsid-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Process/times-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Process/uid%3d-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Process/uid-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Process/wait-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Process/wait2-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Process/waitall-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Process/waitpid-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Process/waitpid2-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Profiler__/cdesc-Profiler__.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Queue/%3c%3c-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Queue/cdesc-Queue.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Queue/clear-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Queue/deq-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Queue/empty%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Queue/enq-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Queue/length-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Queue/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Queue/num_waiting-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Queue/pop-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Queue/push-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Queue/shift-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Queue/size-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/Alias/cdesc-Alias.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/Alias/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/Alias/to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/AnonClass/cdesc-AnonClass.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/AnyMethod/%3c%3d%3e-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/AnyMethod/add_alias-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/AnyMethod/cdesc-AnyMethod.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/AnyMethod/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/AnyMethod/param_seq-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/AnyMethod/to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/Attr/%3c%3d%3e-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/Attr/cdesc-Attr.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/Attr/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/Attr/to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/C_Parser/cdesc-C_Parser.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/C_Parser/do_aliases-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/C_Parser/do_classes-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/C_Parser/do_constants-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/C_Parser/do_includes-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/C_Parser/do_methods-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/C_Parser/find_attr_comment-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/C_Parser/find_body-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/C_Parser/find_class-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/C_Parser/find_class_comment-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/C_Parser/find_const_comment-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/C_Parser/find_modifiers-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/C_Parser/find_override_comment-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/C_Parser/handle_attr-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/C_Parser/handle_class_module-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/C_Parser/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/C_Parser/handle_constants-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/C_Parser/handle_ifdefs_in-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/C_Parser/handle_method-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/C_Parser/handle_tab_width-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/C_Parser/mangle_comment-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/C_Parser/progress-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/C_Parser/remove_commented_out_lines-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/C_Parser/remove_private_comments-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/C_Parser/scan-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/C_Parser/warn-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/ClassModule/cdesc-ClassModule.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/ClassModule/find_class_named-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/ClassModule/full_name-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/ClassModule/http_url-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/ClassModule/is_module%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/ClassModule/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/ClassModule/to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/CodeObject/attr_overridable-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/CodeObject/cdesc-CodeObject.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/CodeObject/comment%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/CodeObject/document_children%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/CodeObject/document_self%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/CodeObject/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/CodeObject/remove_classes_and_modules-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/CodeObject/remove_methods_etc-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/CodeObject/start_doc-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/CodeObject/stop_doc-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/Constant/cdesc-Constant.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/Constant/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/Context/Section/cdesc-Section.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/Context/Section/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/Context/Section/set_comment-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/Context/%3c%3d%3e-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/Context/add_alias-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/Context/add_attribute-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/Context/add_class-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/Context/add_class_or_module-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/Context/add_constant-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/Context/add_include-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/Context/add_method-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/Context/add_module-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/Context/add_require-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/Context/add_to-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/Context/cdesc-Context.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/Context/classes-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/Context/defined_in%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/Context/each_attribute-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/Context/each_classmodule-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/Context/each_constant-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/Context/each_method-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/Context/find_attribute_named-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/Context/find_constant_named-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/Context/find_enclosing_module_named-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/Context/find_instance_method_named-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/Context/find_local_symbol-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/Context/find_method_named-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/Context/find_module_named-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/Context/find_symbol-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/Context/initialize_classes_and_modules-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/Context/initialize_methods_etc-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/Context/modules-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/Context/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/Context/toplevel-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/Context/ongoing_visibility%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/Context/record_location-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/Context/remove_classes_and_modules-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/Context/remove_methods_etc-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/Context/set_current_section-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/Context/set_visibility_for-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/Diagram/add_classes-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/Diagram/cdesc-Diagram.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/Diagram/convert_to_png-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/Diagram/draw-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/Diagram/draw_module-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/Diagram/find_full_name-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/Diagram/find_names-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/Diagram/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/Diagram/wrap_in_image_map-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/Fortran95parser/Fortran95Definition/cdesc-Fortran95Definition.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/Fortran95parser/Fortran95Definition/include_attr%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/Fortran95parser/Fortran95Definition/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/Fortran95parser/Fortran95Definition/to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/Fortran95parser/block_end%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/Fortran95parser/block_start%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/Fortran95parser/cdesc-Fortran95parser.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/Fortran95parser/check_external_aliases-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/Fortran95parser/check_public_methods-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/Fortran95parser/collect_first_comment-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/Fortran95parser/comment_out%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/Fortran95parser/continuous_line%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/Fortran95parser/definition_info-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/Fortran95parser/find_arguments-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/Fortran95parser/find_comments-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/Fortran95parser/find_namelists-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/Fortran95parser/find_visibility-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/Fortran95parser/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/Fortran95parser/initialize_external_method-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/Fortran95parser/initialize_public_method-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/Fortran95parser/parse_program_or_module-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/Fortran95parser/parse_subprogram-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/Fortran95parser/parse_visibility-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/Fortran95parser/progress-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/Fortran95parser/remove_empty_head_lines-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/Fortran95parser/remove_header_marker-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/Fortran95parser/remove_private_comments-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/Fortran95parser/remove_trailing_alias-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/Fortran95parser/scan-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/Fortran95parser/semicolon_to_linefeed-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/Fortran95parser/set_visibility-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/Fortran95parser/united_to_one_line-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/Include/cdesc-Include.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/Include/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/NormalClass/cdesc-NormalClass.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/NormalModule/cdesc-NormalModule.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/NormalModule/is_module%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/Page/cdesc-Page.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/Page/write_extra_pages-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/ParserFactory/alias_extension-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/ParserFactory/can_parse-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/ParserFactory/cdesc-ParserFactory.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/ParserFactory/parse_files_matching-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/ParserFactory/parser_for-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/RDoc/cdesc-RDoc.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/RDoc/document-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/RDoc/error-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/RDoc/list_files_in_directory-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/RDoc/normalized_file_list-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/RDoc/output_flag_file-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/RDoc/parse_dot_doc_file-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/RDoc/parse_files-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/RDoc/setup_output_dir-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/RDoc/update_output_dir-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/RDocError/cdesc-RDocError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/Require/cdesc-Require.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/Require/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/RubyParser/add_token_listener-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/RubyParser/cdesc-RubyParser.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/RubyParser/collect_first_comment-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/RubyParser/error-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/RubyParser/get_bool-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/RubyParser/get_class_or_module-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/RubyParser/get_class_specification-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/RubyParser/get_constant-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/RubyParser/get_constant_with_optional_parens-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/RubyParser/get_symbol_or_name-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/RubyParser/get_tk-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/RubyParser/get_tkread-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/RubyParser/look_for_directives_in-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/RubyParser/make_message-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/RubyParser/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/RubyParser/parse_alias-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/RubyParser/parse_attr-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/RubyParser/parse_attr_accessor-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/RubyParser/parse_call_parameters-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/RubyParser/parse_class-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/RubyParser/parse_constant-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/RubyParser/parse_include-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/RubyParser/parse_method-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/RubyParser/parse_method_or_yield_parameters-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/RubyParser/parse_method_parameters-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/RubyParser/parse_module-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/RubyParser/parse_require-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/RubyParser/parse_statements-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/RubyParser/parse_symbol_arg-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/RubyParser/parse_symbol_in_arg-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/RubyParser/parse_toplevel_statements-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/RubyParser/parse_visibility-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/RubyParser/parse_yield-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/RubyParser/parse_yield_parameters-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/RubyParser/peek_read-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/RubyParser/peek_tk-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/RubyParser/progress-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/RubyParser/read_directive-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/RubyParser/read_documentation_modifiers-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/RubyParser/remove_private_comments-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/RubyParser/remove_token_listener-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/RubyParser/scan-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/RubyParser/skip_for_variable-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/RubyParser/skip_method-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/RubyParser/skip_optional_do_after_expression-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/RubyParser/skip_tkspace-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/RubyParser/skip_tkspace_comment-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/RubyParser/unget_tk-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/RubyParser/warn-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/SimpleParser/cdesc-SimpleParser.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/SimpleParser/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/SimpleParser/remove_private_comments-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/SimpleParser/scan-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/SingleClass/cdesc-SingleClass.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/Stats/cdesc-Stats.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/Stats/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/Stats/print-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/Token/cdesc-Token.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/Token/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/Token/set_text-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/TopLevel/add_class_or_module-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/TopLevel/all_classes_and_modules-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/TopLevel/cdesc-TopLevel.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/TopLevel/find_class_named-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/TopLevel/find_class_or_module_named-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/TopLevel/find_local_symbol-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/TopLevel/find_module_named-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/TopLevel/full_name-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/TopLevel/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/TopLevel/reset-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/cdesc-RDoc.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/extract_sections-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/find_comment-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/gets-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/no_comment-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/usage-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/usage_no_exit-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/AttlistDecl/%5b%5d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/AttlistDecl/cdesc-AttlistDecl.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/AttlistDecl/each-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/AttlistDecl/include%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/AttlistDecl/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/AttlistDecl/node_type-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/AttlistDecl/write-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Attribute/%3d%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Attribute/cdesc-Attribute.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Attribute/clone-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Attribute/element%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Attribute/hash-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Attribute/inspect-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Attribute/namespace-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Attribute/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Attribute/node_type-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Attribute/prefix-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Attribute/remove-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Attribute/to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Attribute/to_string-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Attribute/value-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Attribute/write-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Attribute/xpath-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Attributes/%3c%3c-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Attributes/%5b%5d%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Attributes/%5b%5d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Attributes/add-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Attributes/cdesc-Attributes.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Attributes/delete-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Attributes/delete_all-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Attributes/each-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Attributes/each_attribute-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Attributes/get_attribute-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Attributes/get_attribute_ns-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Attributes/length-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Attributes/namespaces-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Attributes/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Attributes/prefixes-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Attributes/size-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Attributes/to_a-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/CData/cdesc-CData.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/CData/clone-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/CData/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/CData/to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/CData/value-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/CData/write-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Child/bytes-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Child/cdesc-Child.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Child/document-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Child/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Child/next_sibling%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Child/parent%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Child/previous_sibling%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Child/remove-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Child/replace_with-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Comment/%3c%3d%3e-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Comment/%3d%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Comment/cdesc-Comment.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Comment/clone-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Comment/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Comment/node_type-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Comment/write-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/DTD/AttlistDecl/cdesc-AttlistDecl.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/DTD/ElementDecl/cdesc-ElementDecl.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/DTD/ElementDecl/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/DTD/EntityDecl/cdesc-EntityDecl.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/DTD/EntityDecl/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/DTD/EntityDecl/parse_source-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/DTD/EntityDecl/to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/DTD/EntityDecl/write-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/DTD/NotationDecl/cdesc-NotationDecl.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/DTD/NotationDecl/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/DTD/NotationDecl/parse_source-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/DTD/NotationDecl/to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/DTD/NotationDecl/write-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/DTD/Parser/cdesc-Parser.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/DTD/Parser/parse-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/DTD/Parser/parse_helper-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/DTD/cdesc-DTD.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Declaration/cdesc-Declaration.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Declaration/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Declaration/to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Declaration/write-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/DocType/add-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/DocType/attribute_of-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/DocType/attributes_of-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/DocType/cdesc-DocType.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/DocType/clone-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/DocType/context-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/DocType/entity-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/DocType/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/DocType/node_type-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/DocType/notation-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/DocType/notations-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/DocType/public-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/DocType/strip_quotes-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/DocType/system-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/DocType/write-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Document/%3c%3c-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Document/add-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Document/add_element-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Document/build-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Document/cdesc-Document.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Document/clone-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Document/doctype-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Document/encoding-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Document/expanded_name-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Document/name-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Document/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Document/node_type-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Document/parse_stream-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Document/root-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Document/stand_alone%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Document/version-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Document/write-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Document/xml_decl-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Element/__to_xpath_helper-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Element/add_attribute-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Element/add_attributes-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Element/add_element-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Element/add_namespace-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Element/add_text-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Element/attribute-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Element/cdatas-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Element/cdesc-Element.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Element/clone-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Element/comments-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Element/delete_attribute-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Element/delete_element-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Element/delete_namespace-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Element/document-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Element/each_element-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Element/get_elements-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Element/each_element_with_attribute-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Element/each_element_with_text-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Element/each_with_something-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Element/get_text-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Element/has_attributes%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Element/has_elements%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Element/has_text%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Element/ignore_whitespace_nodes-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Element/inspect-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Element/instructions-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Element/namespace-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Element/namespaces-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Element/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Element/next_element-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Element/node_type-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Element/prefixes-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Element/raw-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Element/previous_element-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Element/root-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Element/root_node-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Element/text%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Element/text-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Element/texts-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Element/whitespace-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Element/write-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Element/write_children-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Element/xpath-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/ElementDecl/cdesc-ElementDecl.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/ElementDecl/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Elements/%3c%3c-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Elements/%5b%5d%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Elements/%5b%5d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Elements/add-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Elements/cdesc-Elements.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Elements/collect-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Elements/delete-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Elements/delete_all-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Elements/each-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Elements/empty%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Elements/index-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Elements/inject-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Elements/literalize-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Elements/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Elements/size-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Elements/to_a-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Encoding/apply-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Encoding/cdesc-Encoding.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Encoding/check_encoding-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Encoding/decode_ascii-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Encoding/decode_cp1252-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Encoding/decode_eucjp-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Encoding/decode_iconv-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Encoding/decode_sjis-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Encoding/decode_unile-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Encoding/decode_utf16-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Encoding/decode_utf8-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Encoding/encode_ascii-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Encoding/encode_cp1252-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Encoding/encode_eucjp-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Encoding/encode_iconv-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Encoding/encode_sjis-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Encoding/encode_unile-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Encoding/encode_utf16-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Encoding/encode_utf8-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Encoding/encoding%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Encoding/encoding_method-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Encoding/from_iso_8859_15-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Encoding/register-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Encoding/to_iso_8859_15-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Entity/cdesc-Entity.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Entity/matches%3f-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Entity/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Entity/normalized-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Entity/to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Entity/unnormalized-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Entity/value-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Entity/write-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/EntityConst/cdesc-EntityConst.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/ExternalEntity/cdesc-ExternalEntity.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/ExternalEntity/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/ExternalEntity/to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/ExternalEntity/write-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Formatters/Default/cdesc-Default.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Formatters/Default/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Formatters/Default/write-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Formatters/Default/write_cdata-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Formatters/Default/write_comment-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Formatters/Default/write_document-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Formatters/Default/write_element-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Formatters/Default/write_instruction-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Formatters/Default/write_text-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Formatters/Pretty/cdesc-Pretty.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Formatters/Pretty/indent_text-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Formatters/Pretty/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Formatters/Pretty/wrap-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Formatters/Pretty/write_cdata-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Formatters/Pretty/write_comment-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Formatters/Pretty/write_document-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Formatters/Pretty/write_element-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Formatters/Pretty/write_text-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Formatters/Transitive/cdesc-Transitive.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Formatters/Transitive/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Formatters/Transitive/write_element-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Formatters/Transitive/write_text-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Formatters/cdesc-Formatters.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Functions/boolean-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Functions/cdesc-Functions.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Functions/ceiling-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Functions/compare_language-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Functions/concat-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Functions/contains-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Functions/context%3d-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Functions/count-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Functions/false-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Functions/floor-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Functions/get_namespace-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Functions/id-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Functions/lang-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Functions/last-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Functions/local_name-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Functions/method_missing-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Functions/name-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Functions/namespace_context%3d-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Functions/not-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Functions/namespace_context-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Functions/namespace_uri-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Functions/normalize_space-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Functions/number-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Functions/position-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Functions/processing_instruction-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Functions/round-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Functions/starts_with-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Functions/string-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Functions/string_length-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Functions/string_value-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Functions/substring-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Functions/substring_after-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Functions/substring_before-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Functions/sum-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Functions/text-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Functions/translate-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Functions/true-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Functions/variables%3d-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Functions/variables-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/IOSource/cdesc-IOSource.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/IOSource/consume-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/IOSource/current_line-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/IOSource/empty%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/IOSource/match-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/IOSource/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/IOSource/position-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/IOSource/read-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/IOSource/scan-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Instruction/%3d%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Instruction/cdesc-Instruction.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Instruction/clone-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Instruction/inspect-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Instruction/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Instruction/node_type-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Instruction/write-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Light/Node/%3c%3c-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Light/Node/%3d%7e-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Light/Node/%5b%5d%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Light/Node/%5b%5d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Light/Node/cdesc-Node.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Light/Node/children-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Light/Node/each-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Light/Node/has_name%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Light/Node/local_name%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Light/Node/local_name-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Light/Node/name%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Light/Node/name-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Light/Node/namespace%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Light/Node/namespace-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Light/Node/namespace_of-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Light/Node/namesplit-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Light/Node/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Light/Node/node_type-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Light/Node/parent%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Light/Node/parent-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Light/Node/prefix-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Light/Node/prefix_of-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Light/Node/root-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Light/Node/size-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Light/Node/text%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Light/Node/to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Light/cdesc-Light.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Namespace/cdesc-Namespace.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Namespace/fully_expanded_name-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Namespace/has_name%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Namespace/name%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Node/cdesc-Node.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Node/each_recursive-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Node/find_first_recursive-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Node/indent-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Node/index_in_parent-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Node/next_sibling_node-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Node/parent%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Node/previous_sibling_node-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Node/to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/NotationDecl/cdesc-NotationDecl.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/NotationDecl/name-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/NotationDecl/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/NotationDecl/to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/NotationDecl/write-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Output/%3c%3c-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Output/cdesc-Output.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Output/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Output/to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parent/%3c%3c-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parent/%5b%5d%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parent/%5b%5d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parent/add-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parent/cdesc-Parent.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parent/children-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parent/deep_clone-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parent/delete-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parent/delete_at-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parent/delete_if-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parent/each-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parent/each_child-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parent/each_index-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parent/index-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parent/insert_after-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parent/insert_before-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parent/length-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parent/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parent/parent%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parent/push-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parent/replace_child-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parent/size-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parent/to_a-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parent/unshift-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/ParseException/cdesc-ParseException.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/ParseException/context-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/ParseException/line-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/ParseException/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/ParseException/position-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/ParseException/to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parsers/BaseParser/add_listener-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parsers/BaseParser/cdesc-BaseParser.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parsers/BaseParser/empty%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parsers/BaseParser/entity-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parsers/BaseParser/has_next%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parsers/BaseParser/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parsers/BaseParser/normalize-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parsers/BaseParser/peek-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parsers/BaseParser/position-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parsers/BaseParser/pull-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parsers/BaseParser/stream%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parsers/BaseParser/unnormalize-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parsers/BaseParser/unshift-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parsers/LightParser/add_listener-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parsers/LightParser/cdesc-LightParser.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parsers/LightParser/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parsers/LightParser/parse-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parsers/LightParser/rewind-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parsers/PullEvent/%5b%5d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parsers/PullEvent/attlistdecl%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parsers/PullEvent/cdata%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parsers/PullEvent/cdesc-PullEvent.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parsers/PullEvent/comment%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parsers/PullEvent/doctype%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parsers/PullEvent/elementdecl%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parsers/PullEvent/end_element%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parsers/PullEvent/entity%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parsers/PullEvent/entitydecl%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parsers/PullEvent/error%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parsers/PullEvent/event_type-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parsers/PullEvent/inspect-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parsers/PullEvent/instruction%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parsers/PullEvent/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parsers/PullEvent/notationdecl%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parsers/PullEvent/start_element%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parsers/PullEvent/text%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parsers/PullEvent/xmldecl%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parsers/PullParser/add_listener-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parsers/PullParser/cdesc-PullParser.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parsers/PullParser/each-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parsers/PullParser/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parsers/PullParser/peek-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parsers/PullParser/pull-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parsers/PullParser/unshift-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parsers/SAX2Parser/add-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parsers/SAX2Parser/add_listener-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parsers/SAX2Parser/cdesc-SAX2Parser.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parsers/SAX2Parser/deafen-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parsers/SAX2Parser/get_listeners-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parsers/SAX2Parser/get_namespace-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parsers/SAX2Parser/get_procs-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parsers/SAX2Parser/handle-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parsers/SAX2Parser/listen-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parsers/SAX2Parser/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parsers/SAX2Parser/parse-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parsers/SAX2Parser/source-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parsers/StreamParser/add_listener-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parsers/StreamParser/cdesc-StreamParser.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parsers/StreamParser/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parsers/StreamParser/parse-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parsers/TreeParser/add_listener-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parsers/TreeParser/cdesc-TreeParser.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parsers/TreeParser/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parsers/TreeParser/parse-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parsers/UltraLightParser/add_listener-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parsers/UltraLightParser/cdesc-UltraLightParser.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parsers/UltraLightParser/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parsers/UltraLightParser/parse-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parsers/UltraLightParser/rewind-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parsers/XPathParser/AdditiveExpr-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parsers/XPathParser/AndExpr-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parsers/XPathParser/EqualityExpr-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parsers/XPathParser/FilterExpr-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parsers/XPathParser/FunctionCall-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parsers/XPathParser/LocationPath-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parsers/XPathParser/MultiplicativeExpr-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parsers/XPathParser/NodeTest-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parsers/XPathParser/OrExpr-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parsers/XPathParser/PathExpr-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parsers/XPathParser/PrimaryExpr-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parsers/XPathParser/RelationalExpr-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parsers/XPathParser/RelativeLocationPath-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parsers/XPathParser/UnaryExpr-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parsers/XPathParser/UnionExpr-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parsers/XPathParser/abbreviate-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parsers/XPathParser/cdesc-XPathParser.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parsers/XPathParser/expand-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parsers/XPathParser/get_group-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parsers/XPathParser/namespaces%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parsers/XPathParser/parse-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parsers/XPathParser/parse_args-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parsers/XPathParser/predicate-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parsers/XPathParser/predicate_to_string-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parsers/cdesc-Parsers.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/QuickPath/attribute-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/QuickPath/axe-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/QuickPath/cdesc-QuickPath.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/QuickPath/each-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/QuickPath/filter-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/QuickPath/first-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/QuickPath/function-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/QuickPath/match-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/QuickPath/method_missing-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/QuickPath/name-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/QuickPath/parse_args-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/QuickPath/predicate-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/SAX2Listener/attlistdecl-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/SAX2Listener/cdata-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/SAX2Listener/cdesc-SAX2Listener.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/SAX2Listener/characters-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/SAX2Listener/comment-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/SAX2Listener/doctype-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/SAX2Listener/elementdecl-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/SAX2Listener/end_document-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/SAX2Listener/end_element-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/SAX2Listener/end_prefix_mapping-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/SAX2Listener/entitydecl-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/SAX2Listener/notationdecl-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/SAX2Listener/processing_instruction-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/SAX2Listener/progress-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/SAX2Listener/start_document-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/SAX2Listener/start_element-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/SAX2Listener/xmldecl-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/SAX2Listener/start_prefix_mapping-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Source/cdesc-Source.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Source/consume-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Source/current_line-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Source/empty%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Source/encoding%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Source/match-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Source/match_to-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Source/match_to_consume-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Source/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Source/position-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Source/read-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Source/scan-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/SourceFactory/cdesc-SourceFactory.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/SourceFactory/create_from-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/StreamListener/attlistdecl-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/StreamListener/cdata-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/StreamListener/cdesc-StreamListener.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/StreamListener/comment-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/StreamListener/doctype-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/StreamListener/doctype_end-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/StreamListener/elementdecl-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/StreamListener/entity-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/StreamListener/entitydecl-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/StreamListener/instruction-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/StreamListener/notationdecl-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/StreamListener/tag_end-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/StreamListener/tag_start-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/StreamListener/text-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/StreamListener/xmldecl-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/SyncEnumerator/cdesc-SyncEnumerator.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/SyncEnumerator/each-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/SyncEnumerator/length-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/SyncEnumerator/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/SyncEnumerator/size-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Text/%3c%3c-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Text/%3c%3d%3e-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Text/cdesc-Text.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Text/clone-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Text/empty%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Text/indent_text-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Text/inspect-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Text/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Text/node_type-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Text/normalize-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Text/read_with_substitution-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Text/to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Text/unnormalize-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Text/value%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Text/value-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Text/wrap-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Text/write-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Text/write_with_substitution-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Text/xpath-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Validation/Choice/%3c%3c-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Validation/Choice/add_event_to_arry-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Validation/Choice/cdesc-Choice.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Validation/Choice/expected-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Validation/Choice/inspect-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Validation/Choice/matches%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Validation/Choice/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Validation/Choice/next-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Validation/Choice/reset-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Validation/Event/%3d%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Validation/Event/cdesc-Event.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Validation/Event/done%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Validation/Event/inspect-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Validation/Event/matches%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Validation/Event/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Validation/Event/single%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Validation/Event/to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Validation/Interleave/cdesc-Interleave.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Validation/Interleave/expected-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Validation/Interleave/inspect-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Validation/Interleave/matches%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Validation/Interleave/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Validation/Interleave/next-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Validation/Interleave/next_current-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Validation/Interleave/reset-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Validation/OneOrMore/cdesc-OneOrMore.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Validation/OneOrMore/expected-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Validation/OneOrMore/matches%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Validation/OneOrMore/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Validation/OneOrMore/next-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Validation/OneOrMore/reset-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Validation/Optional/cdesc-Optional.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Validation/Optional/expected-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Validation/Optional/matches%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Validation/Optional/next-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Validation/Ref/cdesc-Ref.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Validation/Ref/inspect-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Validation/Ref/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Validation/Ref/to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Validation/RelaxNG/cdesc-RelaxNG.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Validation/RelaxNG/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Validation/RelaxNG/receive-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Validation/Sequence/cdesc-Sequence.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Validation/Sequence/matches%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Validation/State/%3c%3c-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Validation/State/add_event_to_arry-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Validation/State/cdesc-State.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Validation/State/expand_ref_in-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Validation/State/expected-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Validation/State/generate_event-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Validation/State/inspect-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Validation/State/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Validation/State/next-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Validation/State/previous%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Validation/State/reset-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Validation/State/to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Validation/ValidationException/cdesc-ValidationException.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Validation/ValidationException/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Validation/Validator/cdesc-Validator.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Validation/Validator/dump-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Validation/Validator/reset-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Validation/Validator/validate-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Validation/ZeroOrMore/cdesc-ZeroOrMore.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Validation/ZeroOrMore/expected-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Validation/ZeroOrMore/next-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Validation/cdesc-Validation.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/XMLDecl/%3d%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/XMLDecl/cdesc-XMLDecl.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/XMLDecl/clone-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/XMLDecl/content-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/XMLDecl/default-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/XMLDecl/dowrite-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/XMLDecl/encoding%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/XMLDecl/inspect-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/XMLDecl/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/XMLDecl/node_type-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/XMLDecl/nowrite-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/XMLDecl/write-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/XMLDecl/xmldecl-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/XMLTokens/cdesc-XMLTokens.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/XPath/cdesc-XPath.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/XPath/each-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/XPath/first-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/XPath/match-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/XPathParser/%5b%5d%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/XPathParser/cdesc-XPathParser.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/XPathParser/compare-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/XPathParser/d_o_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/XPathParser/descendant_or_self-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/XPathParser/document_order-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/XPathParser/equality_relational_compare-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/XPathParser/expr-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/XPathParser/first-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/XPathParser/following-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/XPathParser/following_node_of-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/XPathParser/get_first-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/XPathParser/get_namespace-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/XPathParser/match-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/XPathParser/namespaces%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/XPathParser/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/XPathParser/norm-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/XPathParser/next_sibling_node-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/XPathParser/parse-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/XPathParser/preceding-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/XPathParser/preceding_node_of-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/XPathParser/predicate-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/XPathParser/recurse-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/XPathParser/variables%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/cdesc-REXML.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/AliasName/cdesc-AliasName.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/AnsiFormatter/bold_print-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/AnsiFormatter/cdesc-AnsiFormatter.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/AnsiFormatter/display_heading-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/AnsiFormatter/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/AnsiFormatter/update_attributes-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/AnsiFormatter/write_attribute_text-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/Attribute/cdesc-Attribute.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/Attribute/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/AttributeFormatter/AttrChar/cdesc-AttrChar.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/AttributeFormatter/AttrChar/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/AttributeFormatter/AttributeString/%3c%3c-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/AttributeFormatter/AttributeString/cdesc-AttributeString.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/AttributeFormatter/AttributeString/empty%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/AttributeFormatter/AttributeString/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/AttributeFormatter/AttributeString/next_word-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/AttributeFormatter/add_attributes_to-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/AttributeFormatter/bold_print-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/AttributeFormatter/cdesc-AttributeFormatter.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/AttributeFormatter/wrap-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/AttributeFormatter/write_attribute_text-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/ClassDescription/cdesc-ClassDescription.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/ClassDescription/display_name-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/ClassDescription/superclass_string-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/ClassEntry/add_path-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/ClassEntry/all_method_names-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/ClassEntry/cdesc-ClassEntry.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/ClassEntry/classes_and_modules-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/ClassEntry/contained_class_named-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/ClassEntry/contained_modules_matching-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/ClassEntry/full_name-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/ClassEntry/load_from-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/ClassEntry/local_methods_matching-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/ClassEntry/methods_matching-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/ClassEntry/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/ClassEntry/recursively_find_methods_matching-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/Constant/cdesc-Constant.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/Constant/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/Description/%3c%3d%3e-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/Description/cdesc-Description.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/Description/deserialize-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/Description/serialize-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/HtmlFormatter/blankline-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/HtmlFormatter/bold_print-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/HtmlFormatter/break_to_newline-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/HtmlFormatter/cdesc-HtmlFormatter.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/HtmlFormatter/display_heading-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/HtmlFormatter/display_list-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/HtmlFormatter/display_verbatim_flow_item-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/HtmlFormatter/draw_line-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/HtmlFormatter/escape-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/HtmlFormatter/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/HtmlFormatter/tag-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/HtmlFormatter/update_attributes-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/HtmlFormatter/write_attribute_text-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/IncludedModule/cdesc-IncludedModule.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/MethodDescription/cdesc-MethodDescription.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/MethodEntry/cdesc-MethodEntry.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/MethodEntry/full_name-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/MethodEntry/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/MethodSummary/cdesc-MethodSummary.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/MethodSummary/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/ModuleDescription/cdesc-ModuleDescription.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/ModuleDescription/display_name-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/ModuleDescription/merge-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/ModuleDescription/merge_in-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/ModuleDescription/superclass_string-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/NamedThing/%3c%3d%3e-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/NamedThing/cdesc-NamedThing.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/NamedThing/eql%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/NamedThing/hash-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/NamedThing/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/Options/OptionList/cdesc-OptionList.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/Options/OptionList/error-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/Options/OptionList/options-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/Options/OptionList/strip_output-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/Options/OptionList/usage-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/Options/cdesc-Options.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/Options/displayer-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/Options/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/Options/parse-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/Options/path-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/Options/raw_path-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/Options/show_version-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/OverstrikeFormatter/bold_print-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/OverstrikeFormatter/cdesc-OverstrikeFormatter.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/OverstrikeFormatter/write_attribute_text-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/Paths/cdesc-Paths.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/RiCache/cdesc-RiCache.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/RiCache/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/RiReader/all_names-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/RiReader/cdesc-RiReader.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/RiReader/find_class_by_name-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/RiReader/find_classes_in-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/RiReader/find_methods-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/RiReader/find_names_in-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/RiReader/full_class_names-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/RiReader/get_class-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/RiReader/get_method-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/RiReader/lookup_namespace_in-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/RiReader/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/RiReader/top_level_namespace-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/RiWriter/add_class-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/RiWriter/add_method-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/RiWriter/cdesc-RiWriter.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/RiWriter/class_desc_path-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/RiWriter/external_to_internal-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/RiWriter/internal_to_external-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/RiWriter/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/RiWriter/path_to_dir-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/RiWriter/remove_class-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/SimpleFormatter/blankline-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/SimpleFormatter/cdesc-SimpleFormatter.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/SimpleFormatter/display_heading-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/SimpleFormatter/draw_line-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/TextFormatter/blankline-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/TextFormatter/bold_print-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/TextFormatter/break_to_newline-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/TextFormatter/cdesc-TextFormatter.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/TextFormatter/conv_html-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/TextFormatter/conv_markup-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/TextFormatter/display_flow-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/TextFormatter/display_flow_item-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/TextFormatter/display_heading-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/TextFormatter/display_list-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/TextFormatter/display_verbatim_flow_item-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/TextFormatter/draw_line-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/TextFormatter/for-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/TextFormatter/list-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/TextFormatter/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/TextFormatter/raw_print_line-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/TextFormatter/wrap-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/TextFormatter/strip_attributes-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/TopLevelEntry/cdesc-TopLevelEntry.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/TopLevelEntry/full_name-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/TopLevelEntry/methods_matching-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/TopLevelEntry/module_named-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/cdesc-RI.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/BaseDublinCoreModel/append_features-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/BaseDublinCoreModel/cdesc-BaseDublinCoreModel.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/BaseListener/available_tags-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/BaseListener/cdesc-BaseListener.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/BaseListener/class_name-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/BaseListener/def_get_text_element-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/BaseListener/install_class_name-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/BaseListener/install_get_text_element-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/BaseListener/install_setter-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/BaseListener/raise_for_undefined_entity%3f-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/BaseListener/register_uri-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/BaseListener/setter-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/BaseListener/uri_registered%3f-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/BaseModel/boolean_writer-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/BaseModel/cdesc-BaseModel.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/BaseModel/convert_attr_reader-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/BaseModel/date_writer-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/BaseModel/def_children_accessor-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/BaseModel/install_date_element-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/BaseModel/install_element-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/BaseModel/install_have_attribute_element-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/BaseModel/install_have_child_element-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/BaseModel/install_have_children_element-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/BaseModel/install_text_element-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/BaseModel/integer_writer-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/BaseModel/positive_integer_writer-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/BaseParser/cdesc-BaseParser.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/BaseParser/do_validate%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/BaseParser/do_validate-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/BaseParser/ignore_unknown_element%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/BaseParser/ignore_unknown_element-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/BaseParser/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/BaseParser/parse-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/BaseParser/raise_for_undefined_entity%3f-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/BaseParser/rss-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/BaseTrackBackModel/append_features-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/BaseTrackBackModel/cdesc-BaseTrackBackModel.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/ContentModel/append_features-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/ContentModel/cdesc-ContentModel.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/ConversionError/cdesc-ConversionError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/ConversionError/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Converter/cdesc-Converter.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Converter/convert-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Converter/def_convert-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Converter/def_else_enc-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Converter/def_iconv_convert-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Converter/def_same_enc-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Converter/def_to_euc_jp_from_iso_2022_jp-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Converter/def_to_euc_jp_from_shift_jis-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Converter/def_to_euc_jp_from_utf_8-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Converter/def_to_iso_2022_jp_from_euc_jp-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Converter/def_to_iso_8859_1_from_utf_8-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Converter/def_to_shift_jis_from_euc_jp-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Converter/def_to_shift_jis_from_utf_8-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Converter/def_to_utf_8_from_euc_jp-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Converter/def_to_utf_8_from_iso_8859_1-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Converter/def_to_utf_8_from_shift_jis-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Converter/def_uconv_convert_if_can-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Converter/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/DublinCoreModel/cdesc-DublinCoreModel.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Element/__validate-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Element/_attrs-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Element/_tags-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Element/_validate-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Element/calc_indent-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Element/cdesc-Element.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Element/children-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Element/collect_attrs-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Element/convert-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Element/converter%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Element/full_name-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Element/get_attributes-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Element/have_children_elements-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Element/inherited-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Element/initialize_have_children_elements-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Element/initialize_variables-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Element/install_ns-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Element/make_start_tag-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Element/maker_target-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Element/models-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Element/must_call_validators-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Element/need_initialize_variables-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Element/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Element/not_need_to_call_setup_maker_variables-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Element/plural_forms-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Element/required_prefix-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Element/required_uri-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Element/set_next_element-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Element/setup_maker-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Element/setup_maker_attributes-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Element/setup_maker_element-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Element/tag-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Element/setup_maker_elements-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Element/tag_filter-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Element/tag_name-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Element/tag_name-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Element/tag_name_with_prefix-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Element/to_element_methods-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Element/to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Element/validate-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Element/validate_attribute-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Element/validate_for_stream-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Error/cdesc-Error.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/ImageFaviconModel/ImageFavicon/cdesc-ImageFavicon.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/ImageFaviconModel/ImageFavicon/full_name-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/ImageFaviconModel/ImageFavicon/image_size%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/ImageFaviconModel/ImageFavicon/maker_target-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/ImageFaviconModel/ImageFavicon/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/ImageFaviconModel/ImageFavicon/required_prefix-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/ImageFaviconModel/ImageFavicon/required_uri-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/ImageFaviconModel/ImageFavicon/setup_maker_attributes-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/ImageFaviconModel/ImageFavicon/size%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/ImageFaviconModel/append_features-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/ImageFaviconModel/cdesc-ImageFaviconModel.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/ImageItemModel/ImageItem/cdesc-ImageItem.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/ImageItemModel/ImageItem/full_name-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/ImageItemModel/ImageItem/maker_target-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/ImageItemModel/ImageItem/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/ImageItemModel/ImageItem/required_prefix-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/ImageItemModel/ImageItem/required_uri-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/ImageItemModel/ImageItem/setup_maker_attributes-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/ImageItemModel/append_features-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/ImageItemModel/cdesc-ImageItemModel.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/ImageModelUtils/cdesc-ImageModelUtils.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/ImageModelUtils/validate_one_tag_name-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/InvalidRSSError/cdesc-InvalidRSSError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/ListenerMixin/_ns-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/ListenerMixin/cdesc-ListenerMixin.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/ListenerMixin/check_ns-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/ListenerMixin/instruction-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/ListenerMixin/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/ListenerMixin/parse_pi_content-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/ListenerMixin/split_name-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/ListenerMixin/start_RDF-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/ListenerMixin/start_else_element-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/ListenerMixin/start_get_text_element-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/ListenerMixin/start_have_something_element-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/ListenerMixin/start_rss-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/ListenerMixin/tag_end-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/ListenerMixin/tag_start-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/ListenerMixin/text-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/ListenerMixin/xmldecl-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/Base/append_features-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/Base/cdesc-Base.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/Base/current_element-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/Base/have_required_values%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/Base/initialize_variables-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/Base/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/Base/not_set_required_variables-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/Base/required_variables_are_set%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/Base/setup_other_elements-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/Base/setup_values-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/Base/variable_is_set%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/Base/variables-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/ChannelBase/CategoriesBase/CategoryBase/cdesc-CategoryBase.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/ChannelBase/CategoriesBase/cdesc-CategoriesBase.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/ChannelBase/CategoriesBase/new_category-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/ChannelBase/CloudBase/cdesc-CloudBase.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/ChannelBase/CloudBase/current_element-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/ChannelBase/SkipDaysBase/DayBase/cdesc-DayBase.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/ChannelBase/SkipDaysBase/DayBase/current_element-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/ChannelBase/SkipDaysBase/cdesc-SkipDaysBase.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/ChannelBase/SkipDaysBase/current_element-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/ChannelBase/SkipDaysBase/new_day-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/ChannelBase/SkipHoursBase/HourBase/cdesc-HourBase.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/ChannelBase/SkipHoursBase/HourBase/current_element-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/ChannelBase/SkipHoursBase/cdesc-SkipHoursBase.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/ChannelBase/SkipHoursBase/current_element-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/ChannelBase/SkipHoursBase/new_hour-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/ChannelBase/cdesc-ChannelBase.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/ChannelBase/current_element-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/ContentModel/append_features-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/ContentModel/cdesc-ContentModel.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/DublinCoreModel/append_features-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/DublinCoreModel/cdesc-DublinCoreModel.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/DublinCoreModel/install_dublin_core-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/ImageBase/cdesc-ImageBase.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/ImageBase/current_element-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/ImageBase/link-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/ImageFaviconModel/ImageFaviconBase/cdesc-ImageFaviconBase.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/ImageFaviconModel/ImageFaviconBase/have_required_values%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/ImageFaviconModel/append_features-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/ImageFaviconModel/cdesc-ImageFaviconModel.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/ImageItemModel/ImageItemBase/cdesc-ImageItemBase.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/ImageItemModel/ImageItemBase/have_required_values%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/ImageItemModel/append_features-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/ImageItemModel/cdesc-ImageItemModel.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/ItemsBase/ItemBase/EnclosureBase/cdesc-EnclosureBase.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/ItemsBase/ItemBase/GuidBase/cdesc-GuidBase.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/ItemsBase/ItemBase/SourceBase/cdesc-SourceBase.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/ItemsBase/ItemBase/%3c%3d%3e-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/ItemsBase/ItemBase/cdesc-ItemBase.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/ItemsBase/ItemBase/current_element-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/ItemsBase/cdesc-ItemsBase.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/ItemsBase/current_element-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/ItemsBase/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/ItemsBase/new_item-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/ItemsBase/normalize-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/ItemsBase/sort_if_need-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS09/Channel/Categories/Category/cdesc-Category.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS09/Channel/Categories/cdesc-Categories.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS09/Channel/Categories/to_rss-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS09/Channel/Cloud/cdesc-Cloud.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS09/Channel/Cloud/to_rss-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS09/Channel/ImageFavicon/cdesc-ImageFavicon.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS09/Channel/ImageFavicon/to_rss-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS09/Channel/SkipDays/Day/cdesc-Day.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS09/Channel/SkipDays/Day/have_required_values%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS09/Channel/SkipDays/Day/to_rss-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS09/Channel/SkipDays/cdesc-SkipDays.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS09/Channel/SkipDays/to_rss-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS09/Channel/SkipHours/Hour/cdesc-Hour.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS09/Channel/SkipHours/Hour/have_required_values%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS09/Channel/SkipHours/Hour/to_rss-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS09/Channel/SkipHours/cdesc-SkipHours.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS09/Channel/SkipHours/to_rss-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS09/Channel/cdesc-Channel.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS09/Channel/have_required_values%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS09/Channel/required_variable_names-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS09/Channel/setup_image-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS09/Channel/setup_items-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS09/Channel/setup_textinput-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS09/Channel/to_rss-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS09/Channel/variables-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS09/Image/cdesc-Image.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS09/Image/have_required_values%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS09/Image/to_rss-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS09/Items/Item/Categories/Category/cdesc-Category.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS09/Items/Item/Categories/cdesc-Categories.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS09/Items/Item/Categories/to_rss-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS09/Items/Item/Enclosure/cdesc-Enclosure.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS09/Items/Item/Enclosure/to_rss-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS09/Items/Item/Guid/cdesc-Guid.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS09/Items/Item/Guid/to_rss-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS09/Items/Item/ImageItem/cdesc-ImageItem.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS09/Items/Item/ImageItem/to_rss-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS09/Items/Item/Source/cdesc-Source.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS09/Items/Item/Source/to_rss-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS09/Items/Item/TrackBackAbouts/TrackBackAbout/cdesc-TrackBackAbout.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS09/Items/Item/TrackBackAbouts/cdesc-TrackBackAbouts.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS09/Items/Item/TrackBackAbouts/to_rss-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS09/Items/Item/cdesc-Item.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS09/Items/Item/have_required_values%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS09/Items/Item/to_rss-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS09/Items/cdesc-Items.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS09/Items/to_rss-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS09/Textinput/cdesc-Textinput.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS09/Textinput/have_required_values%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS09/Textinput/to_rss-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS09/cdesc-RSS09.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS09/make_rss-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS09/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS09/setup_elements-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS10/Channel/Categories/Category/cdesc-Category.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS10/Channel/Categories/cdesc-Categories.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS10/Channel/Categories/to_rss-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS10/Channel/Cloud/cdesc-Cloud.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS10/Channel/Cloud/to_rss-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS10/Channel/ImageFavicon/cdesc-ImageFavicon.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS10/Channel/ImageFavicon/to_rss-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS10/Channel/SkipDays/Day/cdesc-Day.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS10/Channel/SkipDays/cdesc-SkipDays.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS10/Channel/SkipDays/to_rss-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS10/Channel/SkipHours/Hour/cdesc-Hour.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS10/Channel/SkipHours/cdesc-SkipHours.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS10/Channel/SkipHours/to_rss-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS10/Channel/cdesc-Channel.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS10/Channel/have_required_values%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS10/Channel/required_variable_names-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS10/Channel/setup_image-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS10/Channel/setup_items-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS10/Channel/setup_textinput-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS10/Channel/to_rss-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS10/Image/cdesc-Image.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS10/Image/have_required_values%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS10/Image/to_rss-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS10/Image/variables-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS10/Items/Item/Categories/Category/cdesc-Category.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS10/Items/Item/Categories/cdesc-Categories.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS10/Items/Item/Categories/to_rss-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS10/Items/Item/Enclosure/cdesc-Enclosure.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS10/Items/Item/Enclosure/to_rss-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS10/Items/Item/Guid/cdesc-Guid.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS10/Items/Item/Guid/to_rss-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS10/Items/Item/ImageItem/cdesc-ImageItem.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS10/Items/Item/ImageItem/to_rss-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS10/Items/Item/Source/cdesc-Source.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS10/Items/Item/Source/to_rss-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS10/Items/Item/TrackBackAbouts/TrackBackAbout/cdesc-TrackBackAbout.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS10/Items/Item/TrackBackAbouts/TrackBackAbout/to_rss-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS10/Items/Item/TrackBackAbouts/cdesc-TrackBackAbouts.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS10/Items/Item/cdesc-Item.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS10/Items/Item/have_required_values%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS10/Items/Item/to_rss-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS10/Items/cdesc-Items.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS10/Items/to_rss-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS10/Textinput/cdesc-Textinput.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS10/Textinput/have_required_values%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS10/Textinput/to_rss-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS10/cdesc-RSS10.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS10/make_rss-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS10/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS10/setup_elements-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS20/Channel/Categories/Category/cdesc-Category.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS20/Channel/Categories/Category/have_required_values%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS20/Channel/Categories/Category/to_rss-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS20/Channel/Categories/cdesc-Categories.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS20/Channel/Categories/to_rss-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS20/Channel/Cloud/cdesc-Cloud.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS20/Channel/Cloud/have_required_values%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS20/Channel/Cloud/to_rss-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS20/Channel/SkipDays/Day/cdesc-Day.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS20/Channel/SkipDays/cdesc-SkipDays.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS20/Channel/SkipHours/Hour/cdesc-Hour.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS20/Channel/SkipHours/cdesc-SkipHours.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS20/Channel/cdesc-Channel.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS20/Channel/have_required_values%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS20/Channel/required_variable_names-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS20/Image/cdesc-Image.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS20/Items/Item/Categories/Category/cdesc-Category.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS20/Items/Item/Categories/Category/have_required_values%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS20/Items/Item/Categories/Category/to_rss-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS20/Items/Item/Categories/cdesc-Categories.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS20/Items/Item/Categories/to_rss-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS20/Items/Item/Enclosure/cdesc-Enclosure.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS20/Items/Item/Enclosure/have_required_values%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS20/Items/Item/Enclosure/to_rss-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS20/Items/Item/Guid/cdesc-Guid.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS20/Items/Item/Guid/have_required_values%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS20/Items/Item/Guid/to_rss-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS20/Items/Item/Source/cdesc-Source.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS20/Items/Item/Source/have_required_values%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS20/Items/Item/Source/to_rss-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS20/Items/Item/TrackBackAbouts/TrackBackAbout/cdesc-TrackBackAbout.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS20/Items/Item/TrackBackAbouts/TrackBackAbout/to_rss-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS20/Items/Item/TrackBackAbouts/cdesc-TrackBackAbouts.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS20/Items/Item/cdesc-Item.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS20/Items/Item/have_required_values%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS20/Items/Item/variables-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS20/Items/cdesc-Items.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS20/Textinput/cdesc-Textinput.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS20/cdesc-RSS20.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS20/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSSBase/cdesc-RSSBase.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSSBase/make-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSSBase/make-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSSBase/make_xml_stylesheets-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSSBase/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSSBase/to_rss-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/SyndicationModel/append_features-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/SyndicationModel/cdesc-SyndicationModel.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/TaxonomyTopicModel/TaxonomyTopicsBase/TaxonomyTopicBase/cdesc-TaxonomyTopicBase.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/TaxonomyTopicModel/TaxonomyTopicsBase/TaxonomyTopicBase/have_required_values%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/TaxonomyTopicModel/TaxonomyTopicsBase/cdesc-TaxonomyTopicsBase.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/TaxonomyTopicModel/TaxonomyTopicsBase/new_taxo_topic-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/TaxonomyTopicModel/TaxonomyTopicsBase/to_rss-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/TaxonomyTopicModel/append_features-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/TaxonomyTopicModel/cdesc-TaxonomyTopicModel.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/TaxonomyTopicModel/install_taxo_topic-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/TaxonomyTopicsModel/TaxonomyTopicsBase/cdesc-TaxonomyTopicsBase.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/TaxonomyTopicsModel/append_features-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/TaxonomyTopicsModel/cdesc-TaxonomyTopicsModel.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/TaxonomyTopicsModel/install_taxo_topics-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/TextinputBase/cdesc-TextinputBase.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/TextinputBase/current_element-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/TrackBackModel/TrackBackAboutsBase/TrackBackAboutBase/cdesc-TrackBackAboutBase.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/TrackBackModel/TrackBackAboutsBase/TrackBackAboutBase/have_required_values%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/TrackBackModel/TrackBackAboutsBase/cdesc-TrackBackAboutsBase.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/TrackBackModel/TrackBackAboutsBase/new_about-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/TrackBackModel/TrackBackAboutsBase/to_rss-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/TrackBackModel/append_features-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/TrackBackModel/cdesc-TrackBackModel.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/XMLStyleSheets/XMLStyleSheet/cdesc-XMLStyleSheet.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/XMLStyleSheets/XMLStyleSheet/guess_type_if_need-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/XMLStyleSheets/XMLStyleSheet/have_required_values%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/XMLStyleSheets/XMLStyleSheet/to_rss-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/XMLStyleSheets/cdesc-XMLStyleSheets.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/XMLStyleSheets/new_xml_stylesheet-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/XMLStyleSheets/to_rss-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/add_maker-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/cdesc-Maker.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/filename_to_version-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/make-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/maker-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/MissingAttributeError/cdesc-MissingAttributeError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/MissingAttributeError/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/MissingTagError/cdesc-MissingTagError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/MissingTagError/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/NSError/cdesc-NSError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/NSError/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/NotAvailableValueError/cdesc-NotAvailableValueError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/NotAvailableValueError/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/NotExpectedTagError/cdesc-NotExpectedTagError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/NotExpectedTagError/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/NotSetError/cdesc-NotSetError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/NotSetError/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/NotValidXMLParser/cdesc-NotValidXMLParser.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/NotValidXMLParser/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/NotWellFormedError/cdesc-NotWellFormedError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/NotWellFormedError/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/OverlappedPrefixError/cdesc-OverlappedPrefixError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/OverlappedPrefixError/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Parser/cdesc-Parser.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Parser/default_parser%3d-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Parser/default_parser-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Parser/maybe_xml%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Parser/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Parser/normalize_rss-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Parser/parse-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Parser/to_uri-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/RDF/Bag/cdesc-Bag.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/RDF/Bag/full_name-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/RDF/Bag/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/RDF/Bag/required_uri-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/RDF/Bag/setup_maker-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/RDF/Channel/Image/cdesc-Image.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/RDF/Channel/Image/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/RDF/Channel/Image/required_uri-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/RDF/Channel/Items/cdesc-Items.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/RDF/Channel/Items/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/RDF/Channel/Items/required_uri-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/RDF/Channel/Items/resources-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/RDF/Channel/Textinput/cdesc-Textinput.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/RDF/Channel/Textinput/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/RDF/Channel/Textinput/required_uri-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/RDF/Channel/cdesc-Channel.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/RDF/Channel/maker_target-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/RDF/Channel/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/RDF/Channel/required_uri-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/RDF/Channel/setup_maker_attributes-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/RDF/Image/cdesc-Image.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/RDF/Image/maker_target-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/RDF/Image/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/RDF/Image/required_uri-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/RDF/Item/cdesc-Item.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/RDF/Item/maker_target-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/RDF/Item/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/RDF/Item/required_uri-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/RDF/Li/cdesc-Li.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/RDF/Li/full_name-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/RDF/Li/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/RDF/Li/required_uri-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/RDF/Seq/cdesc-Seq.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/RDF/Seq/full_name-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/RDF/Seq/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/RDF/Seq/required_uri-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/RDF/Seq/setup_maker-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/RDF/Textinput/cdesc-Textinput.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/RDF/Textinput/maker_target-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/RDF/Textinput/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/RDF/Textinput/required_uri-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/RDF/cdesc-RDF.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/RDF/full_name-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/RDF/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/RDF/required_uri-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/REXMLLikeXMLParser/cdesc-REXMLLikeXMLParser.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/REXMLLikeXMLParser/character-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/REXMLLikeXMLParser/endElement-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/REXMLLikeXMLParser/listener%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/REXMLLikeXMLParser/processingInstruction-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/REXMLLikeXMLParser/startElement-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/REXMLLikeXMLParser/xmlDecl-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/REXMLListener/cdesc-REXMLListener.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/REXMLListener/raise_for_undefined_entity%3f-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/REXMLListener/xmldecl-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/REXMLParser/_parse-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/REXMLParser/cdesc-REXMLParser.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/REXMLParser/listener-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/RSS09/append_features-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/RSS09/cdesc-RSS09.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/RSS10/append_features-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/RSS10/cdesc-RSS10.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/RootElementMixin/cdesc-RootElementMixin.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/RootElementMixin/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/RootElementMixin/ns_declarations-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/RootElementMixin/output_encoding%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/RootElementMixin/setup_maker-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/RootElementMixin/setup_maker_elements-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/RootElementMixin/tag-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/RootElementMixin/to_xml-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/RootElementMixin/xmldecl-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Rss/Channel/Cloud/cdesc-Cloud.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Rss/Channel/Cloud/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Rss/Channel/Image/cdesc-Image.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Rss/Channel/Image/maker_target-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Rss/Channel/Image/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Rss/Channel/Item/Category/cdesc-Category.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Rss/Channel/Item/Category/maker_target-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Rss/Channel/Item/Category/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Rss/Channel/Item/Category/setup_maker_attributes-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Rss/Channel/Item/Enclosure/cdesc-Enclosure.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Rss/Channel/Item/Enclosure/maker_target-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Rss/Channel/Item/Enclosure/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Rss/Channel/Item/Enclosure/setup_maker_attributes-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Rss/Channel/Item/Guid/PermaLink%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Rss/Channel/Item/Guid/cdesc-Guid.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Rss/Channel/Item/Guid/maker_target-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Rss/Channel/Item/Guid/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Rss/Channel/Item/Guid/setup_maker_attributes-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Rss/Channel/Item/Source/cdesc-Source.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Rss/Channel/Item/Source/maker_target-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Rss/Channel/Item/Source/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Rss/Channel/Item/Source/setup_maker_attributes-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Rss/Channel/Item/_setup_maker_element-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Rss/Channel/Item/cdesc-Item.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Rss/Channel/Item/maker_target-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Rss/Channel/Item/setup_maker_element-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Rss/Channel/SkipDays/Day/cdesc-Day.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Rss/Channel/SkipDays/Day/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Rss/Channel/SkipDays/cdesc-SkipDays.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Rss/Channel/SkipHours/Hour/cdesc-Hour.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Rss/Channel/SkipHours/Hour/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Rss/Channel/SkipHours/cdesc-SkipHours.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Rss/Channel/TextInput/cdesc-TextInput.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Rss/Channel/TextInput/maker_target-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Rss/Channel/TextInput/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Rss/Channel/cdesc-Channel.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Rss/Channel/maker_target-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Rss/Channel/not_need_to_call_setup_maker_variables-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Rss/Channel/setup_maker_elements-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Rss/_attrs-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Rss/cdesc-Rss.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Rss/image-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Rss/items-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Rss/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Rss/setup_maker_elements-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Rss/textinput-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/SyndicationModel/append_features-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/SyndicationModel/cdesc-SyndicationModel.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/SyndicationModel/sy_updatePeriod%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/SyndicationModel/validate_sy_updatePeriod-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/TaxonomyTopicModel/TaxonomyTopic/cdesc-TaxonomyTopic.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/TaxonomyTopicModel/TaxonomyTopic/full_name-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/TaxonomyTopicModel/TaxonomyTopic/maker_target-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/TaxonomyTopicModel/TaxonomyTopic/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/TaxonomyTopicModel/TaxonomyTopic/required_prefix-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/TaxonomyTopicModel/TaxonomyTopic/required_uri-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/TaxonomyTopicModel/append_features-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/TaxonomyTopicModel/cdesc-TaxonomyTopicModel.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/TaxonomyTopicsModel/TaxonomyTopics/cdesc-TaxonomyTopics.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/TaxonomyTopicsModel/TaxonomyTopics/full_name-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/TaxonomyTopicsModel/TaxonomyTopics/maker_target-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/TaxonomyTopicsModel/TaxonomyTopics/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/TaxonomyTopicsModel/TaxonomyTopics/required_prefix-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/TaxonomyTopicsModel/TaxonomyTopics/required_uri-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/TaxonomyTopicsModel/TaxonomyTopics/resources-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/TaxonomyTopicsModel/append_features-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/TaxonomyTopicsModel/cdesc-TaxonomyTopicsModel.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/TooMuchTagError/cdesc-TooMuchTagError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/TooMuchTagError/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/TrackBackModel10/TrackBackAbout/cdesc-TrackBackAbout.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/TrackBackModel10/TrackBackAbout/full_name-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/TrackBackModel10/TrackBackAbout/maker_target-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/TrackBackModel10/TrackBackAbout/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/TrackBackModel10/TrackBackAbout/required_prefix-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/TrackBackModel10/TrackBackAbout/required_uri-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/TrackBackModel10/TrackBackAbout/setup_maker_attributes-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/TrackBackModel10/TrackBackPing/cdesc-TrackBackPing.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/TrackBackModel10/TrackBackPing/full_name-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/TrackBackModel10/TrackBackPing/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/TrackBackModel10/TrackBackPing/required_prefix-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/TrackBackModel10/TrackBackPing/required_uri-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/TrackBackModel10/cdesc-TrackBackModel10.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/TrackBackModel20/TrackBackAbout/cdesc-TrackBackAbout.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/TrackBackModel20/TrackBackAbout/full_name-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/TrackBackModel20/TrackBackAbout/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/TrackBackModel20/TrackBackAbout/required_prefix-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/TrackBackModel20/TrackBackAbout/required_uri-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/TrackBackModel20/TrackBackPing/cdesc-TrackBackPing.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/TrackBackModel20/TrackBackPing/full_name-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/TrackBackModel20/TrackBackPing/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/TrackBackModel20/TrackBackPing/required_prefix-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/TrackBackModel20/TrackBackPing/required_uri-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/TrackBackModel20/cdesc-TrackBackModel20.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/TrackBackUtils/cdesc-TrackBackUtils.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/TrackBackUtils/trackback_validate-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Utils/cdesc-Utils.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Utils/element_initialize_arguments%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Utils/get_file_and_line_from_caller-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Utils/h-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Utils/html_escape-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Utils/new_with_value_if_need-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Utils/to_class_name-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/UnknownConversionMethodError/cdesc-UnknownConversionMethodError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/UnknownConversionMethodError/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/UnknownTagError/cdesc-UnknownTagError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/UnknownTagError/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/XMLParserListener/cdesc-XMLParserListener.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/XMLParserListener/xmldecl-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/XMLParserNotFound/cdesc-XMLParserNotFound.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/XMLParserNotFound/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/XMLParserParser/_parse-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/XMLParserParser/cdesc-XMLParserParser.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/XMLParserParser/listener-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/XMLScanListener/cdesc-XMLScanListener.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/XMLScanListener/entity-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/XMLScanListener/on_attr_charref-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/XMLScanListener/on_attr_charref_hex-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/XMLScanListener/on_attr_entityref-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/XMLScanListener/on_attr_value-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/XMLScanListener/on_attribute-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/XMLScanListener/on_charref-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/XMLScanListener/on_charref_hex-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/XMLScanListener/on_entityref-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/XMLScanListener/on_etag-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/XMLScanListener/on_stag-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/XMLScanListener/on_stag_end-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/XMLScanListener/on_stag_end_empty-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/XMLScanListener/on_xmldecl_encoding-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/XMLScanListener/on_xmldecl_end-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/XMLScanListener/on_xmldecl_standalone-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/XMLScanListener/on_xmldecl_version-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/XMLScanParser/_parse-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/XMLScanParser/cdesc-XMLScanParser.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/XMLScanParser/listener-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/XMLStyleSheet/alternate%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/XMLStyleSheet/cdesc-XMLStyleSheet.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/XMLStyleSheet/guess_type-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/XMLStyleSheet/href%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/XMLStyleSheet/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/XMLStyleSheet/setup_maker-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/XMLStyleSheet/to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/XMLStyleSheetMixin/cdesc-XMLStyleSheetMixin.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/XMLStyleSheetMixin/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/XMLStyleSheetMixin/xml_stylesheet_pi-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/cdesc-RSS.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RUNIT/Assert/assert_equal_float-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RUNIT/Assert/assert_exception-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RUNIT/Assert/assert_fail-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RUNIT/Assert/assert_match-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RUNIT/Assert/assert_matches-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RUNIT/Assert/assert_no_exception-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RUNIT/Assert/assert_not_match-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RUNIT/Assert/assert_not_nil-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RUNIT/Assert/assert_respond_to-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RUNIT/Assert/assert_send-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RUNIT/Assert/called_internally%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RUNIT/Assert/cdesc-Assert.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RUNIT/Assert/setup_assert-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RUNIT/CUI/TestRunner/cdesc-TestRunner.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RUNIT/CUI/TestRunner/create_mediator-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RUNIT/CUI/TestRunner/create_result-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RUNIT/CUI/TestRunner/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RUNIT/CUI/TestRunner/quiet_mode%3d-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RUNIT/CUI/TestRunner/run-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RUNIT/CUI/TestRunner/run-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RUNIT/CUI/cdesc-CUI.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RUNIT/TestCase/assert_equals-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RUNIT/TestCase/cdesc-TestCase.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RUNIT/TestCase/name-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RUNIT/TestCase/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RUNIT/TestCase/run-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RUNIT/TestCase/suite-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RUNIT/TestResult/add_error-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RUNIT/TestResult/add_failure-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RUNIT/TestResult/cdesc-TestResult.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RUNIT/TestResult/error_size-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RUNIT/TestResult/failure_size-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RUNIT/TestResult/run_asserts-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RUNIT/TestResult/run_tests-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RUNIT/TestResult/succeed%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RUNIT/TestSuite/add-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RUNIT/TestSuite/add_test-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RUNIT/TestSuite/cdesc-TestSuite.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RUNIT/TestSuite/count_test_cases-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RUNIT/TestSuite/run-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RUNIT/ToPublic/cdesc-ToPublic.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RUNIT/cdesc-RUNIT.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Racc/ParseError/cdesc-ParseError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Racc/Parser/_racc_do_parse_rb-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Racc/Parser/_racc_do_reduce-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Racc/Parser/_racc_evalact-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Racc/Parser/_racc_init_sysvars-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Racc/Parser/_racc_setup-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Racc/Parser/_racc_yyparse_rb-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Racc/Parser/cdesc-Parser.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Racc/Parser/do_parse-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Racc/Parser/next_token-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Racc/Parser/on_error-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Racc/Parser/racc_accept-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Racc/Parser/racc_e_pop-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Racc/Parser/racc_next_state-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Racc/Parser/racc_print_stacks-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Racc/Parser/racc_print_states-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Racc/Parser/racc_reduce-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Racc/Parser/racc_read_token-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Racc/Parser/racc_runtime_type-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Racc/Parser/racc_shift-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Racc/Parser/racc_token2str-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Racc/Parser/token_to_str-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Racc/Parser/yyaccept-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Racc/Parser/yyerrok-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Racc/Parser/yyerror-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Racc/Parser/yyparse-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Racc/cdesc-Racc.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Range/%3d%3d%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Range/%3d%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Range/begin-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Range/cdesc-Range.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Range/each-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Range/end-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Range/eql%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Range/exclude_end%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Range/first-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Range/hash-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Range/include%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Range/inspect-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Range/last-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Range/member%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Range/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Range/pretty_print-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Range/step-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Range/to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Range/to_yaml-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Range/yaml_new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RangeError/cdesc-RangeError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rational/%25-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rational/%2a%2a-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rational/%2a-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rational/%2b-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rational/%2d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rational/%2f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rational/%3c%3d%3e-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rational/%3d%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rational/abs-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rational/cdesc-Rational.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rational/coerce-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rational/divmod-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rational/hash-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rational/inspect-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rational/new%21-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rational/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rational/power2-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rational/reduce-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rational/to_f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rational/to_i-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rational/to_r-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rational/to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RegAnd/%3d%7e-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RegAnd/cdesc-RegAnd.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RegAnd/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RegOr/%3d%7e-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RegOr/cdesc-RegOr.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RegOr/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Regexp/%26-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Regexp/%3d%3d%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Regexp/%3d%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Regexp/%3d%7e-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Regexp/%7c-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Regexp/%7e-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Regexp/casefold%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Regexp/cdesc-Regexp.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Regexp/compile-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Regexp/eql%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Regexp/escape-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Regexp/hash-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Regexp/inspect-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Regexp/kcode-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Regexp/last_match-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Regexp/match-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Regexp/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Regexp/options-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Regexp/quote-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Regexp/source-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Regexp/to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Regexp/to_yaml-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Regexp/union-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Regexp/yaml_new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RegexpError/cdesc-RegexpError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Config/NXDomain/cdesc-NXDomain.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Config/OtherResolvError/cdesc-OtherResolvError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Config/cdesc-Config.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Config/default_config_hash-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Config/generate_candidates-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Config/generate_timeouts-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Config/lazy_initialize-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Config/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Config/parse_resolv_conf-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Config/resolv-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Config/single%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/DecodeError/cdesc-DecodeError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/EncodeError/cdesc-EncodeError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Label/Str/%3d%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Label/Str/cdesc-Str.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Label/Str/eql%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Label/Str/hash-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Label/Str/inspect-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Label/Str/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Label/Str/to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Label/cdesc-Label.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Label/split-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Message/MessageDecoder/cdesc-MessageDecoder.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Message/MessageDecoder/get_bytes-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Message/MessageDecoder/get_label-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Message/MessageDecoder/get_labels-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Message/MessageDecoder/get_length16-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Message/MessageDecoder/get_name-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Message/MessageDecoder/get_question-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Message/MessageDecoder/get_rr-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Message/MessageDecoder/get_string-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Message/MessageDecoder/get_string_list-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Message/MessageDecoder/get_unpack-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Message/MessageDecoder/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Message/MessageEncoder/cdesc-MessageEncoder.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Message/MessageEncoder/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Message/MessageEncoder/put_bytes-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Message/MessageEncoder/put_label-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Message/MessageEncoder/put_labels-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Message/MessageEncoder/put_length16-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Message/MessageEncoder/put_name-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Message/MessageEncoder/put_pack-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Message/MessageEncoder/put_string-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Message/MessageEncoder/put_string_list-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Message/MessageEncoder/to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Message/%3d%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Message/add_additional-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Message/add_answer-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Message/add_authority-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Message/add_question-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Message/cdesc-Message.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Message/decode-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Message/each_additional-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Message/each_answer-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Message/each_authority-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Message/each_question-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Message/each_resource-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Message/encode-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Message/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Name/%3d%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Name/%5b%5d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Name/absolute%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Name/cdesc-Name.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Name/create-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Name/eql%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Name/hash-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Name/inspect-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Name/length-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Name/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Name/subdomain_of%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Name/to_a-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Name/to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/OpCode/cdesc-OpCode.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Query/cdesc-Query.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Query/decode_rdata-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Query/encode_rdata-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/RCode/cdesc-RCode.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Requester/ConnectedUDP/Sender/cdesc-Sender.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Requester/ConnectedUDP/Sender/send-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Requester/ConnectedUDP/cdesc-ConnectedUDP.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Requester/ConnectedUDP/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Requester/ConnectedUDP/sender-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Requester/RequestError/cdesc-RequestError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Requester/Sender/cdesc-Sender.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Requester/Sender/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Requester/Sender/recv-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Requester/TCP/Sender/cdesc-Sender.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Requester/TCP/Sender/send-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Requester/TCP/cdesc-TCP.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Requester/TCP/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Requester/TCP/sender-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Requester/UnconnectedUDP/Sender/cdesc-Sender.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Requester/UnconnectedUDP/Sender/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Requester/UnconnectedUDP/Sender/send-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Requester/UnconnectedUDP/cdesc-UnconnectedUDP.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Requester/UnconnectedUDP/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Requester/UnconnectedUDP/sender-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Requester/cdesc-Requester.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Requester/close-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Requester/delete-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Requester/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Resource/ANY/cdesc-ANY.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Resource/CNAME/cdesc-CNAME.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Resource/DomainName/cdesc-DomainName.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Resource/DomainName/decode_rdata-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Resource/DomainName/encode_rdata-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Resource/DomainName/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Resource/Generic/cdesc-Generic.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Resource/Generic/create-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Resource/Generic/decode_rdata-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Resource/Generic/encode_rdata-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Resource/Generic/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Resource/HINFO/cdesc-HINFO.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Resource/HINFO/decode_rdata-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Resource/HINFO/encode_rdata-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Resource/HINFO/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Resource/IN/A/cdesc-A.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Resource/IN/A/decode_rdata-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Resource/IN/A/encode_rdata-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Resource/IN/A/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Resource/IN/AAAA/cdesc-AAAA.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Resource/IN/AAAA/decode_rdata-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Resource/IN/AAAA/encode_rdata-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Resource/IN/AAAA/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Resource/IN/SRV/cdesc-SRV.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Resource/IN/SRV/decode_rdata-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Resource/IN/SRV/encode_rdata-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Resource/IN/SRV/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Resource/IN/WKS/cdesc-WKS.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Resource/IN/WKS/decode_rdata-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Resource/IN/WKS/encode_rdata-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Resource/IN/WKS/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Resource/IN/cdesc-IN.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Resource/MINFO/cdesc-MINFO.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Resource/MINFO/decode_rdata-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Resource/MINFO/encode_rdata-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Resource/MINFO/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Resource/MX/cdesc-MX.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Resource/MX/decode_rdata-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Resource/MX/encode_rdata-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Resource/MX/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Resource/NS/cdesc-NS.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Resource/PTR/cdesc-PTR.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Resource/SOA/cdesc-SOA.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Resource/SOA/decode_rdata-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Resource/SOA/encode_rdata-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Resource/SOA/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Resource/TXT/cdesc-TXT.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Resource/TXT/data-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Resource/TXT/decode_rdata-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Resource/TXT/encode_rdata-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Resource/TXT/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Resource/%3d%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Resource/cdesc-Resource.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Resource/decode_rdata-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Resource/encode_rdata-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Resource/eql%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Resource/get_class-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Resource/hash-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/cdesc-DNS.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/close-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/each_address-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/each_name-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/each_resource-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/extract_resources-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/getaddress-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/getaddresses-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/getname-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/getnames-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/getresource-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/getresources-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/lazy_initialize-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/open-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/Hosts/cdesc-Hosts.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/Hosts/each_address-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/Hosts/each_name-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/Hosts/getaddress-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/Hosts/getaddresses-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/Hosts/getname-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/Hosts/getnames-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/Hosts/lazy_initialize-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/Hosts/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/IPv4/%3d%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/IPv4/cdesc-IPv4.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/IPv4/create-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/IPv4/eql%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/IPv4/hash-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/IPv4/inspect-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/IPv4/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/IPv4/to_name-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/IPv4/to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/IPv6/%3d%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/IPv6/cdesc-IPv6.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/IPv6/create-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/IPv6/eql%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/IPv6/hash-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/IPv6/inspect-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/IPv6/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/IPv6/to_name-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/IPv6/to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/ResolvError/cdesc-ResolvError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/ResolvTimeout/cdesc-ResolvTimeout.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/cdesc-Resolv.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/each_address-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/each_address-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/each_name-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/each_name-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/getaddress-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/getaddress-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/getaddresses-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/getaddresses-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/getname-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/getname-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/getnames-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/getnames-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RiDisplay/append_features-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RiDisplay/cdesc-RiDisplay.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RiDisplay/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RiDriver/cdesc-RiDriver.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RiDriver/get_info_for-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RiDriver/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RiDriver/process_args-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RiDriver/report_class_stuff-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RiDriver/report_method_stuff-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RiDriver/report_missing_documentation-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RiError/cdesc-RiError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rinda/DRbObjectTemplate/%3d%3d%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rinda/DRbObjectTemplate/cdesc-DRbObjectTemplate.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rinda/DRbObjectTemplate/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rinda/InvalidHashTupleKey/cdesc-InvalidHashTupleKey.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rinda/NotifyTemplateEntry/cdesc-NotifyTemplateEntry.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rinda/NotifyTemplateEntry/each-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rinda/NotifyTemplateEntry/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rinda/NotifyTemplateEntry/notify-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rinda/NotifyTemplateEntry/pop-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rinda/RequestCanceledError/cdesc-RequestCanceledError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rinda/RequestExpiredError/cdesc-RequestExpiredError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rinda/RindaError/cdesc-RindaError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rinda/RingFinger/cdesc-RingFinger.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rinda/RingFinger/each-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rinda/RingFinger/finger-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rinda/RingFinger/lookup_ring-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rinda/RingFinger/lookup_ring_any-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rinda/RingFinger/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rinda/RingFinger/primary-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rinda/RingFinger/to_a-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rinda/RingFinger/to_a-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rinda/RingProvider/cdesc-RingProvider.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rinda/RingProvider/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rinda/RingProvider/provide-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rinda/RingServer/cdesc-RingServer.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rinda/RingServer/do_reply-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rinda/RingServer/do_write-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rinda/RingServer/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rinda/RingServer/reply_service-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rinda/RingServer/write_service-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rinda/SimpleRenewer/cdesc-SimpleRenewer.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rinda/SimpleRenewer/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rinda/SimpleRenewer/renew-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rinda/Template/%3d%3d%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rinda/Template/cdesc-Template.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rinda/Template/match-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rinda/TemplateEntry/%3d%3d%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rinda/TemplateEntry/cdesc-TemplateEntry.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rinda/TemplateEntry/match-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rinda/Tuple/%5b%5d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rinda/Tuple/cdesc-Tuple.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rinda/Tuple/each-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rinda/Tuple/fetch-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rinda/Tuple/hash%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rinda/Tuple/init_with_ary-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rinda/Tuple/init_with_hash-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rinda/Tuple/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rinda/Tuple/size-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rinda/Tuple/value-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rinda/TupleBag/cdesc-TupleBag.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rinda/TupleBag/delete-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rinda/TupleBag/delete_unless_alive-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rinda/TupleBag/find-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rinda/TupleBag/find_all-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rinda/TupleBag/find_all_template-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rinda/TupleBag/has_expires%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rinda/TupleBag/push-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rinda/TupleEntry/%5b%5d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rinda/TupleEntry/alive%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rinda/TupleEntry/cancel-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rinda/TupleEntry/canceled%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rinda/TupleEntry/cdesc-TupleEntry.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rinda/TupleEntry/expired%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rinda/TupleEntry/fetch-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rinda/TupleEntry/get_renewer-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rinda/TupleEntry/make_expires-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rinda/TupleEntry/make_tuple-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rinda/TupleEntry/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rinda/TupleEntry/renew-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rinda/TupleEntry/size-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rinda/TupleEntry/value-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rinda/TupleSpace/cdesc-TupleSpace.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rinda/TupleSpace/keep_clean-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rinda/TupleSpace/move-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rinda/TupleSpace/need_keeper%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rinda/TupleSpace/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rinda/TupleSpace/notify-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rinda/TupleSpace/notify_event-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rinda/TupleSpace/read-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rinda/TupleSpace/read_all-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rinda/TupleSpace/start_keeper-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rinda/TupleSpace/take-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rinda/TupleSpace/write-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rinda/TupleSpaceProxy/cdesc-TupleSpaceProxy.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rinda/TupleSpaceProxy/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rinda/TupleSpaceProxy/notify-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rinda/TupleSpaceProxy/read-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rinda/TupleSpaceProxy/read_all-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rinda/TupleSpaceProxy/take-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rinda/TupleSpaceProxy/write-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rinda/WaitTemplateEntry/cancel-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rinda/WaitTemplateEntry/cdesc-WaitTemplateEntry.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rinda/WaitTemplateEntry/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rinda/WaitTemplateEntry/read-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rinda/WaitTemplateEntry/signal-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rinda/WaitTemplateEntry/wait-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rinda/cdesc-Rinda.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RubyLex/BufferedReader/cdesc-BufferedReader.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RubyLex/BufferedReader/column-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RubyLex/BufferedReader/divert_read_from-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RubyLex/BufferedReader/get_read-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RubyLex/BufferedReader/getc-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RubyLex/BufferedReader/getc_already_read-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RubyLex/BufferedReader/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RubyLex/BufferedReader/peek-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RubyLex/BufferedReader/peek_equal-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RubyLex/BufferedReader/ungetc-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RubyLex/buf_input-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RubyLex/cdesc-RubyLex.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RubyLex/char_no-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RubyLex/debug%3f-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RubyLex/each_top_level_statement-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RubyLex/eof%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RubyLex/get_read-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RubyLex/get_readed-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RubyLex/getc-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RubyLex/getc_of_rests-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RubyLex/gets-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RubyLex/identify_comment-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RubyLex/identify_gvar-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RubyLex/identify_here_document-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RubyLex/identify_identifier-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RubyLex/identify_number-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RubyLex/identify_quotation-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RubyLex/identify_string-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RubyLex/initialize_input-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RubyLex/lex-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RubyLex/lex_init-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RubyLex/lex_int2-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RubyLex/line_no-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RubyLex/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RubyLex/peek-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RubyLex/peek_equal%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RubyLex/peek_match%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RubyLex/prompt-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RubyLex/read_escape-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RubyLex/set_input-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RubyLex/set_prompt-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RubyLex/skip_inner_expression-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RubyLex/token-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RubyLex/ungetc-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RubyToken/TkError/cdesc-TkError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RubyToken/TkId/cdesc-TkId.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RubyToken/TkId/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RubyToken/TkKW/cdesc-TkKW.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RubyToken/TkNode/cdesc-TkNode.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RubyToken/TkNode/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RubyToken/TkOPASGN/cdesc-TkOPASGN.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RubyToken/TkOPASGN/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RubyToken/TkOp/cdesc-TkOp.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RubyToken/TkOp/name-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RubyToken/TkUnknownChar/cdesc-TkUnknownChar.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RubyToken/TkUnknownChar/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RubyToken/TkVal/cdesc-TkVal.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RubyToken/TkVal/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RubyToken/Token/cdesc-Token.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RubyToken/Token/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RubyToken/Token/set_text-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RubyToken/Token-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RubyToken/cdesc-RubyToken.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RubyToken/def_token-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RubyToken/set_token_position-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/AttrChanger/cdesc-AttrChanger.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/AttrChanger/to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/AttrSpan/%5b%5d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/AttrSpan/cdesc-AttrSpan.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/AttrSpan/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/AttrSpan/set_attrs-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/Attribute/as_string-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/Attribute/bitmap_for-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/Attribute/cdesc-Attribute.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/Attribute/each_name_of-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/AttributeManager/add_html-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/AttributeManager/add_special-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/AttributeManager/add_word_pair-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/AttributeManager/attribute-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/AttributeManager/cdesc-AttributeManager.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/AttributeManager/change_attribute-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/AttributeManager/changed_attribute_by_name-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/AttributeManager/convert_attrs-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/AttributeManager/convert_html-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/AttributeManager/convert_specials-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/AttributeManager/copy_string-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/AttributeManager/display_attributes-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/AttributeManager/flow-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/AttributeManager/mask_protected_sequences-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/AttributeManager/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/AttributeManager/split_into_flow-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/AttributeManager/unmask_protected_sequences-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/BlankLine/cdesc-BlankLine.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/Flow/LIST/%3c%3c-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/Flow/LIST/cdesc-LIST.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/Flow/LIST/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/Flow/cdesc-Flow.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/Fragment/add_text-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/Fragment/cdesc-Fragment.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/Fragment/for-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/Fragment/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/Fragment/to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/Fragment/type_name-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/Heading/cdesc-Heading.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/Heading/head_level-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/Line/cdesc-Line.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/Line/isBlank%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/Line/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/Line/stamp-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/Line/strip_leading-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/Line/to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/LineCollection/accept-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/LineCollection/add-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/LineCollection/add_list_breaks-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/LineCollection/add_list_start_and_ends-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/LineCollection/cdesc-LineCollection.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/LineCollection/change_verbatim_blank_lines-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/LineCollection/each-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/LineCollection/fragment_for-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/LineCollection/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/LineCollection/normalize-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/LineCollection/tidy_blank_lines-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/LineCollection/to_a-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/LineCollection/to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/Lines/as_text-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/Lines/cdesc-Lines.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/Lines/delete-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/Lines/each-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/Lines/empty%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/Lines/line_types-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/Lines/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/Lines/next-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/Lines/normalize-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/Lines/rewind-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/Lines/unget-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/ListBase/cdesc-ListBase.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/ListEnd/cdesc-ListEnd.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/ListEnd/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/ListItem/cdesc-ListItem.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/ListStart/cdesc-ListStart.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/ListStart/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/Paragraph/cdesc-Paragraph.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/PreProcess/cdesc-PreProcess.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/PreProcess/find_include_file-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/PreProcess/handle-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/PreProcess/include_file-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/PreProcess/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/Rule/cdesc-Rule.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/SimpleMarkup/add_html-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/SimpleMarkup/add_special-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/SimpleMarkup/add_word_pair-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/SimpleMarkup/assign_types_to_lines-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/SimpleMarkup/cdesc-SimpleMarkup.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/SimpleMarkup/content-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/SimpleMarkup/convert-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/SimpleMarkup/get_line_types-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/SimpleMarkup/group_lines-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/SimpleMarkup/handled_labeled_list-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/SimpleMarkup/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/Special/%3d%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/Special/cdesc-Special.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/Special/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/Special/to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/ToFlow/accept_blank_line-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/ToFlow/accept_heading-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/ToFlow/accept_list_end-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/ToFlow/accept_list_item-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/ToFlow/accept_list_start-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/ToFlow/accept_paragraph-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/ToFlow/accept_rule-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/ToFlow/accept_verbatim-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/ToFlow/add_tag-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/ToFlow/annotate-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/ToFlow/cdesc-ToFlow.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/ToFlow/convert_flow-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/ToFlow/convert_special-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/ToFlow/convert_string-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/ToFlow/end_accepting-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/ToFlow/init_tags-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/ToFlow/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/ToFlow/off_tags-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/ToFlow/on_tags-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/ToFlow/start_accepting-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/ToHtml/accept_blank_line-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/ToHtml/accept_heading-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/ToHtml/accept_list_end-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/ToHtml/accept_list_item-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/ToHtml/accept_list_start-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/ToHtml/accept_paragraph-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/ToHtml/accept_rule-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/ToHtml/accept_verbatim-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/ToHtml/add_tag-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/ToHtml/annotate-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/ToHtml/cdesc-ToHtml.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/ToHtml/convert_flow-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/ToHtml/convert_heading-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/ToHtml/convert_special-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/ToHtml/convert_string-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/ToHtml/init_tags-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/ToHtml/end_accepting-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/ToHtml/html_list_name-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/ToHtml/list_end_for-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/ToHtml/list_item_start-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/ToHtml/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/ToHtml/off_tags-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/ToHtml/on_tags-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/ToHtml/start_accepting-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/ToHtml/wrap-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/ToLaTeX/accept_blank_line-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/ToLaTeX/accept_heading-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/ToLaTeX/accept_list_end-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/ToLaTeX/accept_list_item-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/ToLaTeX/accept_list_start-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/ToLaTeX/accept_paragraph-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/ToLaTeX/accept_rule-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/ToLaTeX/accept_verbatim-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/ToLaTeX/add_tag-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/ToLaTeX/cdesc-ToLaTeX.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/ToLaTeX/convert_flow-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/ToLaTeX/convert_heading-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/ToLaTeX/convert_special-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/ToLaTeX/convert_string-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/ToLaTeX/end_accepting-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/ToLaTeX/l-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/ToLaTeX/escape-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/ToLaTeX/init_tags-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/ToLaTeX/l-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/ToLaTeX/list_end_for-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/ToLaTeX/list_item_start-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/ToLaTeX/list_name-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/ToLaTeX/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/ToLaTeX/off_tags-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/ToLaTeX/on_tags-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/ToLaTeX/start_accepting-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/ToLaTeX/wrap-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/Verbatim/add_text-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/Verbatim/cdesc-Verbatim.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/cdesc-SM.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RuntimeError/cdesc-RuntimeError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/ArrayIndexOutOfBoundsError/cdesc-ArrayIndexOutOfBoundsError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/ArrayStoreError/cdesc-ArrayStoreError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Attachment/cdesc-Attachment.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Attachment/content-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Attachment/contentid%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Attachment/contentid-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Attachment/contentid-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Attachment/mime_contentid-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Attachment/mime_contentid-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Attachment/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Attachment/save-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Attachment/to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Attachment/write-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/EmptyResponseError/cdesc-EmptyResponseError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/EncodingStyle/ASPDotNetHandler/SOAPTemporalObject/cdesc-SOAPTemporalObject.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/EncodingStyle/ASPDotNetHandler/SOAPTemporalObject/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/EncodingStyle/ASPDotNetHandler/SOAPUnknown/as_nil-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/EncodingStyle/ASPDotNetHandler/SOAPUnknown/as_string-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/EncodingStyle/ASPDotNetHandler/SOAPUnknown/as_struct-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/EncodingStyle/ASPDotNetHandler/SOAPUnknown/cdesc-SOAPUnknown.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/EncodingStyle/ASPDotNetHandler/SOAPUnknown/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/EncodingStyle/ASPDotNetHandler/cdesc-ASPDotNetHandler.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/EncodingStyle/ASPDotNetHandler/decode_epilogue-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/EncodingStyle/ASPDotNetHandler/decode_parent-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/EncodingStyle/ASPDotNetHandler/decode_prologue-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/EncodingStyle/ASPDotNetHandler/decode_tag-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/EncodingStyle/ASPDotNetHandler/decode_tag_end-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/EncodingStyle/ASPDotNetHandler/decode_text-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/EncodingStyle/ASPDotNetHandler/decode_textbuf-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/EncodingStyle/ASPDotNetHandler/encode_data-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/EncodingStyle/ASPDotNetHandler/encode_data_end-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/EncodingStyle/ASPDotNetHandler/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/EncodingStyle/Handler/EncodingStyleError/cdesc-EncodingStyleError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/EncodingStyle/Handler/add_handler-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/EncodingStyle/Handler/cdesc-Handler.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/EncodingStyle/Handler/decode_epilogue-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/EncodingStyle/Handler/decode_prologue-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/EncodingStyle/Handler/decode_tag-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/EncodingStyle/Handler/decode_tag_end-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/EncodingStyle/Handler/decode_text-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/EncodingStyle/Handler/decode_typemap%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/EncodingStyle/Handler/each-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/EncodingStyle/Handler/encode_data-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/EncodingStyle/Handler/encode_data_end-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/EncodingStyle/Handler/encode_epilogue-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/EncodingStyle/Handler/encode_prologue-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/EncodingStyle/Handler/handler-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/EncodingStyle/Handler/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/EncodingStyle/Handler/uri-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/EncodingStyle/LiteralHandler/SOAPTemporalObject/cdesc-SOAPTemporalObject.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/EncodingStyle/LiteralHandler/SOAPTemporalObject/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/EncodingStyle/LiteralHandler/SOAPUnknown/as_element-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/EncodingStyle/LiteralHandler/SOAPUnknown/as_nil-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/EncodingStyle/LiteralHandler/SOAPUnknown/as_string-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/EncodingStyle/LiteralHandler/SOAPUnknown/cdesc-SOAPUnknown.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/EncodingStyle/LiteralHandler/SOAPUnknown/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/EncodingStyle/LiteralHandler/cdesc-LiteralHandler.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/EncodingStyle/LiteralHandler/decode_attrs-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/EncodingStyle/LiteralHandler/decode_epilogue-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/EncodingStyle/LiteralHandler/decode_parent-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/EncodingStyle/LiteralHandler/decode_prologue-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/EncodingStyle/LiteralHandler/decode_tag-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/EncodingStyle/LiteralHandler/decode_tag_end-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/EncodingStyle/LiteralHandler/decode_text-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/EncodingStyle/LiteralHandler/decode_textbuf-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/EncodingStyle/LiteralHandler/encode_data-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/EncodingStyle/LiteralHandler/encode_data_end-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/EncodingStyle/LiteralHandler/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/EncodingStyle/SOAPHandler/SOAPTemporalObject/cdesc-SOAPTemporalObject.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/EncodingStyle/SOAPHandler/SOAPTemporalObject/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/EncodingStyle/SOAPHandler/SOAPUnknown/as_nil-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/EncodingStyle/SOAPHandler/SOAPUnknown/as_string-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/EncodingStyle/SOAPHandler/SOAPUnknown/as_struct-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/EncodingStyle/SOAPHandler/SOAPUnknown/cdesc-SOAPUnknown.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/EncodingStyle/SOAPHandler/SOAPUnknown/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/EncodingStyle/SOAPHandler/cdesc-SOAPHandler.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/EncodingStyle/SOAPHandler/content_ranksize-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/EncodingStyle/SOAPHandler/content_typename-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/EncodingStyle/SOAPHandler/create_arytype-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/EncodingStyle/SOAPHandler/decode_arypos-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/EncodingStyle/SOAPHandler/decode_attr_value-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/EncodingStyle/SOAPHandler/decode_attrs-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/EncodingStyle/SOAPHandler/decode_basetype-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/EncodingStyle/SOAPHandler/decode_defined_complextype-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/EncodingStyle/SOAPHandler/decode_defined_simpletype-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/EncodingStyle/SOAPHandler/decode_definedtype-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/EncodingStyle/SOAPHandler/decode_epilogue-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/EncodingStyle/SOAPHandler/decode_tag-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/EncodingStyle/SOAPHandler/decode_parent-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/EncodingStyle/SOAPHandler/decode_prologue-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/EncodingStyle/SOAPHandler/decode_resolve_id-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/EncodingStyle/SOAPHandler/decode_tag_by_type-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/EncodingStyle/SOAPHandler/decode_tag_by_wsdl-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/EncodingStyle/SOAPHandler/decode_tag_end-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/EncodingStyle/SOAPHandler/decode_text-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/EncodingStyle/SOAPHandler/decode_textbuf-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/EncodingStyle/SOAPHandler/encode_attr_value-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/EncodingStyle/SOAPHandler/encode_attrs-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/EncodingStyle/SOAPHandler/encode_data-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/EncodingStyle/SOAPHandler/encode_data_end-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/EncodingStyle/SOAPHandler/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/EncodingStyle/cdesc-EncodingStyle.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Env/cdesc-Env.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Env/getenv-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Error/cdesc-Error.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/FaultError/cdesc-FaultError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/FaultError/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/FaultError/to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/HTTPConfigLoader/cdesc-HTTPConfigLoader.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/HTTPConfigLoader/cert_from_file-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/HTTPConfigLoader/key_from_file-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/HTTPConfigLoader/set_basic_auth-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/HTTPConfigLoader/set_options-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/HTTPConfigLoader/set_ssl_config-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/HTTPConfigLoader/ssl_config_int-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/HTTPStreamError/cdesc-HTTPStreamError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/HTTPStreamHandler/accept_encoding_gzip%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/HTTPStreamHandler/cdesc-HTTPStreamHandler.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/HTTPStreamHandler/decode_gzip-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/HTTPStreamHandler/inspect-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/HTTPStreamHandler/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/HTTPStreamHandler/reset-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/HTTPStreamHandler/send-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/HTTPStreamHandler/send_accept_encoding_gzip%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/HTTPStreamHandler/send_post-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/HTTPStreamHandler/set_cookie_store_file-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/HTTPStreamHandler/set_options-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/HTTPStreamHandler/test_loopback_response-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Header/Handler/cdesc-Handler.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Header/Handler/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Header/Handler/on_inbound-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Header/Handler/on_inbound_headeritem-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Header/Handler/on_outbound-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Header/Handler/on_outbound_headeritem-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Header/HandlerSet/%3c%3c-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Header/HandlerSet/add-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Header/HandlerSet/cdesc-HandlerSet.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Header/HandlerSet/delete-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Header/HandlerSet/dup-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Header/HandlerSet/include%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Header/HandlerSet/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Header/HandlerSet/on_inbound-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Header/HandlerSet/on_outbound-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Header/HandlerSet/store%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Header/SimpleHandler/cdesc-SimpleHandler.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Header/SimpleHandler/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Header/SimpleHandler/on_inbound-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Header/SimpleHandler/on_outbound-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Header/SimpleHandler/on_simple_inbound-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Header/SimpleHandler/on_simple_outbound-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Header/cdesc-Header.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/MIMEMessage/Header/%5b%5d%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/MIMEMessage/Header/%5b%5d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/MIMEMessage/Header/cdesc-Header.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/MIMEMessage/Header/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/MIMEMessage/Header/to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/MIMEMessage/Headers/add-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/MIMEMessage/Headers/cdesc-Headers.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/MIMEMessage/Headers/parse-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/MIMEMessage/Headers/parse-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/MIMEMessage/Headers/parse_line-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/MIMEMessage/Headers/parse_rhs-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/MIMEMessage/Headers/to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/MIMEMessage/MIMEMessageError/cdesc-MIMEMessageError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/MIMEMessage/Part/cdesc-Part.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/MIMEMessage/Part/contentid-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/MIMEMessage/Part/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/MIMEMessage/Part/parse-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/MIMEMessage/Part/parse-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/MIMEMessage/Part/to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/MIMEMessage/add_attachment-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/MIMEMessage/add_part-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/MIMEMessage/boundary-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/MIMEMessage/cdesc-MIMEMessage.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/MIMEMessage/close-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/MIMEMessage/content_str-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/MIMEMessage/has_parts%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/MIMEMessage/headers_str-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/MIMEMessage/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/MIMEMessage/parse-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/MIMEMessage/parse-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/MIMEMessage/root-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/MIMEMessage/to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/MPostUnavailableError/cdesc-MPostUnavailableError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/ArrayFactory_/cdesc-ArrayFactory_.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/ArrayFactory_/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/ArrayFactory_/obj2soap-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/ArrayFactory_/soap2obj-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/AttachmentFactory/cdesc-AttachmentFactory.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/AttachmentFactory/obj2soap-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/AttachmentFactory/soap2obj-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/Base64Factory_/cdesc-Base64Factory_.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/Base64Factory_/obj2soap-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/Base64Factory_/soap2obj-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/BasetypeFactory_/cdesc-BasetypeFactory_.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/BasetypeFactory_/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/BasetypeFactory_/obj2soap-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/BasetypeFactory_/soap2obj-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/DateTimeFactory_/cdesc-DateTimeFactory_.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/DateTimeFactory_/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/DateTimeFactory_/obj2soap-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/DateTimeFactory_/soap2obj-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/Factory/cdesc-Factory.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/Factory/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/Factory/obj2soap-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/Factory/setiv2ary-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/Factory/setiv2obj-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/Factory/setiv2soap-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/Factory/setiv2struct-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/Factory/soap2obj-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/HashFactory_/cdesc-HashFactory_.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/HashFactory_/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/HashFactory_/obj2soap-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/HashFactory_/soap2obj-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/MappedException/cdesc-MappedException.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/MappingError/cdesc-MappingError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/Object/%5b%5d%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/Object/%5b%5d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/Object/__add_xmlele_value-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/Object/__define_attr_accessor-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/Object/__set_xmlele_value-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/Object/__xmlattr-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/Object/__xmlele-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/Object/cdesc-Object.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/Object/inspect-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/Object/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/Registry/Map/add-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/Registry/Map/cdesc-Map.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/Registry/Map/clear-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/Registry/Map/find_mapped_obj_class-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/Registry/Map/find_mapped_soap_class-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/Registry/Map/init-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/Registry/Map/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/Registry/Map/obj2soap-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/Registry/Map/soap2obj-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/Registry/_obj2soap-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/Registry/_soap2obj-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/Registry/add-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/Registry/addextend2obj-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/Registry/addextend2soap-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/Registry/addiv2obj-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/Registry/cdesc-Registry.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/Registry/find_mapped_obj_class-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/Registry/find_mapped_soap_class-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/Registry/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/Registry/obj2soap-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/Registry/set-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/Registry/soap2obj-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/RubytypeFactory/addiv2soapattr-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/RubytypeFactory/anytype2obj-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/RubytypeFactory/array2obj-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/RubytypeFactory/cdesc-RubytypeFactory.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/RubytypeFactory/exception2obj-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/RubytypeFactory/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/RubytypeFactory/obj2soap-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/RubytypeFactory/rubytype2obj-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/RubytypeFactory/rubytypestruct2obj-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/RubytypeFactory/singleton_methods_true-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/RubytypeFactory/soap2obj-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/RubytypeFactory/string2obj-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/RubytypeFactory/unknownobj2soap-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/RubytypeFactory/unknownstruct2obj-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/RubytypeFactory/unknowntype2obj-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/SOAPException/cdesc-SOAPException.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/SOAPException/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/SOAPException/to_e-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/StringFactory_/cdesc-StringFactory_.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/StringFactory_/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/StringFactory_/obj2soap-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/StringFactory_/soap2obj-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/TraverseSupport/cdesc-TraverseSupport.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/TraverseSupport/mark_marshalled_obj-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/TraverseSupport/mark_unmarshalled_obj-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/TypedArrayFactory_/cdesc-TypedArrayFactory_.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/TypedArrayFactory_/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/TypedArrayFactory_/obj2soap-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/TypedArrayFactory_/soap2obj-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/TypedStructFactory_/cdesc-TypedStructFactory_.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/TypedStructFactory_/obj2soap-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/TypedStructFactory_/soap2obj-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/URIFactory_/cdesc-URIFactory_.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/URIFactory_/obj2soap-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/URIFactory_/soap2obj-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/WSDLEncodedRegistry/add_elements2stubobj-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/WSDLEncodedRegistry/any2obj-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/WSDLEncodedRegistry/any2soap-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/WSDLEncodedRegistry/array2soap-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/WSDLEncodedRegistry/base2soap-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/WSDLEncodedRegistry/cdesc-WSDLEncodedRegistry.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/WSDLEncodedRegistry/complexobj2soap-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/WSDLEncodedRegistry/elements2soap-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/WSDLEncodedRegistry/map2soap-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/WSDLEncodedRegistry/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/WSDLEncodedRegistry/obj2soap-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/WSDLEncodedRegistry/obj2typesoap-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/WSDLEncodedRegistry/schema_element_definition-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/WSDLEncodedRegistry/simpleobj2soap-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/WSDLEncodedRegistry/soap2obj-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/WSDLEncodedRegistry/soap2soap-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/WSDLEncodedRegistry/soap2stubobj-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/WSDLEncodedRegistry/struct2soap-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/WSDLLiteralRegistry/add_attributes2plainobj-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/WSDLLiteralRegistry/add_attributes2soap-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/WSDLLiteralRegistry/add_attributes2stubobj-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/WSDLLiteralRegistry/add_elements2plainobj-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/WSDLLiteralRegistry/add_elements2soap-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/WSDLLiteralRegistry/add_elements2stubobj-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/WSDLLiteralRegistry/any2obj-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/WSDLLiteralRegistry/any2soap-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/WSDLLiteralRegistry/anytype2obj-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/WSDLLiteralRegistry/base2soap-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/WSDLLiteralRegistry/cdesc-WSDLLiteralRegistry.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/WSDLLiteralRegistry/complexobj2soap-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/WSDLLiteralRegistry/define_xmlattr-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/WSDLLiteralRegistry/define_xmlattr_accessor-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/WSDLLiteralRegistry/mappingobj2soap-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/WSDLLiteralRegistry/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/WSDLLiteralRegistry/obj2elesoap-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/WSDLLiteralRegistry/obj2soap-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/WSDLLiteralRegistry/obj2typesoap-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/WSDLLiteralRegistry/schema_attribute_definition-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/WSDLLiteralRegistry/schema_element_definition-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/WSDLLiteralRegistry/simpleobj2soap-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/WSDLLiteralRegistry/soap2obj-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/WSDLLiteralRegistry/soapele2plainobj-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/WSDLLiteralRegistry/soapele2stubobj-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/WSDLLiteralRegistry/stubobj2soap-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/_obj2soap-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/_soap2obj-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/add_md_ary-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/ary2md-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/ary2soap-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/cdesc-Mapping.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/class2element-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/class2qname-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/class_from_name-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/class_schema_variable-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/const_from_name-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/create_empty_object-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/define_attr_accessor-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/define_singleton_method-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/elename2name-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/fault2exception-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/get_attribute-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/module_from_name-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/name2elename-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/obj2element-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/obj2soap-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/protect_threadvars-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/schema_attribute_definition-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/schema_element_definition-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/schema_ns_definition-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/schema_type_definition-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/set_attributes-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/soap2obj-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Marshal/cdesc-Marshal.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Marshal/dump-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Marshal/load-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Marshal/marshal-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Marshal/unmarshal-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Marshallable/cdesc-Marshallable.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/NetHttpClient/cdesc-NetHttpClient.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Parser/FormatDecodeError/cdesc-FormatDecodeError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Parser/ParseError/cdesc-ParseError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Parser/ParseFrame/NodeContainer/cdesc-NodeContainer.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Parser/ParseFrame/NodeContainer/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Parser/ParseFrame/NodeContainer/node-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Parser/ParseFrame/NodeContainer/replace_node-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Parser/ParseFrame/cdesc-ParseFrame.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Parser/ParseFrame/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Parser/ParseFrame/node%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Parser/UnexpectedElementError/cdesc-UnexpectedElementError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Parser/cdesc-Parser.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Parser/characters-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Parser/charset-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Parser/decode_soap_envelope-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Parser/decode_tag-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Parser/decode_tag_end-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Parser/decode_text-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Parser/end_element-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Parser/find_encodingstyle-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Parser/find_handler-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Parser/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Parser/parse-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Parser/start_element-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/PostUnavailableError/cdesc-PostUnavailableError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Processor/cdesc-Processor.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Processor/create_generator-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Processor/create_parser-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Processor/default_parser_option%3d-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Processor/default_parser_option-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Processor/marshal-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Processor/unmarshal-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/CGIStub/SOAPFCGIRequest/%5b%5d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/CGIStub/SOAPFCGIRequest/cdesc-SOAPFCGIRequest.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/CGIStub/SOAPFCGIRequest/meta_vars-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/CGIStub/SOAPFCGIRequest/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/CGIStub/SOAPRequest/%5b%5d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/CGIStub/SOAPRequest/cdesc-SOAPRequest.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/CGIStub/SOAPRequest/meta_vars-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/CGIStub/SOAPStdinRequest/%5b%5d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/CGIStub/SOAPStdinRequest/cdesc-SOAPStdinRequest.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/CGIStub/SOAPStdinRequest/meta_vars-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/CGIStub/SOAPStdinRequest/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/CGIStub/add_document_operation-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/CGIStub/add_headerhandler-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/CGIStub/add_method-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/CGIStub/add_method_as-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/CGIStub/add_method_with_namespace-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/CGIStub/add_method_with_namespace_as-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/CGIStub/add_rpc_headerhandler-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/CGIStub/add_rpc_method-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/CGIStub/add_rpc_method_as-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/CGIStub/add_rpc_method_with_namespace-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/CGIStub/add_rpc_operation-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/CGIStub/add_rpc_method_with_namespace_as-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/CGIStub/add_rpc_servant-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/CGIStub/add_servant-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/CGIStub/cdesc-CGIStub.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/CGIStub/generate_explicit_type%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/CGIStub/generate_explicit_type-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/CGIStub/mapping_registry%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/CGIStub/mapping_registry-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/CGIStub/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/CGIStub/on_init-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/CGIStub/run-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/CGIStub/set_fcgi_request-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Driver/__attr_proxy-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Driver/add_document_method-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Driver/add_document_method_interface-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Driver/add_document_operation-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Driver/add_method-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Driver/add_method_as-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Driver/add_method_interface-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Driver/add_method_with_soapaction-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Driver/add_method_with_soapaction_as-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Driver/add_rpc_method-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Driver/add_rpc_method_as-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Driver/add_rpc_method_interface-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Driver/add_rpc_operation-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Driver/add_rpc_method_with_soapaction-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Driver/add_rpc_method_with_soapaction_as-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Driver/call-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Driver/cdesc-Driver.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Driver/create_header-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Driver/httpproxy%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Driver/httpproxy-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Driver/inspect-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Driver/invoke-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Driver/loadproperty-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Driver/mandatorycharset%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Driver/mandatorycharset-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Driver/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Driver/set_wiredump_file_base-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Driver/setup_options-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Driver/wiredump_dev%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Driver/wiredump_dev-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Driver/wiredump_file_base%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Driver/wiredump_file_base-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/HTTPServer/add_document_method-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/HTTPServer/add_document_operation-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/HTTPServer/add_document_request_operation-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/HTTPServer/add_headerhandler-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/HTTPServer/add_method-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/HTTPServer/add_method_as-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/HTTPServer/add_request_headerhandler-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/HTTPServer/add_rpc_headerhandler-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/HTTPServer/add_rpc_method-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/HTTPServer/add_rpc_method_as-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/HTTPServer/add_rpc_operation-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/HTTPServer/add_rpc_request_operation-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/HTTPServer/add_rpc_servant-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/HTTPServer/add_rpc_request_servant-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/HTTPServer/cdesc-HTTPServer.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/HTTPServer/generate_explicit_type%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/HTTPServer/generate_explicit_type-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/HTTPServer/mapping_registry%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/HTTPServer/mapping_registry-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/HTTPServer/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/HTTPServer/on_init-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/HTTPServer/run-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/HTTPServer/shutdown-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/HTTPServer/status-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/MethodDefinitionError/cdesc-MethodDefinitionError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/ParameterError/cdesc-ParameterError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Proxy/Operation/cdesc-Operation.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Proxy/Operation/check_style-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Proxy/Operation/check_use-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Proxy/Operation/create_request_obj-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Proxy/Operation/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Proxy/Operation/raise_fault-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Proxy/Operation/request_body-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Proxy/Operation/request_default_encodingstyle-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Proxy/Operation/request_doc-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Proxy/Operation/request_doc_enc-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Proxy/Operation/request_doc_lit-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Proxy/Operation/request_rpc-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Proxy/Operation/request_rpc_enc-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Proxy/Operation/request_rpc_lit-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Proxy/Operation/response_default_encodingstyle-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Proxy/Operation/response_doc-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Proxy/Operation/response_doc_enc-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Proxy/Operation/response_doc_lit-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Proxy/Operation/response_obj-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Proxy/Operation/response_rpc-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Proxy/Operation/response_rpc_enc-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Proxy/Operation/response_rpc_lit-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Proxy/add_document_method-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Proxy/add_document_operation-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Proxy/add_method-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Proxy/add_rpc_method-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Proxy/add_rpc_operation-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Proxy/call-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Proxy/cdesc-Proxy.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Proxy/check_fault-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Proxy/create_encoding_opt-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Proxy/create_header-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Proxy/create_mapping_opt-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Proxy/create_request_header-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Proxy/endpoint_url%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Proxy/endpoint_url-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Proxy/inspect-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Proxy/invoke-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Proxy/marshal-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Proxy/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Proxy/receive_headers-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Proxy/reset_stream-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Proxy/route-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Proxy/set_envelopenamespace-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Proxy/set_wiredump_file_base-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Proxy/test_loopback_response-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Proxy/unmarshal-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/RPCError/cdesc-RPCError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Router/ApplicationScopeOperation/cdesc-ApplicationScopeOperation.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Router/ApplicationScopeOperation/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Router/ApplicationScopeOperation/receiver-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Router/Operation/call-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Router/Operation/cdesc-Operation.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Router/Operation/check_style-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Router/Operation/check_use-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Router/Operation/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Router/Operation/receiver-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Router/Operation/request_default_encodingstyle-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Router/Operation/request_doc_enc-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Router/Operation/request_doc_lit-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Router/Operation/request_document-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Router/Operation/request_rpc-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Router/Operation/request_rpc_enc-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Router/Operation/request_rpc_lit-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Router/Operation/response_default_encodingstyle-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Router/Operation/response_doc-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Router/Operation/response_doc_enc-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Router/Operation/response_doc_lit-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Router/Operation/response_rpc-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Router/Operation/response_rpc_enc-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Router/Operation/response_rpc_lit-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Router/RequestScopeOperation/cdesc-RequestScopeOperation.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Router/RequestScopeOperation/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Router/RequestScopeOperation/receiver-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Router/add_document_method-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Router/add_document_operation-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Router/add_document_request_operation-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Router/add_headerhandler-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Router/add_method-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Router/add_request_headerhandler-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Router/add_rpc_method-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Router/add_rpc_operation-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Router/add_rpc_request_operation-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Router/add_rpc_request_servant-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Router/add_rpc_servant-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Router/add_servant-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Router/assign_operation-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Router/call_headers-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Router/cdesc-Router.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Router/create_fault_response-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Router/create_mapping_opt-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Router/create_styleuse_option-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Router/ensure_styleuse_option-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Router/fault-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Router/first_input_part_qname-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Router/lookup_operation-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Router/marshal-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Router/mimeize-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Router/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Router/receive_headers-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Router/route-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Router/unmarshal-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/SOAPMethod/cdesc-SOAPMethod.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/SOAPMethod/collect_params-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/SOAPMethod/create_doc_param_def-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/SOAPMethod/create_rpc_param_def-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/SOAPMethod/derive_rpc_param_def-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/SOAPMethod/have_outparam%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/SOAPMethod/init_param-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/SOAPMethod/input_params-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/SOAPMethod/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/SOAPMethod/output_params-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/SOAPMethod/param_count-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/SOAPMethod/set_outparam-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/SOAPMethod/set_param-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/SOAPMethodRequest/cdesc-SOAPMethodRequest.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/SOAPMethodRequest/check_elename-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/SOAPMethodRequest/create_method_response-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/SOAPMethodRequest/create_request-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/SOAPMethodRequest/dup-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/SOAPMethodRequest/each-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/SOAPMethodRequest/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/SOAPMethodResponse/cdesc-SOAPMethodResponse.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/SOAPMethodResponse/each-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/SOAPMethodResponse/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/SOAPMethodResponse/retval%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/SOAPVoid/cdesc-SOAPVoid.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/SOAPVoid/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/SOAPlet/add_servant-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/SOAPlet/allow_content_encoding_gzip%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/SOAPlet/app_scope_router-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/SOAPlet/cdesc-SOAPlet.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/SOAPlet/do_GET-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/SOAPlet/do_POST-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/SOAPlet/encode_gzip%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/SOAPlet/encode_gzip-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/SOAPlet/get_instance-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/SOAPlet/logger-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/SOAPlet/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/SOAPlet/parse_soapaction-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/SOAPlet/require_path_info%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/SOAPlet/setup_req-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/SOAPlet/setup_res-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/StandaloneServer/cdesc-StandaloneServer.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/StandaloneServer/create_config-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/StandaloneServer/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/cdesc-RPC.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/defined_methods-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Property/Util/cdesc-Util.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Property/Util/const_from_name-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Property/Util/require_from_name-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Property/%3c%3c-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Property/%5b%5d%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Property/%5b%5d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Property/add_hook-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Property/assign-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Property/assign_hook-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Property/assign_self_hook-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Property/cdesc-Property.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Property/check_lock-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Property/deref_key-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Property/each-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Property/each_key-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Property/empty%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Property/generate_new_key-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Property/key_max-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Property/keys-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Property/load-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Property/load-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Property/lock-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Property/loadproperty-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Property/loadproperty-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Property/loadpropertyfile-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Property/loadstr-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Property/local_assign-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Property/local_assign_hook-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Property/local_hook-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Property/local_referent-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Property/locked%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Property/name_to_a-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Property/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Property/propkey%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Property/referent-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Property/to_key-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Property/unlock-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Property/values-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPCRoutingError/cdesc-RPCRoutingError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Response/cdesc-Response.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Response/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/ResponseFormatError/cdesc-ResponseFormatError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPAnySimpleType/cdesc-SOAPAnySimpleType.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPAnyURI/cdesc-SOAPAnyURI.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPArray/%5b%5d%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPArray/%5b%5d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPArray/add-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPArray/cdesc-SOAPArray.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPArray/create_arytype-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPArray/decode-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPArray/deep_map-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPArray/each-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPArray/include%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPArray/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPArray/offset%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPArray/offsetnext-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPArray/parse_type-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPArray/position-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPArray/ranksize-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPArray/replace-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPArray/retrieve-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPArray/soap2array-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPArray/to_a-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPArray/traverse-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPArray/traverse_data-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPAttachment/cdesc-SOAPAttachment.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPAttachment/external_contentid-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPAttachment/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPBase64/as_xsd-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPBase64/cdesc-SOAPBase64.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPBase64/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPBasetype/cdesc-SOAPBasetype.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPBasetype/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPBody/cdesc-SOAPBody.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPBody/encode-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPBody/fault%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPBody/fault-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPBody/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPBody/outparams-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPBody/request-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPBody/response-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPBody/root_node-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPBoolean/cdesc-SOAPBoolean.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPByte/cdesc-SOAPByte.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPCompoundtype/cdesc-SOAPCompoundtype.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPCompoundtype/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPDate/cdesc-SOAPDate.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPDateTime/cdesc-SOAPDateTime.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPDecimal/cdesc-SOAPDecimal.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPDouble/cdesc-SOAPDouble.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPDuration/cdesc-SOAPDuration.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPElement/%5b%5d%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPElement/%5b%5d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPElement/add-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPElement/add_accessor-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPElement/add_member-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPElement/cdesc-SOAPElement.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPElement/decode-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPElement/each-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPElement/from_obj-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPElement/inspect-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPElement/key%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPElement/members-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPElement/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPElement/safe_accessor_name-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPElement/to_elename-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPElement/to_obj-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPEnvelope/body%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPEnvelope/cdesc-SOAPEnvelope.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPEnvelope/encode-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPEnvelope/header%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPEnvelope/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPEnvelope/to_ary-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPEnvelopeElement/cdesc-SOAPEnvelopeElement.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPInt/cdesc-SOAPInt.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPExternalReference/cdesc-SOAPExternalReference.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPExternalReference/external_contentid-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPExternalReference/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPExternalReference/referred-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPExternalReference/refidstr-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPFault/cdesc-SOAPFault.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPFault/detail%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPFault/detail-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPFault/encode-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPFault/faultactor%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPFault/faultactor-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPFault/faultcode%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPFault/faultcode-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPFault/faultstring%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPFault/faultstring-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPFault/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPFloat/cdesc-SOAPFloat.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPGDay/cdesc-SOAPGDay.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPGMonth/cdesc-SOAPGMonth.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPGMonthDay/cdesc-SOAPGMonthDay.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPGYear/cdesc-SOAPGYear.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPGYearMonth/cdesc-SOAPGYearMonth.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPGenerator/FormatEncodeError/cdesc-FormatEncodeError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPGenerator/add_reftarget-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPGenerator/assign_ns-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPGenerator/cdesc-SOAPGenerator.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPGenerator/element_local%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPGenerator/element_qualified%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPGenerator/encode_child-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPGenerator/encode_data-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPGenerator/encode_element-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPGenerator/encode_name-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPGenerator/encode_name_end-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPGenerator/encode_rawstring-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPGenerator/encode_string-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPGenerator/encode_tag-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPGenerator/encode_tag_end-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPGenerator/epilogue-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPGenerator/find_handler-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPGenerator/generate-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPGenerator/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPGenerator/prologue-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPGenerator/xmldecl-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPHeader/add-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPHeader/cdesc-SOAPHeader.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPHeader/encode-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPHeader/length-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPHeader/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPHeader/size-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPHeaderItem/cdesc-SOAPHeaderItem.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPHeaderItem/encode-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPHeaderItem/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPHexBinary/cdesc-SOAPHexBinary.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPInteger/cdesc-SOAPInteger.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPLong/cdesc-SOAPLong.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPModuleUtils/cdesc-SOAPModuleUtils.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPModuleUtils/decode-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPNegativeInteger/cdesc-SOAPNegativeInteger.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPNil/cdesc-SOAPNil.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPNonNegativeInteger/cdesc-SOAPNonNegativeInteger.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPNonPositiveInteger/cdesc-SOAPNonPositiveInteger.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPPositiveInteger/cdesc-SOAPPositiveInteger.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPQName/cdesc-SOAPQName.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPShort/cdesc-SOAPShort.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPRawString/cdesc-SOAPRawString.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPReference/__getobj__-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPReference/__setobj__-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPReference/cdesc-SOAPReference.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPReference/create_refid-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPReference/decode-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPReference/method_missing-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPReference/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPReference/refidstr-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPString/cdesc-SOAPString.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPStruct/%5b%5d%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPStruct/%5b%5d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPStruct/add-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPStruct/add_member-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPStruct/cdesc-SOAPStruct.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPStruct/decode-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPStruct/each-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPStruct/key%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPStruct/members-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPStruct/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPStruct/replace-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPStruct/to_obj-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPStruct/to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPTime/cdesc-SOAPTime.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPType/cdesc-SOAPType.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPType/inspect-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPType/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPType/rootnode-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPUnsignedByte/cdesc-SOAPUnsignedByte.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPUnsignedInt/cdesc-SOAPUnsignedInt.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPUnsignedLong/cdesc-SOAPUnsignedLong.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPUnsignedShort/cdesc-SOAPUnsignedShort.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SessionManager/cdesc-SessionManager.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/StreamError/cdesc-StreamError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/StreamHandler/ConnectionData/cdesc-ConnectionData.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/StreamHandler/ConnectionData/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/StreamHandler/cdesc-StreamHandler.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/StreamHandler/create_media_type-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/StreamHandler/parse_media_type-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/UnhandledMustUnderstandHeaderError/cdesc-UnhandledMustUnderstandHeaderError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/WSDLDriver/Servant__/add_document_method_interface-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/WSDLDriver/Servant__/add_method_interface-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/WSDLDriver/Servant__/add_rpc_method_interface-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/WSDLDriver/Servant__/body_from_obj-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/WSDLDriver/Servant__/bodyitem_from_obj-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/WSDLDriver/Servant__/cdesc-Servant__.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/WSDLDriver/Servant__/create_method_obj-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/WSDLDriver/Servant__/create_method_struct-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/WSDLDriver/Servant__/create_options-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/WSDLDriver/Servant__/create_request_body-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/WSDLDriver/Servant__/create_request_header-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/WSDLDriver/Servant__/document_send-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/WSDLDriver/Servant__/endpoint_url%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/WSDLDriver/Servant__/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/WSDLDriver/Servant__/endpoint_url-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/WSDLDriver/Servant__/header_from_obj-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/WSDLDriver/Servant__/headerhandler-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/WSDLDriver/Servant__/headeritem_from_obj-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/WSDLDriver/Servant__/inspect-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/WSDLDriver/Servant__/receive_headers-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/WSDLDriver/Servant__/reset_stream-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/WSDLDriver/Servant__/rpc_call-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/WSDLDriver/Servant__/set_wiredump_file_base-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/WSDLDriver/Servant__/setup_options-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/WSDLDriver/Servant__/streamhandler-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/WSDLDriver/Servant__/test_loopback_response-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/WSDLDriver/__attr_proxy-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/WSDLDriver/cdesc-WSDLDriver.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/WSDLDriver/httpproxy%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/WSDLDriver/httpproxy-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/WSDLDriver/inspect-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/WSDLDriver/mandatorycharset%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/WSDLDriver/mandatorycharset-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/WSDLDriver/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/WSDLDriver/reset_stream-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/WSDLDriver/wiredump_dev%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/WSDLDriver/wiredump_dev-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/WSDLDriver/wiredump_file_base%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/WSDLDriver/wiredump_file_base-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/WSDLDriverFactory/FactoryError/cdesc-FactoryError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/WSDLDriverFactory/add_operation-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/WSDLDriverFactory/cdesc-WSDLDriverFactory.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/WSDLDriverFactory/createDriver-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/WSDLDriverFactory/create_driver-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/WSDLDriverFactory/create_param_def-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/WSDLDriverFactory/create_rpc_driver-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/WSDLDriverFactory/filter_parts-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/WSDLDriverFactory/find_port-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/WSDLDriverFactory/import-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/WSDLDriverFactory/init_driver-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/WSDLDriverFactory/inspect-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/WSDLDriverFactory/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/WSDLDriverFactory/param_def-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/WSDLDriverFactory/partqname-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/cdesc-SOAP.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/create_connection-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/get_content-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/no_proxy%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/post-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/proxy%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/reset-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/reset_all-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/save_cookie_store-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/set_basic_auth-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/set_cookie_store-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/start-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/test_loopback_response-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOCKSSocket/cdesc-SOCKSSocket.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOCKSSocket/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Scanf/FormatSpecifier/cdesc-FormatSpecifier.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Scanf/FormatSpecifier/count_space%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Scanf/FormatSpecifier/extract_decimal-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Scanf/FormatSpecifier/extract_float-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Scanf/FormatSpecifier/extract_hex-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Scanf/FormatSpecifier/extract_integer-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Scanf/FormatSpecifier/extract_octal-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Scanf/FormatSpecifier/extract_plain-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Scanf/FormatSpecifier/letter-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Scanf/FormatSpecifier/match-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Scanf/FormatSpecifier/mid_match%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Scanf/FormatSpecifier/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Scanf/FormatSpecifier/nil_proc-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Scanf/FormatSpecifier/skip-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Scanf/FormatSpecifier/to_re-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Scanf/FormatSpecifier/to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Scanf/FormatSpecifier/width-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Scanf/FormatString/cdesc-FormatString.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Scanf/FormatString/last_spec-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Scanf/FormatString/match-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Scanf/FormatString/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Scanf/FormatString/prune-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Scanf/FormatString/spec_count-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Scanf/FormatString/to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Scanf/cdesc-Scanf.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/ScriptError/cdesc-ScriptError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SecurityError/cdesc-SecurityError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Set/%26-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Set/%2b-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Set/%2d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Set/%3c%3c-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Set/%3d%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Set/%5b%5d-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Set/%5e-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Set/%7c-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Set/add%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Set/add-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Set/cdesc-Set.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Set/classify-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Set/clear-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Set/collect%21-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Set/delete%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Set/delete-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Set/delete_if-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Set/difference-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Set/divide-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Set/each-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Set/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Set/empty%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Set/flatten%21-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Set/flatten-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Set/flatten_merge-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Set/include%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Set/initialize_copy-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Set/inspect-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Set/intersection-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Set/length-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Set/map%21-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Set/member%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Set/merge-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Set/proper_subset%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Set/proper_superset%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Set/reject%21-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Set/replace-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Set/size-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Set/subset%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Set/subtract-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Set/superset%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Set/to_a-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Set/union-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/AppendFile/cdesc-AppendFile.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/AppendFile/input%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/AppendFile/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/AppendIO/cdesc-AppendIO.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/AppendIO/input%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/AppendIO/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/BuiltInCommand/active%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/BuiltInCommand/cdesc-BuiltInCommand.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/BuiltInCommand/wait%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/Cat/cdesc-Cat.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/Cat/each-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/Cat/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/CommandProcessor/%5b%5d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/CommandProcessor/add_delegate_command_to_shell-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/CommandProcessor/alias_command-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/CommandProcessor/alias_map-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/CommandProcessor/append-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/CommandProcessor/cat-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/CommandProcessor/cdesc-CommandProcessor.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/CommandProcessor/check_point-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/CommandProcessor/concat-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/CommandProcessor/def_builtin_commands-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/CommandProcessor/def_system_command-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/CommandProcessor/echo-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/CommandProcessor/effect_umask-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/CommandProcessor/expand_path-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/CommandProcessor/find_system_command-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/CommandProcessor/finish_all_jobs-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/CommandProcessor/foreach-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/CommandProcessor/glob-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/CommandProcessor/initialize-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/CommandProcessor/install_builtin_commands-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/CommandProcessor/install_system_commands-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/CommandProcessor/method_added-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/CommandProcessor/mkdir-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/CommandProcessor/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/CommandProcessor/notify-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/CommandProcessor/open-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/CommandProcessor/out-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/CommandProcessor/rehash-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/CommandProcessor/rmdir-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/CommandProcessor/run_config-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/CommandProcessor/system-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/CommandProcessor/tee-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/CommandProcessor/test-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/CommandProcessor/transact-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/CommandProcessor/unalias_command-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/CommandProcessor/unlink-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/CommandProcessor/undef_system_command-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/Concat/cdesc-Concat.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/Concat/each-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/Concat/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/Echo/cdesc-Echo.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/Echo/each-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/Echo/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/Error/cdesc-Error.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/Filter/%2b-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/Filter/%3c-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/Filter/%3e%3e-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/Filter/%3e-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/Filter/%7c-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/Filter/cdesc-Filter.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/Filter/each-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/Filter/input%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/Filter/inspect-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/Filter/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/Filter/to_a-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/Filter/to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/Glob/cdesc-Glob.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/Glob/each-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/Glob/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/ProcessController/activate-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/ProcessController/active_job%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/ProcessController/active_jobs-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/ProcessController/active_jobs_exist%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/ProcessController/add_schedule-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/ProcessController/cdesc-ProcessController.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/ProcessController/each_active_object-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/ProcessController/inactivate-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/ProcessController/jobs-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/ProcessController/jobs_exist%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/ProcessController/kill_job-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/ProcessController/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/ProcessController/process_controllers_exclusive-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/ProcessController/sfork-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/ProcessController/start_job-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/ProcessController/terminate_job-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/ProcessController/wait_all_jobs_execution-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/ProcessController/waiting_job%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/ProcessController/waiting_jobs-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/ProcessController/waiting_jobs_exist%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/SystemCommand/active%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/SystemCommand/cdesc-SystemCommand.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/SystemCommand/each-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/SystemCommand/flush-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/SystemCommand/input%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/SystemCommand/kill-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/SystemCommand/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/SystemCommand/notify-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/SystemCommand/start-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/SystemCommand/start_export-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/SystemCommand/start_import-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/SystemCommand/terminate-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/SystemCommand/wait%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/Tee/cdesc-Tee.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/Tee/each-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/Tee/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/alias_command-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/cd-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/cd-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/cdesc-Shell.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/chdir-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/debug%3d-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/debug%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/def_system_command-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/expand_path-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/default_record_separator%3d-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/default_record_separator-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/default_system_path%3d-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/default_system_path-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/inspect-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/install_system_commands-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/jobs-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/kill-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/notify-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/popd-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/popdir-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/pushd-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/pushdir-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/system_path%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/unalias_command-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/undef_system_command-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shellwords/cdesc-Shellwords.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shellwords/shellwords-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Signal/cdesc-Signal.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Signal/list-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Signal/trap-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SignalException/cdesc-SignalException.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SimpleDelegator/__getobj__-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SimpleDelegator/__setobj__-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SimpleDelegator/cdesc-SimpleDelegator.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SimpleDelegator/clone-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SimpleDelegator/dup-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SimpleDelegator/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SingleForwardable/cdesc-SingleForwardable.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SingleForwardable/def_delegator-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SingleForwardable/def_delegators-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SingleForwardable/def_singleton_delegator-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SingleForwardable/def_singleton_delegators-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Singleton/_dump-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Singleton/cdesc-Singleton.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Singleton/clone-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Singleton/dup-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SingletonClassMethods/_instantiate%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SingletonClassMethods/_load-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SingletonClassMethods/cdesc-SingletonClassMethods.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SingletonClassMethods/clone-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SingletonClassMethods/inherited-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SizedQueue/%3c%3c-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SizedQueue/cdesc-SizedQueue.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SizedQueue/deq-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SizedQueue/enq-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SizedQueue/max%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SizedQueue/max-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SizedQueue/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SizedQueue/num_waiting-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SizedQueue/pop-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SizedQueue/push-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SizedQueue/shift-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Socket/Constants/cdesc-Constants.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Socket/accept-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Socket/accept_nonblock-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Socket/bind-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Socket/cdesc-Socket.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Socket/connect-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Socket/connect_nonblock-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Socket/getaddrinfo-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Socket/gethostbyname-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Socket/getservbyname-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Socket/listen-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Socket/recvfrom-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Socket/recvfrom_nonblock-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Socket/sysaccept-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SocketError/cdesc-SocketError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SortedSet/cdesc-SortedSet.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/StandardError/cdesc-StandardError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/StrictPrettyExample/cdesc-StrictPrettyExample.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/String/%25-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/String/%2a-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/String/%2b-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/String/%3c%3c-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/String/%3c%3d%3e-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/String/%3d%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/String/%3d%7e-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/String/%5b%5d%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/String/%5b%5d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/String/_expand_ch-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/String/_regex_quote-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/String/block_scanf-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/String/capitalize%21-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/String/capitalize-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/String/casecmp-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/String/cdesc-String.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/String/center-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/String/chomp%21-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/String/chomp-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/String/chop%21-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/String/chop-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/String/concat-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/String/count-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/String/crypt-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/String/delete%21-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/String/delete-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/String/downcase%21-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/String/downcase-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/String/dump-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/String/each-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/String/each_byte-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/String/each_char-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/String/each_line-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/String/empty%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/String/end_regexp-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/String/eql%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/String/expand_ch_hash-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/String/gsub%21-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/String/gsub-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/String/hash-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/String/hex-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/String/include%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/String/index-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/String/initialize_copy-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/String/insert-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/String/inspect-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/String/intern-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/String/is_binary_data%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/String/is_complex_yaml%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/String/iseuc-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/String/issjis-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/String/isutf8-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/String/jcount-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/String/jlength-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/String/jsize-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/String/kconv-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/String/length-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/String/ljust-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/String/lstrip%21-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/String/lstrip-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/String/match-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/String/mbchar%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/String/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/String/next%21-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/String/next-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/String/oct-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/String/original_succ%21-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/String/original_succ-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/String/quote-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/String/replace-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/String/reverse%21-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/String/reverse-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/String/rindex-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/String/rjust-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/String/rstrip%21-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/String/rstrip-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/String/scan-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/String/scanf-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/String/size-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/String/slice%21-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/String/slice-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/String/split-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/String/squeeze%21-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/String/squeeze-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/String/strip%21-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/String/strip-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/String/sub%21-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/String/sub-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/String/succ%21-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/String/succ-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/String/sum-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/String/swapcase%21-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/String/swapcase-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/String/to_f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/String/to_i-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/String/to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/String/to_str-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/String/to_sym-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/String/to_yaml-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/String/toeuc-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/String/tojis-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/String/tosjis-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/String/toutf16-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/String/toutf8-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/String/tr%21-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/String/tr-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/String/tr_s%21-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/String/tr_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/String/unpack-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/String/upcase%21-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/String/upcase-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/String/upto-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/String/yaml_new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/StringIO/%3c%3c-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/StringIO/binmode-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/StringIO/cdesc-StringIO.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/StringIO/close-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/StringIO/close_read-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/StringIO/close_write-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/StringIO/closed%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/StringIO/closed_read%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/StringIO/closed_write%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/StringIO/each-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/StringIO/each_byte-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/StringIO/each_line-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/StringIO/eof%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/StringIO/eof-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/StringIO/fcntl-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/StringIO/fileno-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/StringIO/flush-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/StringIO/fsync-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/StringIO/getc-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/StringIO/gets-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/StringIO/isatty-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/StringIO/length-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/StringIO/lineno%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/StringIO/lineno-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/StringIO/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/StringIO/open-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/StringIO/path-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/StringIO/pid-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/StringIO/pos%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/StringIO/pos-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/StringIO/print-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/StringIO/printf-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/StringIO/putc-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/StringIO/puts-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/StringIO/read-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/StringIO/readchar-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/StringIO/readline-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/StringIO/readlines-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/StringIO/reopen-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/StringIO/rewind-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/StringIO/seek-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/StringIO/size-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/StringIO/string%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/StringIO/string-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/StringIO/sync%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/StringIO/sync-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/StringIO/sysread-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/StringIO/syswrite-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/StringIO/tell-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/StringIO/truncate-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/StringIO/tty%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/StringIO/ungetc-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/StringIO/write-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/StringScanner/Error/cdesc-Error.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/StringScanner/%3c%3c-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/StringScanner/%5b%5d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/StringScanner/beginning_of_line%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/StringScanner/cdesc-StringScanner.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/StringScanner/check-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/StringScanner/check_until-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/StringScanner/clear-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/StringScanner/concat-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/StringScanner/empty%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/StringScanner/eos%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/StringScanner/exist%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/StringScanner/get_byte-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/StringScanner/getbyte-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/StringScanner/getch-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/StringScanner/initialize_copy-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/StringScanner/inspect-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/StringScanner/match%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/StringScanner/matched%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/StringScanner/matched-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/StringScanner/matched_size-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/StringScanner/matchedsize-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/StringScanner/must_C_version-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/StringScanner/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/StringScanner/peek-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/StringScanner/peep-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/StringScanner/pointer%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/StringScanner/pointer-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/StringScanner/pos%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/StringScanner/pos-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/StringScanner/post_match-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/StringScanner/pre_match-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/StringScanner/reset-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/StringScanner/rest%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/StringScanner/rest-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/StringScanner/rest_size-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/StringScanner/restsize-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/StringScanner/scan-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/StringScanner/scan_full-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/StringScanner/skip-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/StringScanner/scan_until-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/StringScanner/search_full-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/StringScanner/skip_until-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/StringScanner/string%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/StringScanner/string-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/StringScanner/terminate-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/StringScanner/unscan-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/BadURIError/cdesc-BadURIError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/Error/cdesc-Error.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/Escape/cdesc-Escape.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/Escape/decode-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/Escape/encode-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/Escape/escape-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/Escape/unescape-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/FTP/build-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/FTP/cdesc-FTP.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/FTP/check_typecode-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/FTP/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/FTP/new2-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/FTP/set_typecode-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/FTP/to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/FTP/typecode%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/Generic/%2b-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/Generic/%2d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/Generic/%3d%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/Generic/absolute%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/Generic/absolute-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/Generic/build-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/Generic/build2-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/Generic/cdesc-Generic.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/Generic/check_fragment-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/Generic/check_host-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/Generic/check_opaque-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/Generic/check_password-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/Generic/check_path-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/Generic/check_port-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/Generic/check_query-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/Generic/check_registry-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/Generic/check_scheme-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/Generic/check_user-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/Generic/check_userinfo-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/Generic/coerce-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/Generic/component-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/Generic/component-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/Generic/component_ary-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/Generic/default_port-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/Generic/default_port-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/Generic/eql%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/Generic/escape_userpass-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/Generic/find_proxy-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/Generic/fragment%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/Generic/hash-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/Generic/hierarchical%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/Generic/host%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/Generic/inspect-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/Generic/merge%21-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/Generic/merge-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/Generic/merge0-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/Generic/merge_path-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/Generic/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/Generic/normalize%21-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/Generic/normalize-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/Generic/opaque%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/Generic/password%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/Generic/password-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/Generic/path%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/Generic/path_query-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/Generic/port%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/Generic/query%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/Generic/registry%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/Generic/relative%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/Generic/replace%21-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/Generic/route_from-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/Generic/route_from0-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/Generic/route_from_path-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/Generic/route_to-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/Generic/scheme%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/Generic/select-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/Generic/set_fragment-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/Generic/set_host-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/Generic/set_opaque-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/Generic/set_password-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/Generic/set_path-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/Generic/set_port-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/Generic/set_query-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/Generic/set_registry-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/Generic/set_scheme-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/Generic/set_user-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/Generic/set_userinfo-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/Generic/split_path-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/Generic/split_userinfo-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/Generic/to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/Generic/use_registry-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/Generic/user%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/Generic/user-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/Generic/userinfo%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/Generic/userinfo-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/HTTP/build-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/HTTP/cdesc-HTTP.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/HTTP/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/HTTP/request_uri-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/HTTPS/cdesc-HTTPS.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/InvalidComponentError/cdesc-InvalidComponentError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/InvalidURIError/cdesc-InvalidURIError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/LDAP/attributes%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/LDAP/attributes-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/LDAP/build-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/LDAP/build_path_query-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/LDAP/cdesc-LDAP.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/LDAP/dn%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/LDAP/dn-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/LDAP/extensions%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/LDAP/extensions-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/LDAP/filter%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/LDAP/filter-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/LDAP/hierarchical%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/LDAP/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/LDAP/parse_dn-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/LDAP/parse_query-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/LDAP/scope%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/LDAP/scope-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/LDAP/set_attributes-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/LDAP/set_dn-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/LDAP/set_extensions-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/LDAP/set_filter-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/LDAP/set_scope-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/MailTo/build-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/MailTo/cdesc-MailTo.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/MailTo/check_headers-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/MailTo/check_to-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/MailTo/headers%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/MailTo/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/MailTo/set_headers-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/MailTo/set_to-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/MailTo/to%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/MailTo/to_mailtext-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/MailTo/to_rfc822text-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/MailTo/to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/REGEXP/PATTERN/cdesc-PATTERN.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/REGEXP/cdesc-REGEXP.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/Util/cdesc-Util.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/cdesc-URI.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/extract-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/join-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/parse-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/regexp-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/split-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Struct/%3d%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Struct/%5b%5d%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Struct/%5b%5d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Struct/cdesc-Struct.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Struct/each-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Struct/each_pair-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Struct/eql%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Struct/hash-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Struct/inspect-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Struct/length-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Struct/members-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Struct/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Struct/pretty_print-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Struct/pretty_print_cycle-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Struct/select-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Struct/size-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Struct/to_a-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Struct/to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Struct/to_yaml-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Struct/values-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Struct/values_at-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Struct/yaml_new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Struct/yaml_tag_class_name-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Struct/yaml_tag_read_class-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Symbol/%3d%3d%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Symbol/all_symbols-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Symbol/cdesc-Symbol.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Symbol/dclone-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Symbol/id2name-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Symbol/inspect-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Symbol/to_i-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Symbol/to_int-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Symbol/to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Symbol/to_sym-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Symbol/to_yaml-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Symbol/yaml_new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Sync/cdesc-Sync.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Sync/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SyncEnumerator/cdesc-SyncEnumerator.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SyncEnumerator/each-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SyncEnumerator/end%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SyncEnumerator/length-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SyncEnumerator/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SyncEnumerator/size-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Sync_m/Err/LockModeFailer/Fail-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Sync_m/Err/LockModeFailer/cdesc-LockModeFailer.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Sync_m/Err/UnknownLocker/Fail-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Sync_m/Err/UnknownLocker/cdesc-UnknownLocker.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Sync_m/Err/Fail-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Sync_m/Err/cdesc-Err.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Sync_m/append_features-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Sync_m/cdesc-Sync_m.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Sync_m/define_aliases-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Sync_m/extend_object-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Sync_m/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Sync_m/sync_exclusive%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Sync_m/sync_extended-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Sync_m/sync_initialize-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Sync_m/sync_lock-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Sync_m/sync_locked%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Sync_m/sync_shared%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Sync_m/sync_synchronize-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Sync_m/sync_try_lock-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Sync_m/sync_try_lock_sub-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Sync_m/sync_unlock-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SyntaxError/cdesc-SyntaxError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SystemCallError/%3d%3d%3d-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SystemCallError/cdesc-SystemCallError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SystemCallError/errno-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SystemCallError/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SystemExit/cdesc-SystemExit.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SystemExit/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SystemExit/status-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SystemExit/success%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SystemStackError/cdesc-SystemStackError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/TCPServer/accept_nonblock-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/TCPServer/cdesc-TCPServer.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/TCPServer/listen-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/TCPSocket/cdesc-TCPSocket.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/TCPSocket/gethostbyname-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/TCPSocket/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/TSort/Cyclic/cdesc-Cyclic.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/TSort/cdesc-TSort.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/TSort/each_strongly_connected_component-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/TSort/each_strongly_connected_component_from-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/TSort/strongly_connected_components-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/TSort/tsort-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/TSort/tsort_each-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/TSort/tsort_each_child-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/TSort/tsort_each_node-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/TSortArray/cdesc-TSortArray.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/TSortHash/cdesc-TSortHash.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/TSortTest/cdesc-TSortTest.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/TailGroup/cdesc-TailGroup.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Tempfile/cdesc-Tempfile.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Tempfile/close%21-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Tempfile/close-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Tempfile/delete-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Tempfile/length-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Tempfile/make_tmpname-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Tempfile/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Tempfile/open-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Tempfile/open-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Tempfile/path-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Tempfile/size-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Tempfile/unlink-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/TemplatePage/Context/cdesc-Context.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/TemplatePage/Context/find_scalar-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/TemplatePage/Context/lookup-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/TemplatePage/Context/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/TemplatePage/Context/pop-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/TemplatePage/Context/push-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/TemplatePage/LineReader/cdesc-LineReader.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/TemplatePage/LineReader/dup-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/TemplatePage/LineReader/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/TemplatePage/LineReader/read-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/TemplatePage/LineReader/read_up_to-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/TemplatePage/cdesc-TemplatePage.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/TemplatePage/expand_line-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/TemplatePage/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/TemplatePage/substitute_into-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/TemplatePage/write_html_on-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/AssertionFailedError/cdesc-AssertionFailedError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/Assertions/_wrap_assertion-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/Assertions/add_assertion-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/Assertions/assert-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/Assertions/assert_block-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/Assertions/assert_equal-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/Assertions/assert_in_delta-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/Assertions/assert_instance_of-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/Assertions/assert_kind_of-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/Assertions/assert_match-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/Assertions/assert_nil-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/Assertions/assert_no_match-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/Assertions/assert_not_equal-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/Assertions/assert_not_nil-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/Assertions/assert_not_same-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/Assertions/assert_nothing_raised-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/Assertions/assert_nothing_thrown-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/Assertions/assert_operator-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/Assertions/assert_raise-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/Assertions/assert_raises-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/Assertions/assert_respond_to-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/Assertions/assert_same-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/Assertions/assert_send-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/Assertions/assert_throws-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/Assertions/build_message-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/Assertions/cdesc-Assertions.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/Assertions/flunk-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/Assertions/use_pp%3d-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/AutoRunner/cdesc-AutoRunner.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/AutoRunner/run-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/AutoRunner/standalone%3f-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/Collector/Dir/cdesc-Dir.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/Collector/Dir/collect-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/Collector/Dir/collect_file-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/Collector/Dir/find_test_cases-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/Collector/Dir/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/Collector/Dir/realdir-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/Collector/Dir/recursive_collect-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/Collector/ObjectSpace/cdesc-ObjectSpace.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/Collector/ObjectSpace/collect-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/Collector/ObjectSpace/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/Collector/add_suite-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/Collector/cdesc-Collector.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/Collector/filter%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/Collector/include%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/Collector/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/Collector/sort-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/Error/cdesc-Error.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/Error/long_display-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/Error/message-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/Error/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/Error/short_display-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/Error/single_character_display-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/Error/to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/Failure/cdesc-Failure.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/Failure/long_display-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/Failure/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/Failure/short_display-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/Failure/single_character_display-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/Failure/to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/TestCase/%3d%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/TestCase/add_assertion-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/TestCase/add_error-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/TestCase/add_failure-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/TestCase/cdesc-TestCase.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/TestCase/default_test-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/TestCase/name-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/TestCase/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/TestCase/passed%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/TestCase/run-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/TestCase/setup-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/TestCase/size-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/TestCase/suite-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/TestCase/teardown-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/TestCase/to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/TestResult/add_assertion-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/TestResult/add_error-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/TestResult/add_failure-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/TestResult/add_run-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/TestResult/cdesc-TestResult.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/TestResult/error_count-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/TestResult/failure_count-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/TestResult/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/TestResult/passed%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/TestResult/to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/TestSuite/%3c%3c-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/TestSuite/%3d%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/TestSuite/cdesc-TestSuite.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/TestSuite/delete-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/TestSuite/empty%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/TestSuite/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/TestSuite/run-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/TestSuite/size-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/TestSuite/to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/Console/TestRunner/add_fault-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/Console/TestRunner/attach_to_mediator-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/Console/TestRunner/cdesc-TestRunner.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/Console/TestRunner/create_mediator-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/Console/TestRunner/finished-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/Console/TestRunner/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/Console/TestRunner/nl-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/Console/TestRunner/output%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/Console/TestRunner/output-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/Console/TestRunner/output_single-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/Console/TestRunner/setup_mediator-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/Console/TestRunner/start-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/Console/TestRunner/start_mediator-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/Console/TestRunner/started-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/Console/TestRunner/test_finished-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/Console/TestRunner/test_started-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/Console/cdesc-Console.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/Fox/FaultListItem/cdesc-FaultListItem.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/Fox/FaultListItem/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/Fox/TestRunner/add_fault-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/Fox/TestRunner/attach_to_mediator-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/Fox/TestRunner/cdesc-TestRunner.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/Fox/TestRunner/clear_fault-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/Fox/TestRunner/create_application-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/Fox/TestRunner/create_button-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/Fox/TestRunner/create_detail_panel-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/Fox/TestRunner/create_entry-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/Fox/TestRunner/create_fault_list-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/Fox/TestRunner/create_info_panel-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/Fox/TestRunner/create_label-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/Fox/TestRunner/create_list_panel-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/Fox/TestRunner/create_main_panel-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/Fox/TestRunner/create_progress_bar-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/Fox/TestRunner/finished-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/Fox/TestRunner/create_suite_panel-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/Fox/TestRunner/create_text-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/Fox/TestRunner/create_tooltip-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/Fox/TestRunner/create_window-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/Fox/TestRunner/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/Fox/TestRunner/output_status-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/Fox/TestRunner/raw_show_fault-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/Fox/TestRunner/reset_ui-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/Fox/TestRunner/result_changed-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/Fox/TestRunner/setup_mediator-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/Fox/TestRunner/setup_ui-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/Fox/TestRunner/show_fault-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/Fox/TestRunner/start-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/Fox/TestRunner/start_ui-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/Fox/TestRunner/started-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/Fox/TestRunner/stop-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/Fox/TestRunner/test_started-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/Fox/cdesc-Fox.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/GTK/EnhancedLabel/cdesc-EnhancedLabel.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/GTK/EnhancedLabel/set_text-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/GTK/EnhancedProgressBar/cdesc-EnhancedProgressBar.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/GTK/EnhancedProgressBar/set_style-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/GTK/FaultListItem/cdesc-FaultListItem.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/GTK/FaultListItem/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/GTK/TestRunner/add_fault-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/GTK/TestRunner/assertion_count_label-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/GTK/TestRunner/attach_to_mediator-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/GTK/TestRunner/cdesc-TestRunner.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/GTK/TestRunner/clear_fault-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/GTK/TestRunner/detail_panel-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/GTK/TestRunner/detail_scrolled_window-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/GTK/TestRunner/error_count_label-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/GTK/TestRunner/failure_count_label-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/GTK/TestRunner/fault_detail_label-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/GTK/TestRunner/fault_list-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/GTK/TestRunner/finished-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/GTK/TestRunner/green_style-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/GTK/TestRunner/info_panel-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/GTK/TestRunner/inner_detail_sub_panel-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/GTK/TestRunner/lazy_initialize-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/GTK/TestRunner/list_panel-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/GTK/TestRunner/list_scrolled_window-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/GTK/TestRunner/main_panel-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/GTK/TestRunner/main_window-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/GTK/TestRunner/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/GTK/TestRunner/outer_detail_sub_panel-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/GTK/TestRunner/output_status-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/GTK/TestRunner/progress_panel-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/GTK/TestRunner/raw_show_fault-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/GTK/TestRunner/red_style-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/GTK/TestRunner/reset_ui-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/GTK/TestRunner/result_changed-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/GTK/TestRunner/run_button-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/GTK/TestRunner/run_count_label-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/GTK/TestRunner/run_test-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/GTK/TestRunner/setup_mediator-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/GTK/TestRunner/setup_ui-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/GTK/TestRunner/show_fault-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/GTK/TestRunner/start-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/GTK/TestRunner/start_ui-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/GTK/TestRunner/started-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/GTK/TestRunner/status_entry-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/GTK/TestRunner/status_panel-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/GTK/TestRunner/stop-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/GTK/TestRunner/suite_name_entry-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/GTK/TestRunner/suite_panel-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/GTK/TestRunner/test_finished-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/GTK/TestRunner/test_progress_bar-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/GTK/TestRunner/test_started-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/GTK/cdesc-GTK.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/GTK2/EnhancedLabel/cdesc-EnhancedLabel.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/GTK2/EnhancedLabel/set_text-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/GTK2/FaultList/add_fault-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/GTK2/FaultList/cdesc-FaultList.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/GTK2/FaultList/clear-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/GTK2/FaultList/get_fault-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/GTK2/FaultList/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/GTK2/TestRunner/add_fault-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/GTK2/TestRunner/assertion_count_label-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/GTK2/TestRunner/attach_to_mediator-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/GTK2/TestRunner/cdesc-TestRunner.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/GTK2/TestRunner/clear_fault-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/GTK2/TestRunner/detail_panel-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/GTK2/TestRunner/detail_scrolled_window-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/GTK2/TestRunner/error_count_label-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/GTK2/TestRunner/failure_count_label-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/GTK2/TestRunner/fault_detail_label-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/GTK2/TestRunner/fault_list-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/GTK2/TestRunner/finished-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/GTK2/TestRunner/green_style-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/GTK2/TestRunner/info_panel-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/GTK2/TestRunner/inner_detail_sub_panel-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/GTK2/TestRunner/lazy_initialize-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/GTK2/TestRunner/list_panel-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/GTK2/TestRunner/list_scrolled_window-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/GTK2/TestRunner/main_panel-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/GTK2/TestRunner/main_window-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/GTK2/TestRunner/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/GTK2/TestRunner/outer_detail_sub_panel-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/GTK2/TestRunner/output_status-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/GTK2/TestRunner/progress_panel-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/GTK2/TestRunner/raw_show_fault-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/GTK2/TestRunner/red_style-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/GTK2/TestRunner/reset_ui-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/GTK2/TestRunner/result_changed-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/GTK2/TestRunner/run_button-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/GTK2/TestRunner/run_count_label-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/GTK2/TestRunner/run_test-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/GTK2/TestRunner/setup_mediator-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/GTK2/TestRunner/setup_ui-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/GTK2/TestRunner/show_fault-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/GTK2/TestRunner/start-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/GTK2/TestRunner/start_ui-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/GTK2/TestRunner/started-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/GTK2/TestRunner/status_entry-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/GTK2/TestRunner/status_panel-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/GTK2/TestRunner/stop-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/GTK2/TestRunner/suite_name_entry-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/GTK2/TestRunner/suite_panel-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/GTK2/TestRunner/test_finished-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/GTK2/TestRunner/test_progress_bar-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/GTK2/TestRunner/test_started-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/GTK2/cdesc-GTK2.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/TestRunnerMediator/cdesc-TestRunnerMediator.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/TestRunnerMediator/create_result-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/TestRunnerMediator/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/TestRunnerMediator/run_suite-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/TestRunnerUtilities/cdesc-TestRunnerUtilities.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/TestRunnerUtilities/run-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/TestRunnerUtilities/start_command_line_test-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/Tk/TestRunner/add_fault-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/Tk/TestRunner/attach_to_mediator-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/Tk/TestRunner/cdesc-TestRunner.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/Tk/TestRunner/clear_fault-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/Tk/TestRunner/create_count_label-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/Tk/TestRunner/finished-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/Tk/TestRunner/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/Tk/TestRunner/output_status-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/Tk/TestRunner/raw_show_fault-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/Tk/TestRunner/reset_ui-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/Tk/TestRunner/result_changed-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/Tk/TestRunner/run_test-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/Tk/TestRunner/setup_mediator-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/Tk/TestRunner/setup_ui-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/Tk/TestRunner/show_fault-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/Tk/TestRunner/start-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/Tk/TestRunner/start_ui-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/Tk/TestRunner/started-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/Tk/TestRunner/stop-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/Tk/TestRunner/test_started-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/Tk/cdesc-Tk.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/cdesc-UI.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/Util/BacktraceFilter/cdesc-BacktraceFilter.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/Util/BacktraceFilter/filter_backtrace-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/Util/Observable/add_listener-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/Util/Observable/cdesc-Observable.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/Util/Observable/channels-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/Util/Observable/notify_listeners-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/Util/Observable/remove_listener-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/Util/ProcWrapper/%3d%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/Util/ProcWrapper/cdesc-ProcWrapper.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/Util/ProcWrapper/eql%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/Util/ProcWrapper/hash-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/Util/ProcWrapper/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/Util/ProcWrapper/to_proc-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/Util/cdesc-Util.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/cdesc-Unit.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/run%3d-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/run%3f-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/cdesc-Test.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Thread/%5b%5d%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Thread/%5b%5d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Thread/abort_on_exception%3d-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Thread/abort_on_exception%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Thread/abort_on_exception-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Thread/abort_on_exception-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Thread/alive%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Thread/cdesc-Thread.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Thread/critical%3d-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Thread/critical-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Thread/current-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Thread/exclusive-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Thread/exit%21-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Thread/exit-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Thread/exit-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Thread/fork-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Thread/group-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Thread/join-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Thread/inspect-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Thread/key%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Thread/keys-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Thread/kill%21-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Thread/kill-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Thread/kill-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Thread/list-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Thread/main-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Thread/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Thread/pass-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Thread/priority%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Thread/priority-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Thread/raise-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Thread/run-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Thread/safe_level-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Thread/start-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Thread/status-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Thread/stop%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Thread/stop-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Thread/terminate%21-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Thread/terminate-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Thread/value-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Thread/wakeup-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/ThreadError/cdesc-ThreadError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/ThreadGroup/add-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/ThreadGroup/cdesc-ThreadGroup.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/ThreadGroup/enclose-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/ThreadGroup/enclosed%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/ThreadGroup/list-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/ThreadsWait/all_waits-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/ThreadsWait/all_waits-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/ThreadsWait/cdesc-ThreadsWait.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/ThreadsWait/empty%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/ThreadsWait/finished%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/ThreadsWait/join-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/ThreadsWait/join_nowait-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/ThreadsWait/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/ThreadsWait/next_wait-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Time/%2b-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Time/%2d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Time/%3c%3d%3e-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Time/_dump-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Time/_load-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Time/apply_offset-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Time/asctime-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Time/at-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Time/cdesc-Time.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Time/ctime-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Time/day-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Time/dst%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Time/eql%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Time/getgm-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Time/getlocal-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Time/getutc-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Time/gm-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Time/gmt%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Time/gmt_offset-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Time/gmtime-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Time/gmtoff-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Time/hash-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Time/hour-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Time/httpdate-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Time/httpdate-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Time/inspect-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Time/isdst-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Time/iso8601-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Time/local-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Time/localtime-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Time/make_time-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Time/marshal_dump-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Time/marshal_load-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Time/mday-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Time/min-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Time/mktime-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Time/mon-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Time/month-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Time/month_days-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Time/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Time/now-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Time/parse-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Time/rfc2822-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Time/rfc2822-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Time/rfc822-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Time/sec-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Time/strftime-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Time/succ-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Time/times-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Time/to_a-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Time/to_date-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Time/to_datetime-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Time/to_f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Time/to_i-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Time/to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Time/to_yaml-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Time/tv_sec-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Time/tv_usec-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Time/usec-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Time/utc%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Time/utc-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Time/utc-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Time/utc_offset-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Time/w3cdtf-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Time/wday-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Time/xmlschema-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Time/xmlschema-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Time/yaml_new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Time/yday-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Time/year-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Time/zone-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Time/zone_offset-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Time/zone_utc%3f-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/TimeExtentionTest/cdesc-TimeExtentionTest.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Timeout/Error/cdesc-Error.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Timeout/cdesc-Timeout.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Timeout/timeout-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/TokenStream/add_token-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/TokenStream/add_tokens-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/TokenStream/cdesc-TokenStream.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/TokenStream/pop_token-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/TokenStream/start_collecting_tokens-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/TokenStream/token_stream-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Tracer/add_filter-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Tracer/add_filter-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Tracer/cdesc-Tracer.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Tracer/get_line-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Tracer/get_thread_no-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Tracer/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Tracer/off-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Tracer/off-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Tracer/on-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Tracer/on-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Tracer/set_get_line_procs-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Tracer/set_get_line_procs-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Tracer/stdout-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Tracer/trace_func-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Tracer/trace_func-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/TrueClass/%26-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/TrueClass/%5e-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/TrueClass/%7c-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/TrueClass/cdesc-TrueClass.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/TrueClass/to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/TrueClass/to_yaml-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/TruncatedDataError/cdesc-TruncatedDataError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/TypeError/cdesc-TypeError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/UDPSocket/bind-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/UDPSocket/cdesc-UDPSocket.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/UDPSocket/connect-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/UDPSocket/recvfrom_nonblock-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/UDPSocket/send-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/UNIXServer/accept_nonblock-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/UNIXServer/cdesc-UNIXServer.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/UNIXServer/listen-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/UNIXSocket/cdesc-UNIXSocket.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/UnboundMethod/%3d%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/UnboundMethod/arity-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/UnboundMethod/bind-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/UnboundMethod/cdesc-UnboundMethod.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/UnboundMethod/clone-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/UnboundMethod/inspect-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/UnboundMethod/to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Vector/%2a-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Vector/%2b-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Vector/%2d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Vector/%3d%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Vector/%5b%5d-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Vector/%5b%5d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Vector/cdesc-Vector.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Vector/clone-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Vector/coerce-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Vector/collect-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Vector/collect2-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Vector/compare_by-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Vector/covector-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Vector/each2-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Vector/elements-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Vector/eqn%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Vector/hash-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Vector/init_elements-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Vector/inner_product-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Vector/inspect-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Vector/map-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Vector/map2-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Vector/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Vector/r-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Vector/size-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Vector/to_a-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Vector/to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/AccessLog/AccessLogError/cdesc-AccessLogError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/AccessLog/cdesc-AccessLog.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/AccessLog/format-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/AccessLog/setup_params-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/BasicLog/%3c%3c-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/BasicLog/cdesc-BasicLog.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/BasicLog/close-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/BasicLog/debug%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/BasicLog/debug-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/BasicLog/error%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/BasicLog/error-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/BasicLog/fatal%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/BasicLog/fatal-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/BasicLog/format-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/BasicLog/info%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/BasicLog/info-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/BasicLog/log-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/BasicLog/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/BasicLog/warn%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/BasicLog/warn-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/CGI/Socket/%3c%3c-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/CGI/Socket/add_header-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/CGI/Socket/addr-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/CGI/Socket/cdesc-Socket.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/CGI/Socket/cert-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/CGI/Socket/cipher-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/CGI/Socket/each-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/CGI/Socket/gets-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/CGI/Socket/input-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/CGI/Socket/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/CGI/Socket/peer_cert-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/CGI/Socket/peer_cert_chain-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/CGI/Socket/peeraddr-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/CGI/Socket/read-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/CGI/Socket/request_line-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/CGI/Socket/setup_header-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/CGI/%5b%5d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/CGI/cdesc-CGI.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/CGI/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/CGI/service-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/CGI/start-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/Config/cdesc-Config.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/Cookie/cdesc-Cookie.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/Cookie/expires%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/Cookie/expires-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/Cookie/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/Cookie/parse-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/Cookie/parse_set_cookie-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/Cookie/parse_set_cookies-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/Cookie/to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/Daemon/cdesc-Daemon.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/Daemon/start-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/GenericServer/%5b%5d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/GenericServer/accept_client-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/GenericServer/call_callback-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/GenericServer/cdesc-GenericServer.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/GenericServer/listen-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/GenericServer/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/GenericServer/run-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/GenericServer/setup_ssl_context-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/GenericServer/shutdown-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/GenericServer/ssl_context-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/GenericServer/start-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/GenericServer/start_thread-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/GenericServer/stop-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTMLUtils/cdesc-HTMLUtils.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTMLUtils/escape-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPAuth/Authenticator/cdesc-Authenticator.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPAuth/Authenticator/check_init-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPAuth/Authenticator/check_scheme-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPAuth/Authenticator/error-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPAuth/Authenticator/info-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPAuth/Authenticator/log-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPAuth/BasicAuth/authenticate-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPAuth/BasicAuth/cdesc-BasicAuth.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPAuth/BasicAuth/challenge-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPAuth/BasicAuth/make_passwd-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPAuth/BasicAuth/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPAuth/DigestAuth/_authenticate-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPAuth/DigestAuth/authenticate-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPAuth/DigestAuth/cdesc-DigestAuth.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPAuth/DigestAuth/challenge-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPAuth/DigestAuth/check_nonce-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPAuth/DigestAuth/check_opaque-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPAuth/DigestAuth/check_uri-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPAuth/DigestAuth/generate_next_nonce-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPAuth/DigestAuth/generate_opaque-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPAuth/DigestAuth/hexdigest-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPAuth/DigestAuth/make_passwd-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPAuth/DigestAuth/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPAuth/DigestAuth/split_param_value-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPAuth/Htdigest/cdesc-Htdigest.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPAuth/Htdigest/delete_passwd-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPAuth/Htdigest/each-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPAuth/Htdigest/flush-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPAuth/Htdigest/get_passwd-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPAuth/Htdigest/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPAuth/Htdigest/reload-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPAuth/Htdigest/set_passwd-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPAuth/Htgroup/add-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPAuth/Htgroup/cdesc-Htgroup.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPAuth/Htgroup/flush-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPAuth/Htgroup/members-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPAuth/Htgroup/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPAuth/Htgroup/reload-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPAuth/Htpasswd/cdesc-Htpasswd.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPAuth/Htpasswd/delete_passwd-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPAuth/Htpasswd/each-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPAuth/Htpasswd/flush-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPAuth/Htpasswd/get_passwd-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPAuth/Htpasswd/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPAuth/Htpasswd/reload-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPAuth/Htpasswd/set_passwd-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPAuth/ProxyAuthenticator/cdesc-ProxyAuthenticator.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPAuth/ProxyBasicAuth/cdesc-ProxyBasicAuth.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPAuth/ProxyDigestAuth/cdesc-ProxyDigestAuth.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPAuth/ProxyDigestAuth/check_uri-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPAuth/UserDB/cdesc-UserDB.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPAuth/UserDB/get_passwd-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPAuth/UserDB/make_passwd-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPAuth/UserDB/set_passwd-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPAuth/_basic_auth-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPAuth/basic_auth-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPAuth/cdesc-HTTPAuth.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPAuth/proxy_basic_auth-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPProxyServer/cdesc-HTTPProxyServer.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPProxyServer/choose_header-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPProxyServer/do_OPTIONS-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPProxyServer/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPProxyServer/proxy_auth-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPProxyServer/proxy_connect-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPProxyServer/proxy_service-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPProxyServer/proxy_uri-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPProxyServer/service-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPProxyServer/set_cookie-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPProxyServer/set_via-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPProxyServer/split_field-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPRequest/%5b%5d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPRequest/_read_data-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPRequest/body-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPRequest/cdesc-HTTPRequest.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPRequest/content_length-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPRequest/content_type-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPRequest/each-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPRequest/fixup-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPRequest/keep_alive%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPRequest/meta_vars-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPRequest/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPRequest/orig_meta_vars-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPRequest/orig_parse-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPRequest/orig_parse_uri-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPRequest/parse-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPRequest/parse_query-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPRequest/parse_uri-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPRequest/query-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPRequest/read_body-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPRequest/read_chunk_size-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPRequest/read_chunked-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPRequest/read_data-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPRequest/read_header-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPRequest/read_line-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPRequest/read_request_line-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPRequest/to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPResponse/%5b%5d%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPResponse/%5b%5d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPResponse/_send_file-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPResponse/_write_data-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPResponse/cdesc-HTTPResponse.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPResponse/chunked%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPResponse/chunked%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPResponse/content_length%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPResponse/content_length-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPResponse/content_type%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPResponse/content_type-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPResponse/each-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPResponse/keep_alive%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPResponse/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPResponse/send_body-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPResponse/send_body_io-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPResponse/send_body_string-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPResponse/send_header-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPResponse/send_response-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPResponse/set_error-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPResponse/set_redirect-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPResponse/setup_header-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPResponse/status%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPResponse/status_line-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPResponse/to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPServer/MountTable/%5b%5d%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPServer/MountTable/%5b%5d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPServer/MountTable/cdesc-MountTable.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPServer/MountTable/compile-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPServer/MountTable/delete-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPServer/MountTable/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPServer/MountTable/normalize-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPServer/MountTable/scan-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPServer/access_log-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPServer/cdesc-HTTPServer.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPServer/do_OPTIONS-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPServer/lookup_server-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPServer/mount-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPServer/mount_proc-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPServer/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPServer/run-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPServer/search_servlet-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPServer/service-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPServer/umount-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPServer/unmount-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPServer/virtual_host-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPServerError/cdesc-HTTPServerError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPServlet/AbstractServlet/cdesc-AbstractServlet.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPServlet/AbstractServlet/do_GET-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPServlet/AbstractServlet/do_HEAD-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPServlet/AbstractServlet/do_OPTIONS-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPServlet/AbstractServlet/get_instance-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPServlet/AbstractServlet/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPServlet/AbstractServlet/redirect_to_directory_uri-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPServlet/AbstractServlet/service-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPServlet/CGIHandler/cdesc-CGIHandler.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPServlet/CGIHandler/do_GET-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPServlet/CGIHandler/do_POST-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPServlet/CGIHandler/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPServlet/DefaultFileHandler/cdesc-DefaultFileHandler.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPServlet/DefaultFileHandler/do_GET-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPServlet/DefaultFileHandler/make_partial_content-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPServlet/DefaultFileHandler/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPServlet/DefaultFileHandler/not_modified%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPServlet/DefaultFileHandler/prepare_range-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPServlet/ERBHandler/cdesc-ERBHandler.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPServlet/ERBHandler/do_GET-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPServlet/ERBHandler/do_POST-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPServlet/ERBHandler/evaluate-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPServlet/ERBHandler/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPServlet/FileHandler/add_handler-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPServlet/FileHandler/call_callback-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPServlet/FileHandler/cdesc-FileHandler.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPServlet/FileHandler/check_filename-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPServlet/FileHandler/do_GET-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPServlet/FileHandler/do_OPTIONS-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPServlet/FileHandler/do_POST-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPServlet/FileHandler/exec_handler-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPServlet/FileHandler/get_handler-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPServlet/FileHandler/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPServlet/FileHandler/nondisclosure_name%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPServlet/FileHandler/remove_handler-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPServlet/FileHandler/search_file-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPServlet/FileHandler/search_index_file-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPServlet/FileHandler/service-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPServlet/FileHandler/set_dir_list-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPServlet/FileHandler/set_filename-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPServlet/FileHandler/shift_path_info-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPServlet/HTTPServletError/cdesc-HTTPServletError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPServlet/ProcHandler/cdesc-ProcHandler.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPServlet/ProcHandler/do_GET-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPServlet/ProcHandler/do_POST-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPServlet/ProcHandler/get_instance-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPServlet/ProcHandler/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPServlet/cdesc-HTTPServlet.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPStatus/ClientError/cdesc-ClientError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPStatus/EOFError/cdesc-EOFError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPStatus/Error/cdesc-Error.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPStatus/Info/cdesc-Info.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPStatus/Redirect/cdesc-Redirect.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPStatus/ServerError/cdesc-ServerError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPStatus/Status/cdesc-Status.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPStatus/Success/cdesc-Success.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPStatus/%5b%5d-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPStatus/cdesc-HTTPStatus.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPStatus/client_error%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPStatus/error%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPStatus/info%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPStatus/reason_phrase-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPStatus/redirect%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPStatus/server_error%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPStatus/success%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPUtils/FormData/%3c%3c-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPUtils/FormData/%5b%5d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPUtils/FormData/append_data-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPUtils/FormData/cdesc-FormData.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPUtils/FormData/each_data-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPUtils/FormData/list-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPUtils/FormData/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPUtils/FormData/to_ary-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPUtils/FormData/to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPUtils/_escape-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPUtils/_make_regex%21-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPUtils/_make_regex-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPUtils/_unescape-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPUtils/cdesc-HTTPUtils.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPUtils/dequote-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPUtils/escape-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPUtils/escape8bit-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPUtils/escape_form-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPUtils/escape_path-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPUtils/load_mime_types-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPUtils/mime_type-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPUtils/normalize_path-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPUtils/parse_form_data-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPUtils/parse_header-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPUtils/parse_query-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPUtils/parse_qvalues-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPUtils/parse_range_header-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPUtils/quote-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPUtils/split_header_value-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPUtils/unescape-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPUtils/unescape_form-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPVersion/%3c%3d%3e-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPVersion/cdesc-HTTPVersion.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPVersion/convert-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPVersion/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPVersion/to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/Log/cdesc-Log.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/Log/debug-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/Log/log-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/Log/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/ServerError/cdesc-ServerError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/SimpleServer/cdesc-SimpleServer.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/SimpleServer/start-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/Utils/cdesc-Utils.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/Utils/create_listeners-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/Utils/create_self_signed_cert-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/Utils/getservername-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/Utils/random_string-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/Utils/set_close_on_exec-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/Utils/set_non_blocking-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/Utils/su-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/cdesc-WEBrick.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Binding/cdesc-Binding.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Binding/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Binding/parse_attr-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Binding/parse_element-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Binding/targetnamespace-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Definitions/add_type-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Definitions/array_complextype-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Definitions/binding-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Definitions/bindings-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Definitions/cdesc-Definitions.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Definitions/collect_attributes-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Definitions/collect_complextypes-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Definitions/collect_elements-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Definitions/collect_fault_messages-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Definitions/collect_faulttypes-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Definitions/collect_simpletypes-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Definitions/elements_from_message-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Definitions/exception_complextype-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Definitions/fault_complextype-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Definitions/inspect-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Definitions/message-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Definitions/messages-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Definitions/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Definitions/op_bind_rpc%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Definitions/parse_attr-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Definitions/parse_element-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Definitions/parse_element-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Definitions/porttype-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Definitions/porttype_binding-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Definitions/porttypes-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Definitions/rpc_operation_complextypes-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Definitions/service-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Definitions/services-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Definitions/soap_rpc_complextypes-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Definitions/soap_rpc_complextypes-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Definitions/targetnamespace%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Documentation/cdesc-Documentation.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Documentation/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Documentation/parse_attr-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Documentation/parse_element-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Error/cdesc-Error.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Import/cdesc-Import.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Import/import-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Import/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Import/parse_attr-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Import/parse_element-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Importer/cdesc-Importer.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Importer/import-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Importer/parse-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Info/cdesc-Info.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Info/inspect-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Info/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Info/parse_attr-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Info/parse_element-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Info/parse_epilogue-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Message/cdesc-Message.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Message/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Message/parse_attr-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Message/parse_element-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Message/targetnamespace-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Operation/NameInfo/cdesc-NameInfo.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Operation/NameInfo/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Operation/cdesc-Operation.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Operation/input_info-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Operation/inputname-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Operation/inputparts-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Operation/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Operation/output_info-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Operation/outputname-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Operation/outputparts-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Operation/parse_attr-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Operation/parse_element-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Operation/sort_parts-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Operation/targetnamespace-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/OperationBinding/cdesc-OperationBinding.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/OperationBinding/find_operation-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/OperationBinding/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/OperationBinding/parse_attr-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/OperationBinding/parse_element-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/OperationBinding/porttype-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/OperationBinding/soapaction-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/OperationBinding/soapoperation_name-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/OperationBinding/soapoperation_style-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/OperationBinding/targetnamespace-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Param/cdesc-Param.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Param/find_message-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Param/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Param/parse_attr-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Param/parse_element-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Param/soapbody_use-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Param/targetnamespace-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Parser/AttributeConstraintError/cdesc-AttributeConstraintError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Parser/ElementConstraintError/cdesc-ElementConstraintError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Parser/FormatDecodeError/cdesc-FormatDecodeError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Parser/ParseError/cdesc-ParseError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Parser/ParseFrame/cdesc-ParseFrame.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Parser/ParseFrame/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Parser/UnexpectedElementError/cdesc-UnexpectedElementError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Parser/UnknownAttributeError/cdesc-UnknownAttributeError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Parser/UnknownElementError/cdesc-UnknownElementError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Parser/cdesc-Parser.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Parser/characters-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Parser/charset-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Parser/decode_tag-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Parser/decode_tag_end-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Parser/decode_text-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Parser/end_element-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Parser/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Parser/parse-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Parser/start_element-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Part/cdesc-Part.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Part/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Part/parse_attr-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Part/parse_element-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Port/cdesc-Port.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Port/find_binding-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Port/inputoperation_map-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Port/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Port/outputoperation_map-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Port/parse_attr-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Port/parse_element-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Port/porttype-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Port/targetnamespace-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/PortType/cdesc-PortType.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/PortType/find_binding-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/PortType/locations-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/PortType/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/PortType/parse_attr-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/PortType/parse_element-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/PortType/targetnamespace-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/Address/cdesc-Address.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/Address/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/Address/parse_attr-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/Address/parse_element-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/Binding/cdesc-Binding.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/Binding/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/Binding/parse_attr-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/Binding/parse_element-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/Body/cdesc-Body.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/Body/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/Body/parse_attr-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/Body/parse_element-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/CGIStubCreator/cdesc-CGIStubCreator.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/CGIStubCreator/dump-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/CGIStubCreator/dump_porttype-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/CGIStubCreator/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/ClassDefCreator/attribute_basetype-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/ClassDefCreator/basetype_class-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/ClassDefCreator/cdesc-ClassDefCreator.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/ClassDefCreator/define_attribute-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/ClassDefCreator/dump-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/ClassDefCreator/dump_arraydef-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/ClassDefCreator/dump_classdef-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/ClassDefCreator/dump_complextype-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/ClassDefCreator/dump_element-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/ClassDefCreator/dump_simpleclassdef-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/ClassDefCreator/dump_simpletype-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/ClassDefCreator/dump_simpletypedef-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/ClassDefCreator/element_basetype-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/ClassDefCreator/name_attribute-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/ClassDefCreator/name_element-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/ClassDefCreator/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/ClassDefCreatorSupport/add_at-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/ClassDefCreatorSupport/basetype_mapped_class-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/ClassDefCreatorSupport/cdesc-ClassDefCreatorSupport.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/ClassDefCreatorSupport/create_class_name-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/ClassDefCreatorSupport/dq-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/ClassDefCreatorSupport/dqname-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/ClassDefCreatorSupport/dump_inout_type-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/ClassDefCreatorSupport/dump_inputparam-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/ClassDefCreatorSupport/dump_method_signature-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/ClassDefCreatorSupport/ndq-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/ClassDefCreatorSupport/sym-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/ClientSkeltonCreator/cdesc-ClientSkeltonCreator.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/ClientSkeltonCreator/dump-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/ClientSkeltonCreator/dump_input_init-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/ClientSkeltonCreator/dump_operation-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/ClientSkeltonCreator/dump_porttype-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/ClientSkeltonCreator/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/DriverCreator/cdesc-DriverCreator.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/DriverCreator/dump-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/DriverCreator/dump_porttype-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/DriverCreator/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/Fault/cdesc-Fault.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/Fault/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/Fault/parse_attr-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/Fault/parse_element-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/Fault/targetnamespace-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/Header/cdesc-Header.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/Header/find_message-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/Header/find_part-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/Header/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/Header/parse_attr-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/Header/parse_element-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/Header/targetnamespace-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/HeaderFault/cdesc-HeaderFault.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/HeaderFault/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/HeaderFault/parse_attr-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/HeaderFault/parse_element-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/MappingRegistryCreator/cdesc-MappingRegistryCreator.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/MappingRegistryCreator/dump-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/MappingRegistryCreator/dump_array_typemap-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/MappingRegistryCreator/dump_struct_typemap-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/MappingRegistryCreator/dump_typemap-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/MappingRegistryCreator/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/MethodDefCreator/cdesc-MethodDefCreator.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/MethodDefCreator/cdr-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/MethodDefCreator/collect_documentparameter-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/MethodDefCreator/collect_rpcparameter-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/MethodDefCreator/collect_type-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/MethodDefCreator/documentdefinedtype-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/MethodDefCreator/dump-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/MethodDefCreator/dump_method-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/MethodDefCreator/ele2str-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/MethodDefCreator/elementqualified-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/MethodDefCreator/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/MethodDefCreator/param2str-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/MethodDefCreator/param_set-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/MethodDefCreator/rpcdefinedtype-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/MethodDefCreator/type2str-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/Operation/OperationInfo/cdesc-OperationInfo.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/Operation/OperationInfo/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/Operation/cdesc-Operation.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/Operation/input_info-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/Operation/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/Operation/operation_style-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/Operation/output_info-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/Operation/param_info-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/Operation/parent_binding-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/Operation/parse_attr-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/Operation/parse_element-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/ServantSkeltonCreator/cdesc-ServantSkeltonCreator.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/ServantSkeltonCreator/dump-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/ServantSkeltonCreator/dump_porttype-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/ServantSkeltonCreator/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/StandaloneServerStubCreator/cdesc-StandaloneServerStubCreator.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/StandaloneServerStubCreator/dump-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/StandaloneServerStubCreator/dump_porttype-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/StandaloneServerStubCreator/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/WSDL2Ruby/cdesc-WSDL2Ruby.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/WSDL2Ruby/check_file-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/WSDL2Ruby/create_cgi_stub-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/WSDL2Ruby/create_classdef-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/WSDL2Ruby/create_client_skelton-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/WSDL2Ruby/create_driver-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/WSDL2Ruby/create_file-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/WSDL2Ruby/create_name-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/WSDL2Ruby/create_servant_skelton-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/WSDL2Ruby/create_standalone_server_stub-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/WSDL2Ruby/import-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/WSDL2Ruby/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/WSDL2Ruby/run-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/WSDL2Ruby/shbang-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/WSDL2Ruby/write_file-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/cdesc-SOAP.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Service/cdesc-Service.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Service/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Service/parse_attr-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Service/parse_element-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Service/targetnamespace-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Types/cdesc-Types.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Types/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Types/parse_attr-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Types/parse_element-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/All/%3c%3c-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/All/cdesc-All.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/All/elementformdefault-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/All/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/All/parse_attr-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/All/parse_element-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/All/targetnamespace-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Annotation/cdesc-Annotation.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Annotation/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Annotation/parse_attr-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Annotation/parse_element-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Any/cdesc-Any.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Any/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Any/parse_attr-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Any/parse_element-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Any/targetnamespace-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Attribute/attr_reader_ref-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Attribute/cdesc-Attribute.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Attribute/directelement%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Attribute/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Attribute/parse_attr-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Attribute/parse_element-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Attribute/refelement-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Attribute/targetnamespace-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Choice/%3c%3c-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Choice/cdesc-Choice.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Choice/elementformdefault-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Choice/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Choice/parse_attr-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Choice/parse_element-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Choice/targetnamespace-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/ComplexContent/basetype-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/ComplexContent/cdesc-ComplexContent.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/ComplexContent/elementformdefault-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/ComplexContent/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/ComplexContent/parse_attr-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/ComplexContent/parse_element-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/ComplexContent/targetnamespace-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/ComplexType/all_elements%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/ComplexType/cdesc-ComplexType.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/ComplexType/check_array_content-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/ComplexType/check_type-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/ComplexType/child_defined_complextype-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/ComplexType/child_type-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/ComplexType/compoundtype-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/ComplexType/content_arytype-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/ComplexType/each_element-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/ComplexType/element_simpletype-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/ComplexType/elementformdefault-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/ComplexType/find_aryelement-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/ComplexType/find_arytype-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/ComplexType/find_element-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/ComplexType/find_element_by_name-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/ComplexType/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/ComplexType/parse_attr-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/ComplexType/parse_element-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/ComplexType/sequence_elements%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/ComplexType/targetnamespace-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Content/%3c%3c-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Content/cdesc-Content.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Content/each-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Content/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Content/parse_attr-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Content/parse_element-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Content/parse_epilogue-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Content/targetnamespace-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Content/update_elements-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Element/attr_reader_ref-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Element/attributes-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Element/cdesc-Element.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Element/directelement%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Element/elementform-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Element/elementformdefault-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Element/map_as_array%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Element/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Element/parse_attr-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Element/parse_element-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Element/refelement-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Element/targetnamespace-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Enumeration/cdesc-Enumeration.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Enumeration/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Enumeration/parse_attr-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Enumeration/parse_element-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Import/cdesc-Import.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Import/import-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Import/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Import/parse_attr-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Import/parse_element-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Importer/cdesc-Importer.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Importer/fetch-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Importer/import-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Importer/import-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Importer/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Importer/parse-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Importer/web_client-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Include/cdesc-Include.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Include/import-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Include/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Include/parse_attr-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Include/parse_element-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Length/cdesc-Length.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Length/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Length/parse_attr-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Length/parse_element-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Parser/AttributeConstraintError/cdesc-AttributeConstraintError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Parser/ElementConstraintError/cdesc-ElementConstraintError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Parser/FormatDecodeError/cdesc-FormatDecodeError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Parser/ParseError/cdesc-ParseError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Parser/ParseFrame/cdesc-ParseFrame.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Parser/ParseFrame/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Parser/UnexpectedElementError/cdesc-UnexpectedElementError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Parser/UnknownAttributeError/cdesc-UnknownAttributeError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Parser/UnknownElementError/cdesc-UnknownElementError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Parser/cdesc-Parser.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Parser/characters-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Parser/charset-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Parser/decode_tag-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Parser/decode_tag_end-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Parser/decode_text-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Parser/end_element-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Parser/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Parser/parse-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Parser/start_element-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Pattern/cdesc-Pattern.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Pattern/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Pattern/parse_attr-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Pattern/parse_element-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Schema/cdesc-Schema.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Schema/collect_attributes-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Schema/collect_complextypes-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Schema/collect_elements-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Schema/collect_simpletypes-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Schema/location%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Schema/location-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Schema/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Schema/parse_attr-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Schema/parse_element-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Schema/parse_element-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Sequence/%3c%3c-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Sequence/cdesc-Sequence.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Sequence/elementformdefault-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Sequence/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Sequence/parse_attr-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Sequence/parse_element-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Sequence/targetnamespace-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/SimpleContent/base-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/SimpleContent/cdesc-SimpleContent.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/SimpleContent/check-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/SimpleContent/check_lexical_format-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/SimpleContent/content-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/SimpleContent/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/SimpleContent/parse_element-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/SimpleContent/targetnamespace-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/SimpleExtension/cdesc-SimpleExtension.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/SimpleExtension/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/SimpleExtension/parse_attr-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/SimpleExtension/parse_element-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/SimpleExtension/targetnamespace-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/SimpleExtension/valid%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/SimpleRestriction/cdesc-SimpleRestriction.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/SimpleRestriction/check_length-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/SimpleRestriction/check_pattern-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/SimpleRestriction/check_restriction-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/SimpleRestriction/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/SimpleRestriction/parse_attr-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/SimpleRestriction/parse_element-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/SimpleRestriction/valid%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/SimpleType/base-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/SimpleType/cdesc-SimpleType.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/SimpleType/check_lexical_format-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/SimpleType/check_restriction-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/SimpleType/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/SimpleType/parse_attr-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/SimpleType/parse_element-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/SimpleType/targetnamespace-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Unique/cdesc-Unique.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Unique/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Unique/parse_attr-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Unique/parse_element-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/XSD2Ruby/cdesc-XSD2Ruby.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/XSD2Ruby/check_file-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/XSD2Ruby/create_classdef-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/XSD2Ruby/create_classname-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/XSD2Ruby/create_file-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/XSD2Ruby/import-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/XSD2Ruby/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/XSD2Ruby/run-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/XSD2Ruby/write_file-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/cdesc-XMLSchema.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/cdesc-WSDL.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WadlerExample/Tree/cdesc-Tree.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WadlerExample/cdesc-WadlerExample.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WeakRef/RefError/cdesc-RefError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WeakRef/__getobj__-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WeakRef/__setobj__-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WeakRef/cdesc-WeakRef.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WeakRef/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WeakRef/weakref_alive%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XML/Parser/cdesc-Parser.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XML/cdesc-XML.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XMLEncoding_ja/SJISHandler/cdesc-SJISHandler.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XMLEncoding_ja/cdesc-XMLEncoding_ja.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XMP/StringInputMethod/cdesc-StringInputMethod.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XMP/StringInputMethod/eof%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XMP/StringInputMethod/gets-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XMP/StringInputMethod/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XMP/StringInputMethod/puts-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XMP/cdesc-XMP.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XMP/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XMP/puts-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/Charset/CharsetConversionError/cdesc-CharsetConversionError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/Charset/CharsetError/cdesc-CharsetError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/Charset/UnknownCharsetError/cdesc-UnknownCharsetError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/Charset/XSDError/cdesc-XSDError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/Charset/cdesc-Charset.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/Charset/charset_label-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/Charset/charset_str-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/Charset/encoding%3d-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/Charset/encoding-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/Charset/encoding_conv-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/Charset/encoding_from_xml-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/Charset/encoding_to_xml-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/Charset/init-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/Charset/is_ces-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/Charset/is_euc-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/Charset/is_sjis-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/Charset/is_us_ascii-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/Charset/is_utf8-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/Charset/xml_encoding_label-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/CodeGen/ClassDef/cdesc-ClassDef.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/CodeGen/ClassDef/def_attr-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/CodeGen/ClassDef/def_classvar-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/CodeGen/ClassDef/dump-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/CodeGen/ClassDef/dump_accessor-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/CodeGen/ClassDef/dump_attribute-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/CodeGen/ClassDef/dump_attributes-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/CodeGen/ClassDef/dump_class_def-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/CodeGen/ClassDef/dump_class_def_end-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/CodeGen/ClassDef/dump_classvar-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/CodeGen/ClassDef/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/CodeGen/CommentDef/cdesc-CommentDef.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/CodeGen/CommentDef/dump_comment-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/CodeGen/GenSupport/capitalize-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/CodeGen/GenSupport/cdesc-GenSupport.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/CodeGen/GenSupport/dump_emptyline-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/CodeGen/GenSupport/format-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/CodeGen/GenSupport/keyword%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/CodeGen/GenSupport/safeconstname%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/CodeGen/GenSupport/safeconstname-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/CodeGen/GenSupport/safemethodname%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/CodeGen/GenSupport/safemethodname-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/CodeGen/GenSupport/safevarname%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/CodeGen/GenSupport/safevarname-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/CodeGen/GenSupport/trim_eol-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/CodeGen/GenSupport/trim_indent-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/CodeGen/GenSupport/uncapitalize-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/CodeGen/GenSupport/untab-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/CodeGen/MethodDef/cdesc-MethodDef.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/CodeGen/MethodDef/dump-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/CodeGen/MethodDef/dump_definition-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/CodeGen/MethodDef/dump_method_def-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/CodeGen/MethodDef/dump_method_def_end-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/CodeGen/MethodDef/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/CodeGen/ModuleDef/add_method-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/CodeGen/ModuleDef/cdesc-ModuleDef.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/CodeGen/ModuleDef/def_code-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/CodeGen/ModuleDef/def_const-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/CodeGen/ModuleDef/def_method-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/CodeGen/ModuleDef/def_privatemethod-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/CodeGen/ModuleDef/def_protectedmethod-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/CodeGen/ModuleDef/def_publicmethod-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/CodeGen/ModuleDef/def_require-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/CodeGen/ModuleDef/dump-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/CodeGen/ModuleDef/dump_code-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/CodeGen/ModuleDef/dump_const-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/CodeGen/ModuleDef/dump_methods-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/CodeGen/ModuleDef/dump_module_def-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/CodeGen/ModuleDef/dump_module_def_end-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/CodeGen/ModuleDef/dump_package_def-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/CodeGen/ModuleDef/dump_package_def_end-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/CodeGen/ModuleDef/dump_requirepath-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/CodeGen/ModuleDef/dump_static-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/CodeGen/ModuleDef/dump_value-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/CodeGen/ModuleDef/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/CodeGen/cdesc-CodeGen.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/Error/cdesc-Error.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/FloatConstants/cdesc-FloatConstants.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/IconvCharset/cdesc-IconvCharset.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/IconvCharset/safe_iconv-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/Mapping/cdesc-Mapping.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/Mapping/obj2xml-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/Mapping/xml2obj-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/NS/Assigner/assign-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/NS/Assigner/cdesc-Assigner.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/NS/Assigner/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/NS/FormatError/cdesc-FormatError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/NS/assign-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/NS/assigned%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/NS/assigned_tag%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/NS/assigner%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/NS/cdesc-NS.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/NS/clone_ns-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/NS/compare-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/NS/each_ns-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/NS/name-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/NS/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/NS/parse-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/NS/parse_local-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/NSDBase/cdesc-NSDBase.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/NSDBase/inherited-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/NSDBase/init-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/NSDBase/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/NSDBase/types-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/NamedElements/%2b-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/NamedElements/%3c%3c-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/NamedElements/%5b%5d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/NamedElements/cdesc-NamedElements.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/NamedElements/concat-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/NamedElements/delete-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/NamedElements/dup-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/NamedElements/each-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/NamedElements/elements%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/NamedElements/elements-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/NamedElements/empty%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/NamedElements/find_name-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/NamedElements/freeze-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/NamedElements/keys-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/NamedElements/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/NamedElements/size-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/QName/%3d%3d%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/QName/%3d%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/QName/cdesc-QName.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/QName/dump-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/QName/dup_name-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/QName/eql%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/QName/hash-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/QName/inspect-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/QName/match-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/QName/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/QName/parse-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/QName/to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/ValueSpaceError/cdesc-ValueSpaceError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XMLParser/Parser/ElementConstraintError/cdesc-ElementConstraintError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XMLParser/Parser/FormatDecodeError/cdesc-FormatDecodeError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XMLParser/Parser/ParseError/cdesc-ParseError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XMLParser/Parser/UnexpectedElementError/cdesc-UnexpectedElementError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XMLParser/Parser/UnknownAttributeError/cdesc-UnknownAttributeError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XMLParser/Parser/UnknownElementError/cdesc-UnknownElementError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XMLParser/Parser/add_factory-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XMLParser/Parser/cdesc-Parser.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XMLParser/Parser/characters-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XMLParser/Parser/create_parser-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XMLParser/Parser/do_parse-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XMLParser/Parser/end_element-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XMLParser/Parser/epilogue-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XMLParser/Parser/factory-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XMLParser/Parser/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XMLParser/Parser/parse-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XMLParser/Parser/prologue-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XMLParser/Parser/start_element-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XMLParser/Parser/xmldecl_encoding%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XMLParser/REXMLParser/cdesc-REXMLParser.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XMLParser/REXMLParser/do_parse-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XMLParser/REXMLParser/epilogue-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XMLParser/REXMLParser/tag_end-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XMLParser/REXMLParser/tag_start-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XMLParser/REXMLParser/text-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XMLParser/REXMLParser/xmldecl-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XMLParser/XMLParser/Listener/cdesc-Listener.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XMLParser/XMLParser/cdesc-XMLParser.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XMLParser/XMLParser/do_parse-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XMLParser/XMLScanner/cdesc-XMLScanner.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XMLParser/XMLScanner/do_parse-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XMLParser/XMLScanner/on_attr_charref-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XMLParser/XMLScanner/on_attr_charref_hex-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XMLParser/XMLScanner/on_attr_entityref-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XMLParser/XMLScanner/on_attr_value-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XMLParser/XMLScanner/on_attribute-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XMLParser/XMLScanner/on_chardata-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XMLParser/XMLScanner/on_charref-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XMLParser/XMLScanner/on_charref_hex-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XMLParser/XMLScanner/on_entityref-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XMLParser/XMLScanner/on_etag-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XMLParser/XMLScanner/on_stag-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XMLParser/XMLScanner/on_stag_end-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XMLParser/XMLScanner/on_stag_end_empty-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XMLParser/XMLScanner/on_xmldecl_encoding-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XMLParser/XMLScanner/on_xmldecl_version-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XMLParser/XMLScanner/parse_error-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XMLParser/XMLScanner/scanner_kcode%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XMLParser/XMLScanner/valid_error-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XMLParser/XMLScanner/warning-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XMLParser/XMLScanner/wellformed_error-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XMLParser/cdesc-XMLParser.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XMLParser/create_parser-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XMLParser/filter_ns-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDAnySimpleType/_set-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDAnySimpleType/_to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDAnySimpleType/cdesc-XSDAnySimpleType.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDAnySimpleType/check_lexical_format-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDAnySimpleType/init-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDAnySimpleType/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDAnySimpleType/screen_data-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDAnySimpleType/set-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDAnySimpleType/to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDAnyURI/cdesc-XSDAnyURI.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDAnyURI/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDAnyURI/screen_data-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDBase64Binary/cdesc-XSDBase64Binary.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDBase64Binary/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDBase64Binary/screen_data-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDBase64Binary/set_encoded-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDBase64Binary/string-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDBoolean/cdesc-XSDBoolean.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDBoolean/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDBoolean/screen_data-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDByte/cdesc-XSDByte.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDByte/maxinclusive-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDByte/mininclusive-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDByte/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDDate/_to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDDate/cdesc-XSDDate.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDDate/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDDate/screen_data_str-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDDateTime/_set-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDDateTime/_to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDDateTime/cdesc-XSDDateTime.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDDateTime/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDDateTime/screen_data_str-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDDateTimeImpl/add_tz-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDDateTimeImpl/cdesc-XSDDateTimeImpl.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDDateTimeImpl/of2tz-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDDateTimeImpl/screen_data-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDDateTimeImpl/to_date-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDDateTimeImpl/to_datetime-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDDateTimeImpl/to_obj-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDDateTimeImpl/to_time-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDDateTimeImpl/tz2of-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDDecimal/_set-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDDecimal/_to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDDecimal/cdesc-XSDDecimal.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDDecimal/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDDecimal/nonzero%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDDecimal/screen_data-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDDecimal/screen_data_str-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDDouble/_to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDDouble/cdesc-XSDDouble.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDDouble/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDDouble/screen_data-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDDuration/_set-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDDuration/_to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDDuration/cdesc-XSDDuration.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDDuration/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDDuration/screen_data-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDFloat/_to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDFloat/cdesc-XSDFloat.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDFloat/narrow32bit-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDFloat/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDFloat/positive%3f-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDFloat/screen_data-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDGDay/_to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDGDay/cdesc-XSDGDay.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDGDay/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDGDay/screen_data_str-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDGMonth/_to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDGMonth/cdesc-XSDGMonth.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDGMonth/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDGMonth/screen_data_str-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDGMonthDay/_to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDGMonthDay/cdesc-XSDGMonthDay.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDGMonthDay/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDGMonthDay/screen_data_str-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDGYear/_to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDGYear/cdesc-XSDGYear.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDGYear/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDGYear/screen_data_str-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDGYearMonth/_to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDGYearMonth/cdesc-XSDGYearMonth.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDGYearMonth/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDGYearMonth/screen_data_str-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDHexBinary/cdesc-XSDHexBinary.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDHexBinary/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDHexBinary/screen_data-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDHexBinary/set_encoded-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDHexBinary/string-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDInt/cdesc-XSDInt.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDInt/maxinclusive-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDInt/mininclusive-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDInt/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDInteger/_set-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDInteger/_to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDInteger/cdesc-XSDInteger.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDInteger/maxinclusive-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDInteger/mininclusive-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDInteger/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDInteger/positive-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDInteger/screen_data_str-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDInteger/validate-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDLong/cdesc-XSDLong.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDLong/maxinclusive-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDLong/mininclusive-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDLong/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDNegativeInteger/cdesc-XSDNegativeInteger.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDNegativeInteger/maxinclusive-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDNegativeInteger/mininclusive-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDNegativeInteger/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDNil/cdesc-XSDNil.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDNil/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDNonNegativeInteger/cdesc-XSDNonNegativeInteger.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDNonNegativeInteger/maxinclusive-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDNonNegativeInteger/mininclusive-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDNonNegativeInteger/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDNonPositiveInteger/cdesc-XSDNonPositiveInteger.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDNonPositiveInteger/maxinclusive-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDNonPositiveInteger/mininclusive-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDNonPositiveInteger/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDNormalizedString/cdesc-XSDNormalizedString.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDNormalizedString/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDNormalizedString/screen_data-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDPositiveInteger/cdesc-XSDPositiveInteger.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDPositiveInteger/maxinclusive-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDPositiveInteger/mininclusive-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDPositiveInteger/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDQName/_set-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDQName/_to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDQName/cdesc-XSDQName.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDQName/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDQName/screen_data-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDShort/cdesc-XSDShort.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDShort/maxinclusive-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDShort/mininclusive-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDShort/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDString/cdesc-XSDString.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDString/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDString/screen_data-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDTime/_set-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDTime/_to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDTime/cdesc-XSDTime.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDTime/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDTime/screen_data_str-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDUnsignedByte/cdesc-XSDUnsignedByte.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDUnsignedByte/maxinclusive-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDUnsignedByte/mininclusive-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDUnsignedByte/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDUnsignedInt/cdesc-XSDUnsignedInt.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDUnsignedInt/maxinclusive-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDUnsignedInt/mininclusive-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDUnsignedInt/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDUnsignedLong/cdesc-XSDUnsignedLong.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDUnsignedLong/maxinclusive-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDUnsignedLong/mininclusive-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDUnsignedLong/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDUnsignedShort/cdesc-XSDUnsignedShort.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDUnsignedShort/maxinclusive-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDUnsignedShort/mininclusive-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDUnsignedShort/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/cdesc-XSD.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/BaseEmitter/binary_base64-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/BaseEmitter/cdesc-BaseEmitter.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/BaseEmitter/double-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/BaseEmitter/fold-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/BaseEmitter/indent%21-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/BaseEmitter/indent-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/BaseEmitter/indent_text-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/BaseEmitter/map-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/BaseEmitter/node_text-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/BaseEmitter/options%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/BaseEmitter/options-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/BaseEmitter/seq-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/BaseEmitter/seq_map_shortcut-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/BaseEmitter/simple-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/BaseEmitter/single-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/BaseNode/%5b%5d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/BaseNode/at-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/BaseNode/cdesc-BaseNode.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/BaseNode/children-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/BaseNode/children_with_index-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/BaseNode/emit-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/BaseNode/match_path-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/BaseNode/match_segment-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/BaseNode/search-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/BaseNode/select%21-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/BaseNode/select-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/DBM/%5b%5d%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/DBM/%5b%5d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/DBM/cdesc-DBM.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/DBM/delete-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/DBM/delete_if-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/DBM/each-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/DBM/each_pair-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/DBM/each_value-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/DBM/fetch-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/DBM/has_value%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/DBM/index-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/DBM/invert-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/DBM/reject-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/DBM/replace-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/DBM/select-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/DBM/shift-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/DBM/store-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/DBM/to_a-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/DBM/to_hash-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/DBM/update-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/DBM/values-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/DBM/values_at-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/DomainType/cdesc-DomainType.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/DomainType/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/DomainType/tag_subclasses%3f-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/DomainType/to_yaml-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/Error/cdesc-Error.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/Loader/cdesc-Loader.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/Mapping/add-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/Mapping/cdesc-Mapping.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/Object/cdesc-Object.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/Object/tag_subclasses%3f-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/Object/to_yaml-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/Omap/%5b%5d%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/Omap/%5b%5d-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/Omap/%5b%5d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/Omap/cdesc-Omap.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/Omap/has_key%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/Omap/is_complex_yaml%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/Omap/to_yaml-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/Omap/yaml_initialize-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/Pairs/%5b%5d%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/Pairs/%5b%5d-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/Pairs/%5b%5d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/Pairs/cdesc-Pairs.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/Pairs/has_key%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/Pairs/is_complex_yaml%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/Pairs/to_yaml-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/Pairs/yaml_initialize-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/ParseError/cdesc-ParseError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/PrivateType/cdesc-PrivateType.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/PrivateType/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/PrivateType/tag_subclasses%3f-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/PrivateType/to_yaml-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/Sequence/add-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/Sequence/cdesc-Sequence.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/Set/cdesc-Set.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/SpecialHash/cdesc-SpecialHash.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/SpecialHash/inspect-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/SpecialHash/to_s-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/SpecialHash/to_yaml-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/SpecialHash/update-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/Store/cdesc-Store.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/Store/dump-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/Store/load-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/Store/load_file-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/Store/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/Stream/%5b%5d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/Stream/add-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/Stream/cdesc-Stream.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/Stream/edit-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/Stream/emit-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/Stream/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/Syck/Node/cdesc-Node.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/Syck/cdesc-Syck.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/TypeError/cdesc-TypeError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/YPath/cdesc-YPath.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/YPath/each_path-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/YPath/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/YamlNode/cdesc-YamlNode.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/YamlNode/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/YamlNode/transform-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/add_builtin_type-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/add_domain_type-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/add_private_type-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/cdesc-YAML.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/add_ruby_type-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/detect_implicit-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/dump-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/dump_stream-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/each_document-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/each_node-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/emitter-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/escape-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/generic_parser-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/load-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/load_documents-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/load_file-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/load_stream-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/make_stream-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/object_maker-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/parse-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/parse_documents-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/parse_file-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/parser-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/quick_emit-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/read_type_class-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/resolver-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/tag_class-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/tagged_classes-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/tagurize-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/transfer-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/try_implicit-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/unescape-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/ZeroDivisionError/cdesc-ZeroDivisionError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/BufError/cdesc-BufError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/DataError/cdesc-DataError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/Deflate/%3c%3c-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/Deflate/cdesc-Deflate.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/Deflate/deflate-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/Deflate/deflate-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/Deflate/flush-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/Deflate/initialize_copy-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/Deflate/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/Deflate/params-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/Deflate/set_dictionary-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/Error/cdesc-Error.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/GzipFile/CRCError/cdesc-CRCError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/GzipFile/Error/cdesc-Error.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/GzipFile/LengthError/cdesc-LengthError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/GzipFile/NoFooter/cdesc-NoFooter.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/GzipFile/cdesc-GzipFile.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/GzipFile/close-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/GzipFile/closed%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/GzipFile/comment-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/GzipFile/crc-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/GzipFile/finish-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/GzipFile/level-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/GzipFile/mtime-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/GzipFile/orig_name-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/GzipFile/os_code-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/GzipFile/sync%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/GzipFile/sync-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/GzipFile/to_io-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/GzipFile/wrap-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/GzipReader/cdesc-GzipReader.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/GzipReader/each-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/GzipReader/each_byte-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/GzipReader/each_line-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/GzipReader/eof%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/GzipReader/eof-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/GzipReader/getc-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/GzipReader/gets-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/GzipReader/lineno%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/GzipReader/lineno-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/GzipReader/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/GzipReader/open-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/GzipReader/pos-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/GzipReader/read-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/GzipReader/readchar-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/GzipReader/readline-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/GzipReader/readlines-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/GzipReader/rewind-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/GzipReader/tell-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/GzipReader/ungetc-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/GzipReader/unused-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/GzipWriter/%3c%3c-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/GzipWriter/cdesc-GzipWriter.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/GzipWriter/comment%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/GzipWriter/flush-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/GzipWriter/mtime%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/GzipWriter/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/GzipWriter/open-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/GzipWriter/orig_name%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/GzipWriter/pos-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/GzipWriter/print-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/GzipWriter/printf-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/GzipWriter/putc-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/GzipWriter/puts-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/GzipWriter/tell-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/GzipWriter/write-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/Inflate/%3c%3c-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/Inflate/cdesc-Inflate.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/Inflate/inflate-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/Inflate/inflate-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/Inflate/new-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/Inflate/set_dictionary-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/Inflate/sync-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/Inflate/sync_point%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/MemError/cdesc-MemError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/NeedDict/cdesc-NeedDict.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/StreamEnd/cdesc-StreamEnd.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/StreamError/cdesc-StreamError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/VersionError/cdesc-VersionError.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/ZStream/adler-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/ZStream/avail_in-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/ZStream/avail_out%3d-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/ZStream/avail_out-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/ZStream/cdesc-ZStream.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/ZStream/close-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/ZStream/closed%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/ZStream/data_type-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/ZStream/end-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/ZStream/ended%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/ZStream/finish-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/ZStream/finished%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/ZStream/flush_next_in-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/ZStream/flush_next_out-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/ZStream/reset-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/ZStream/stream_end%3f-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/ZStream/total_in-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/ZStream/total_out-i.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/adler32-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/cdesc-Zlib.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/crc32-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/crc_table-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/zlib_version-c.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/fatal/cdesc-fatal.yaml
+share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/created.rid
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/TaxonomyTopicModel/TaxonomyTopicsBase/TaxonomyTopicBase
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/TrackBackModel/TrackBackAboutsBase/TrackBackAboutBase
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS20/Items/Item/TrackBackAbouts/TrackBackAbout
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS10/Items/Item/TrackBackAbouts/TrackBackAbout
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS09/Items/Item/TrackBackAbouts/TrackBackAbout
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/EncodingStyle/ASPDotNetHandler/SOAPTemporalObject
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/EncodingStyle/LiteralHandler/SOAPTemporalObject
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/EncodingStyle/SOAPHandler/SOAPTemporalObject
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/ChannelBase/CategoriesBase/CategoryBase
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/TaxonomyTopicsModel/TaxonomyTopicsBase
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/EncodingStyle/ASPDotNetHandler/SOAPUnknown
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/TaxonomyTopicModel/TaxonomyTopicsBase
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Parser/AttributeConstraintError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS20/Items/Item/Categories/Category
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS10/Items/Item/Categories/Category
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS09/Items/Item/Categories/Category
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/TimerIdConv/TimerHolder2/InvalidIndexError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/EncodingStyle/LiteralHandler/SOAPUnknown
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/EncodingStyle/Handler/EncodingStyleError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Parser/UnexpectedElementError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Parser/ElementConstraintError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/TrackBackModel/TrackBackAboutsBase
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/ImageFaviconModel/ImageFaviconBase
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/ChannelBase/SkipHoursBase/HourBase
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XMLParser/Parser/UnexpectedElementError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XMLParser/Parser/ElementConstraintError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Parser/UnknownAttributeError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS20/Channel/Categories/Category
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS10/Channel/Categories/Category
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS09/Channel/Categories/Category
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XMLParser/Parser/UnknownAttributeError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/EncodingStyle/SOAPHandler/SOAPUnknown
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Requester/UnconnectedUDP/Sender
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS20/Items/Item/TrackBackAbouts
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS10/Items/Item/TrackBackAbouts
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS09/Items/Item/TrackBackAbouts
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/ItemsBase/ItemBase/EnclosureBase
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/ChannelBase/SkipDaysBase/DayBase
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Parser/UnknownElementError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Router/ApplicationScopeOperation
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/ExtendCommand/CurrentWorkingWorkspace
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XMLParser/Parser/UnknownElementError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Requester/ConnectedUDP/Sender
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/Fortran95parser/Fortran95Definition
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Parser/FormatDecodeError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/UnhandledMustUnderstandHeaderError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/ItemsBase/ItemBase/SourceBase
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XMLParser/Parser/FormatDecodeError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPServlet/DefaultFileHandler
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/TaxonomyTopicsModel/TaxonomyTopics
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/XMLStyleSheets/XMLStyleSheet
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS20/Channel/SkipHours/Hour
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS10/Channel/SkipHours/Hour
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS09/Channel/SkipHours/Hour
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/ImageItemModel/ImageItemBase
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/MonitorMixin/ConditionVariable/Timeout
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/StandaloneServerStubCreator
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Router/RequestScopeOperation
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS20/Items/Item/Categories
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS10/Items/Item/Categories
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS09/Items/Item/Categories
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/ItemsBase/ItemBase/GuidBase
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/AttributeFormatter/AttributeString
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Parser/AttributeConstraintError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPServlet/HTTPServletError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/GTK/EnhancedProgressBar
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPGenerator/FormatEncodeError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Parser/ParseFrame/NodeContainer
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/TaxonomyTopicModel/TaxonomyTopic
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS20/Items/Item/Enclosure
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS20/Channel/SkipDays/Day
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS10/Items/Item/ImageItem
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS10/Items/Item/Enclosure
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS10/Channel/SkipDays/Day
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS10/Channel/ImageFavicon
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS09/Items/Item/ImageItem
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS09/Items/Item/Enclosure
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS09/Channel/SkipDays/Day
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS09/Channel/ImageFavicon
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/ChannelBase/CategoriesBase
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Validation/ValidationException
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPServlet/AbstractServlet
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPAuth/ProxyAuthenticator
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/WSDLDriverFactory/FactoryError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/EncodingStyle/ASPDotNetHandler
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Requester/UnconnectedUDP
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/TrackBackModel20/TrackBackAbout
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/TrackBackModel10/TrackBackAbout
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/ChannelBase/SkipHoursBase
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/Charset/CharsetConversionError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Parser/UnexpectedElementError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Parser/ElementConstraintError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Parser/UnexpectedElementError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Config/OtherResolvError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/TrackBackModel20/TrackBackPing
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/TrackBackModel10/TrackBackPing
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS20/Channel/Categories
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS10/Channel/Categories
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS09/Channel/Categories
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/ChannelBase/SkipDaysBase
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/ImageFaviconModel/ImageFavicon
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/Operation/OperationInfo
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Parser/UnknownAttributeError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/StreamHandler/ConnectionData
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/CGIStub/SOAPStdinRequest
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/MIMEMessage/MIMEMessageError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/EncodingStyle/LiteralHandler
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Requester/RequestError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Requester/ConnectedUDP
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Message/MessageEncoder
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Message/MessageDecoder
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS20/Items/Item/Source
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS20/Channel/SkipHours
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS10/Items/Item/Source
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS10/Channel/SkipHours
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS09/Items/Item/Source
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS09/Channel/SkipHours
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/ExtendCommand/ChangeWorkspace
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbServer/InvokeMethod18Mixin
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XMLParser/XMLParser/Listener
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/SimpleRestriction
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Parser/ParseFrame
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Parser/ParseError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/MappingRegistryCreator
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/ClassDefCreatorSupport
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPAuth/ProxyDigestAuth
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/AccessLog/AccessLogError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/TestRunnerUtilities
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/CGIStub/SOAPFCGIRequest
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/WSDLLiteralRegistry
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/WSDLEncodedRegistry
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/TypedStructFactory_
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/UnknownConversionMethodError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS20/Channel/SkipDays
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS10/Channel/SkipDays
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS09/Channel/SkipDays
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XMLParser/Parser/ParseError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/Charset/UnknownCharsetError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/ServantSkeltonCreator
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Parser/UnknownElementError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPServlet/ProcHandler
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPServlet/FileHandler
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPAuth/ProxyBasicAuth
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/TestRunnerMediator
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/GTK2/EnhancedLabel
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/Console/TestRunner
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/Collector/ObjectSpace
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/TypedArrayFactory_
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/ArrayIndexOutOfBoundsError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Requester/TCP/Sender
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS20/Items/Item/Guid
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS10/Items/Item/Guid
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS09/Items/Item/Guid
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/ChannelBase/CloudBase
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Logger/LogDevice/LogDeviceMutex
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/ExtendCommand/PushWorkspace
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/SimpleExtension
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/ClientSkeltonCreator
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPStatus/ServerError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPStatus/ClientError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPServlet/ERBHandler
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPServlet/CGIHandler
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPAuth/Authenticator
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/Util/BacktraceFilter
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/GTK/FaultListItem
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/GTK/EnhancedLabel
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/Fox/FaultListItem
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/AssertionFailedError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/MethodDefinitionError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/AttachmentFactory
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/EncodingStyle/SOAPHandler
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Resource/DomainName
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Rss/Channel/SkipHours/Hour
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Rss/Channel/Item/Enclosure
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/AttributeFormatter/AttrChar
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parsers/UltraLightParser
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/MonitorMixin/ConditionVariable
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/Notifier/CompositeNotifier
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/ExtendCommand/PopWorkspace
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/ComplexContent
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Parser/FormatDecodeError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPServer/MountTable
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Parser/FormatDecodeError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/DateTimeFactory_
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/BasetypeFactory_
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Rss/Channel/Item/Category
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/TaxonomyTopicsModel
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS20/Channel/Cloud
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS10/Channel/Cloud
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS09/Channel/Cloud
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/OptionParser/RequiredArgument
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/OptionParser/OptionalArgument
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/CramMD5Authenticator
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/Notifier/AbstructNotifier
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/HTMLGeneratorInOne
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/SimpleContent
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/GTK2/TestRunner
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/CGIStub/SOAPRequest
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/TraverseSupport
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/RubytypeFactory
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/MappedException
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Rss/Channel/SkipDays/Day
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/TaxonomyTopicModel
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/ItemsBase/ItemBase
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/ImageItemModel/ImageItem
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/Notifier/LeveledNotifier
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/ExtendCommand/Workspaces
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/ExtendCommand/IrbCommand
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/ExtendCommand/Foreground
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Exception2MessageMapper/E2MM
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/ERB/Compiler/ExplicitScanner
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/TimerIdConv/TimerHolder2
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPStatus/Redirect
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPStatus/EOFError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPAuth/DigestAuth
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/GTK2/FaultList
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/GTK/TestRunner
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/Fox/TestRunner
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPNonPositiveInteger
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPNonNegativeInteger
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/SOAPMethodResponse
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/StringFactory_
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/Base64Factory_
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Resource/IN/AAAA
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Resource/Generic
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Requester/Sender
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Rss/Channel/Item/Source
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/ImageFaviconModel
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Validation/ZeroOrMore
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Validation/Interleave
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Formatters/Transitive
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/OptionParser/PlacedArgument
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/SMTPAuthenticationError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/ResponseParseError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/LoginAuthenticator
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/GetoptLong/NeedlessArgument
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/ERB/Compiler/SimpleScanner2
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/ERB/Compiler/PercentScanner
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XMLEncoding_ja/SJISHandler
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Enumeration
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/ComplexType
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/MethodDefCreator
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPUtils/FormData
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPStatus/Success
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPAuth/BasicAuth
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/Util/ProcWrapper
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/Tk/TestRunner
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPExternalReference
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/SOAPMethodRequest
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/SOAPException
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/ArrayFactory_
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/MPostUnavailableError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/EncodingStyle/Handler
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rinda/RequestCanceledError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Resource/IN/WKS
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Resource/IN/SRV
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Config/NXDomain
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/NotAvailableValueError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/SyndicationModel
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS20/Items/Item
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS10/Items/Item
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS09/Items/Item
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Validation/Validator
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Validation/OneOrMore
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parsers/StreamParser
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/POPAuthenticationError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/BodyTypeMultipart
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/Notifier/NoMsgNotifier
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/GetoptLong/MissingArgument
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/ERB/Compiler/SimpleScanner
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbServer/InvokeMethod
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbSSLSocket/SSLConfig
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/GzipFile/LengthError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDNonPositiveInteger
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDNonNegativeInteger
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XMLParser/REXMLParser
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/SimpleType
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Annotation
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/ClassDefCreator
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPStatus/Status
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPAuth/Htpasswd
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPAuth/Htdigest
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/InvalidComponentError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/Util/Observable
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Sync_m/Err/LockModeFailer
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/WSDLDriver/Servant__
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/StandaloneServer
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Router/Operation
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/PostUnavailableError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/Registry/Map
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/MappingError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/HashFactory_
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Header/SimpleHandler
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rinda/RequestExpiredError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rinda/NotifyTemplateEntry
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rinda/InvalidHashTupleKey
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Resource/MINFO
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Resource/HINFO
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Resource/CNAME
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Rss/Channel/TextInput
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Rss/Channel/SkipHours
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Rss/Channel/Item/Guid
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/RDF/Channel/Textinput
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/OverlappedPrefixError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/MissingAttributeError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS20/Textinput
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS10/Textinput
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS09/Textinput
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/DublinCoreModel
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Validation/Sequence
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Validation/Optional
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parsers/XPathParser
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parsers/LightParser
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/ByeResponseError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/BadResponseError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/ExtendCommand/Require
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/GetoptLong/AmbigousOption
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XMLParser/XMLScanner
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/Charset/CharsetError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Attribute
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/CGIStubCreator
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPStatus/Error
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPAuth/Htgroup
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Sync_m/Err/UnknownLocker
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPPositiveInteger
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPNegativeInteger
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPEnvelopeElement
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/ResponseFormatError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Proxy/Operation
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/URIFactory_
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/MIMEMessage/Headers
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Resource/IN/A
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Requester/TCP
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Rss/Channel/SkipDays
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/XMLStyleSheets
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/TrackBackModel
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/ImageItemModel
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Validation/RelaxNG
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parsers/TreeParser
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parsers/SAX2Parser
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parsers/PullParser
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parsers/BaseParser
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Formatters/Default
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/NoResponseError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/DataFormatError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/BodyTypeMessage
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/HistorySavingAbility
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/ExtendCommand/Source
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/GetoptLong/InvalidOption
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/HyperlinkHtml
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/HTMLGenerator
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/AllReferences
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/ERB/Compiler/TrimScanner
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/ERB/Compiler/PercentLine
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CGI/QueryExtension/Value
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDNormalizedString
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XMLParser/XMLParser
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/XSD2Ruby
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Sequence
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Importer
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/DriverCreator
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Operation/NameInfo
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPStatus/Info
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPServerError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPProxyServer
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPAuth/UserDB
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/Collector/Dir
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/TemplatePage/LineReader
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/ProcessController
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/ParameterError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/MIMEMessage/Header
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/EmptyResponseError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RubyToken/TkUnknownChar
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rinda/WaitTemplateEntry
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rinda/DRbObjectTemplate
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Resource/TXT
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Resource/SOA
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Resource/PTR
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Resource/ANY
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/TaxonomyTopicsModel
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/NotExpectedTagError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/TextinputBase
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS20/Channel
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS10/Channel
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS09/Channel
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/BaseDublinCoreModel
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Validation/Choice
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parsers/PullEvent
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Formatters/Pretty
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/OptionParser/NoArgument
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/OptionParser/Completion
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/ProtoRetriableError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/ResponseParser
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTPServerException
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/ReadlineInputMethod
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/ExtendCommandBundle
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/XMLGenerator
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/CHMGenerator
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Exception2MessageMapper
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CGI/Session/MemoryStore
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/GzipFile/NoFooter
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/GzipFile/CRCError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDPositiveInteger
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDNegativeInteger
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/CodeGen/GenSupport
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/CodeGen/CommentDef
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Pattern
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Include
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Element
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Content
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Parser/ParseFrame
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Parser/ParseError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/CommandProcessor
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/WSDLDriverFactory
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPUnsignedShort
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPAnySimpleType
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Parser/ParseFrame
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Parser/ParseError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Header/HandlerSet
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/HTTPStreamHandler
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RubyLex/BufferedReader
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Resource/NS
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Resource/MX
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Resource/IN
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/EncodeError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/DecodeError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/XMLStyleSheetMixin
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/TaxonomyTopicModel
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/REXMLLikeXMLParser
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/NotWellFormedError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/ContentModel
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/BaseTrackBackModel
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/OverstrikeFormatter
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Validation/State
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Validation/Event
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/DTD/NotationDecl
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/PrettyPrint/SingleLine
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/PrettyPrint/GroupQueue
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/OptionParser/OptionMap
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/ResponseError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/BodyTypeBasic
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTPRetriableError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTPGenericRequest
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Iconv/InvalidCharacter
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/ExtendCommand/Load
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/ExtendCommand/Kill
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/ExtendCommand/Jobs
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/ExtendCommand/Help
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/ExtendCommand/Fork
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/RIGenerator
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/ContextUser
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/FileUtils/StreamUtils_
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CSV/IllegalFormatError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/CodeGen/ModuleDef
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/CodeGen/MethodDef
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XMP/StringInputMethod
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Unique
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Schema
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Parser
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Length
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Import
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Choice
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/HeaderFault
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/OperationBinding
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/GenericServer
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SingletonClassMethods
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Scanf/FormatSpecifier
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPUnsignedLong
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPUnsignedByte
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPCompoundtype
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/Registry
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/MIMEMessage/Part
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/HTTPConfigLoader
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rinda/TupleSpaceProxy
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/XMLParserNotFound
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/XMLParserListener
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Rss/Channel/Image
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Rss/Channel/Cloud
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/RDF/Channel/Items
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/RDF/Channel/Image
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/NotValidXMLParser
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS20/Items
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS20/Image
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS10/Items
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS10/Image
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS09/Items
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS09/Image
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/ChannelBase
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/ImageFaviconModel
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/Options/OptionList
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/AttributeFormatter
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/DTD/ElementDecl
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/DTD/AttlistDecl
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/PrettyPrint/Breakable
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/ProtoUnknownError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/ProtoCommandError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/InternetMessageIO
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/QuotedString
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/BodyTypeText
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Iconv/InvalidEncoding
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Iconv/IllegalSequence
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/StdioOutputMethod
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/ExtendCommand/Nop
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/HtmlMethod
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Enumerable/Enumerator
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbServerNotFound
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CGI/Session/NoSession
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CGI/Session/FileStore
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDUnsignedShort
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDAnySimpleType
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XMLParser/Parser
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/CodeGen/ClassDef
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/Charset/XSDError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/SimpleServer
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPResponse
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/Console
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/TestResult
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/AutoRunner
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/Assertions
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/TemplatePage/Context
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/BuiltInCommand
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPUnsignedInt
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPModuleUtils
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPCRoutingError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/Factory
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/HTTPStreamError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/ArrayStoreError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/ResolvTimeout
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Requester
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Label/Str
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RUNIT/CUI/TestRunner
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/TrackBackModel20
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/TrackBackModel10
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/SyndicationModel
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Rss/Channel/Item
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/RootElementMixin
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/ModuleDescription
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/MethodDescription
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Validation/Ref
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/SyncEnumerator
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/StreamListener
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/ParseException
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/ExternalEntity
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/DTD/EntityDecl
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/Fortran95parser
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/Context/Section
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/SMTPUnknownError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/ProtoSyntaxError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/ProtoServerError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Logger/ShiftingError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/StdioInputMethod
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/HtmlClass
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/ERB/Compiler/Scanner
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DOT/DOTSimpleElement
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/GzipFile/Error
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDUnsignedLong
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDUnsignedByte
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDDateTimeImpl
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDBase64Binary
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/ValueSpaceError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/WSDL2Ruby
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/Operation
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/ServerError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPVersion
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPServlet
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPRequest
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/InvalidURIError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/TestSuite
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/Collector
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/StringScanner/Error
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/StrictPrettyExample
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/SystemCommand
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SessionManager
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPHeaderItem
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPGYearMonth
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPAttachment
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/SOAPMethod
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/HTTPServer
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping/Object
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Header/Handler
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/AttributeManager
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rinda/TemplateEntry
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rinda/SimpleRenewer
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Resource
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/XMLScanListener
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/XMLParserParser
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/UnknownTagError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/TooMuchTagError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/MissingTagError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/ItemsBase
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/ImageBase
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/InvalidRSSError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/ImageModelUtils
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/DublinCoreModel
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/ConversionError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/ClassDescription
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/SourceFactory
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/OptionParser/Switch
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/NotImplementedError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/SMTPSyntaxError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/ProtoFatalError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/MessageSet
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTP/ProxyDelta
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Iconv/BrokenLibrary
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/FileInputMethod
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/ContextExtender
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/HtmlFile
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/ERB/Compiler/Buffer
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbUnknownError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDUnsignedInt
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/NS/FormatError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/FloatConstants
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WadlerExample/Tree
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/Any
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema/All
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Documentation
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPStatus
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPServer
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/CGI/Socket
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/REGEXP/PATTERN
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/TruncatedDataError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/TestCase
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Scanf/FormatString
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/StreamHandler
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPReference
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPRawString
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPHexBinary
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPGenerator
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPGMonthDay
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Property/Util
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/NetHttpClient
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/EncodingStyle
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RubyToken/TkOPASGN
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rinda/RingProvider
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/ResolvError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Message
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/TrackBackUtils
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/ImageItemModel
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/SimpleFormatter
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/SAX2Listener
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/NotationDecl
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/ParserFactory
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Options/OptionList
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/SMTPServerBusy
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/SMTPFatalError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/ProtoAuthError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/POPBadResponse
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTPFatalError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTPExceptions
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTP/Proppatch
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Logger/Application
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/MethodExtender
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/InputCompletor
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/ExceptionForMatrix
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Errno/ECONNABORTED
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/ExtServManager
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbRemoteError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DEBUGGER__/Context
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CGI/QueryExtension
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/VersionError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/ZeroDivisionError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDGYearMonth
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/NamedElements
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/Binding
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/Address
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPUtils
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTMLUtils
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/AccessLog
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/TimeExtentionTest
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/GTK2
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/Failure
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SingleForwardable
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPEnvelope
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPDuration
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPDateTime
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPBasetype
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/SOAPVoid
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/RPCError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Marshallable
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/LineCollection
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RubyToken/TkError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/OpCode
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Config
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/XMLStyleSheet
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/XMLScanParser
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/REXMLListener
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/RDF/Textinput
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSSBase
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/ListenerMixin
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/IncludedModule
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/XPathParser
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Instruction
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/EntityConst
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/ElementDecl
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Declaration
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/AttlistDecl
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/SimpleParser
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/NormalModule
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/PrettyPrint/Group
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/OpenURI/HTTPError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/ProtocolError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTP/Propfind
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/NameError/message
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/ExtendCommand
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators/MarkUp
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/FileUtils/Verbose
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/FileUtils/NoWrite
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbUNIXSocket
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbObservable
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/ConditionVariable
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CGI/HtmlExtension
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Base64/Deprecated
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/AmbiguousArgument
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/StreamError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/SpecialHash
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/PrivateType
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/BaseEmitter
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDHexBinary
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDGMonthDay
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/IconvCharset
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WeakRef/RefError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/Header
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Definitions
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/HTTPAuth
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/BasicLog
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/GTK
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/Fox
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SystemStackError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Socket/Constants
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/AppendFile
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/StreamError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPInteger
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPElement
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPDecimal
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPBoolean
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/SOAPlet
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/CGIStub
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/MIMEMessage
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RubyToken/TkNode
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rinda/TupleSpace
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rinda/TupleEntry
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rinda/RingServer
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rinda/RingFinger
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rinda/RindaError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/RCode
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Query
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Label
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RUNIT/TestResult
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/ContentModel
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/BaseListener
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/TopLevelEntry
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/TextFormatter
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/MethodSummary
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/HtmlFormatter
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/AnsiFormatter
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Validation
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Light/Node
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Formatters
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/DTD/Parser
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Attributes
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/SingleClass
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/NormalClass
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/ClassModule
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/PrettyPrint/Text
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/OpenURI/OpenRead
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/WriteAdapter
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/RawData
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/Literal
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTPResponse
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTP/Options
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/NeedlessArgument
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Logger/LogDevice
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Logger/Formatter
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Iconv/OutOfRange
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/OutputMethod
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/GetoptLong/Error
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/FloatDomainError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/FileUtils/Entry_
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/FileUtils/DryRun
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Errno/ECONNRESET
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbURIOption
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbTCPSocket
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbSSLSocket
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbConnError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbBadScheme
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DEBUGGER__/Mutex
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CSV/StringReader
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Benchmark/Report
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/GzipWriter
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/GzipReader
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/ParseError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/DomainType
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDDuration
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDDateTime
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/NS/Assigner
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/Fault
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/BadURIError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI/Tk
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/Error
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SystemCallError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SimpleDelegator
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SignalException
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/WSDLDriver
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPStruct
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPString
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPHeader
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPGMonth
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPDouble
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPBase64
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPAnyURI
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Router
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Driver
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/FaultError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Attachment
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/SimpleMarkup
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RubyToken/Token
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RubyToken/TkVal
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS/Name
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Racc/ParseError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RUNIT/TestSuite
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Rss/Channel
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/REXMLParser
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/RDF/Channel
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/NotSetError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS20
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS10
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/RSS09
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/XMLTokens
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/QuickPath
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Namespace
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Functions
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Attribute
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/RubyParser
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/CodeObject
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/ReadAdapter
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/POP3Command
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTPRequest
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTP/Unlock
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTP/Delete
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/MissingArgument
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Logger/Severity
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/InvalidArgument
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/InputMethod
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Date/Format/Bag
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/TimerIdConv
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbUndumped
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbProtocol
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DOT/DOTSubgraph
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CSV/BasicWriter
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/AmbiguousOption
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/StreamEnd
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/DataError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/TypeError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/Syck/Node
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDInteger
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDDecimal
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDBoolean
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XMLEncoding_ja
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/XMLSchema
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP/Body
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Operation
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/Daemon
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/Cookie
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/Config
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/Util
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SyncEnumerator
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/AppendIO
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPShort
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPQName
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPGYear
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPFloat
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPFault
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPArray
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC/Proxy
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Processor
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/AttrChanger
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RubyToken/TkOp
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RubyToken/TkKW
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RubyToken/TkId
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rinda/TupleBag
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rinda/Template
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RUNIT/ToPublic
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RUNIT/TestCase
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker/Base
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/BaseParser
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/MethodEntry
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/Description
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/IOSource
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Encoding
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Elements
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Document
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/RDocError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/AnyMethod
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/AnonClass
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Process/Status
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/PP/ObjectMixin
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/OpenURI/Buffer
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/NetPrivate
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/Error
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTPHeader
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTP/Trace
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTP/Mkcol
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/BufferedIO
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/NameDescriptor
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/LocalJumpError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/JobManager
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/Constants
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DefaultDisplay
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbUnknown
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbMessage
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DOT/DOTElement
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DOT/DOTDigraph
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CompletingHash
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/NeedDict
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/MemError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/GzipFile
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/BufError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/YamlNode
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/Sequence
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/BaseNode
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDString
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDGMonth
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDDouble
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDAnyURI
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XMLParser
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WadlerExample
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/PortType
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Importer
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/Utils
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/UnboundMethod
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Timeout/Error
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/StringScanner
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/StandardError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SecurityError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPType
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPTime
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPLong
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPGDay
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPDate
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPByte
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPBody
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Response
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Property
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/PreProcess
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/RDF/Image
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Converter
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/BaseModel
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/NamedThing
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/ClassEntry
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/XMLDecl
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parsers
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Element
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/DocType
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Comment
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/TopLevel
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/Constant
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/C_Parser
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/PP/SingleLine
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/NoMethodError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/NoMemoryError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/SMTPError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP/Atom
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTPError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTP/Post
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTP/Move
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTP/Lock
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTP/Head
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTP/Copy
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Matrix/Scalar
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/InvalidOption
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Iconv/Failure
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/WorkSpace
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/SLex/Node
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/LoadAbort
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/IrbLoader
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/ERB/DefMethod
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Date/Infinity
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbServer
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbObject
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbIdConv
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbBadURI
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CSV/StreamBuf
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Benchmark/Tms
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Benchmark/Job
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/ArgumentError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/ZStream
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/Inflate
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/Deflate
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/Mapping
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDShort
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDQName
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDGYear
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDFloat
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Service
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Message
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Binding
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit/UI
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/TemplatePage
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/TSort/Cyclic
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/Filter
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/Concat
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPNil
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/SOAPInt
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Marshal
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Mapping
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/Paragraph
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/ListStart
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/Flow/LIST
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/BlankLine
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/Attribute
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RuntimeError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/Hosts
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RUNIT/Assert
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/RDF/Item
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/Attribute
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/AliasName
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Source
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Parent
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Output
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Entity
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/Require
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/Include
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/Diagram
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/Context
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/PStore/Error
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/PP/PPMethods
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/OptionParser
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/OpenURI/Meta
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/Protocol
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/POPError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTP/Put
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTP/Get
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/MonitorMixin
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Logger/Error
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/Notifier
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Errno/EPROTO
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/ERB/Compiler
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/GWIdConv
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbArray
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Continuation
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CSV/IOReader
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CGI/TagMaker
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/ACL/ACLEntry
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/Stream
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/Object
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/Loader
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDTime
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDLong
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDGDay
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDDate
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDByte
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/NSDBase
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/Mapping
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/CodeGen
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/Charset
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Parser
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Import
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/Log
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick/CGI
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/Generic
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/TokenStream
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/ThreadsWait
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/ThreadGroup
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/ThreadError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SyntaxError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SocketError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/Error
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/ScriptError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOCKSSocket
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Parser
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Header
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/Verbatim
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/ListItem
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/ListBase
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/Fragment
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/AttrSpan
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rinda/Tuple
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/IPv6
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/IPv4
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RegexpError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Racc/Parser
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/RDF/Seq
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/RDF/Bag
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/NSError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Element
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/RiWriter
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/RiReader
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/Constant
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/XPath
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Light
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Child
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/CData
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Process/UID
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Process/Sys
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Process/GID
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/PrettyPrint
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/ObjectSpace
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/POPMail
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/History
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/Context
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Forwardable
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Date/Format
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/ExtServ
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/DRbConn
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DOT/DOTPort
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DOT/DOTNode
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DOT/DOTEdge
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CGI/Session
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CGI/Html4Tr
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CGI/Html4Fr
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/BasicSocket
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Acceptables
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/ACL/ACLList
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib/Error
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/YPath
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/Store
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/Pairs
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/Error
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDNil
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/XSDInt
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XML/Parser
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Types
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Param
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Error
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/REGEXP
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/MailTo
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/Escape
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/UNIXSocket
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/UNIXServer
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/TSortArray
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SystemExit
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Sync_m/Err
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SizedQueue
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shellwords
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/Glob
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/Echo
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Error
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/ToLaTeX
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/Special
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/ListEnd
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/Heading
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv/DNS
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RangeError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/RDF/Li
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Parser
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/RiCache
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/Options
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Text
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/Node
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/Token
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/Stats
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/Alias
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Profiler__
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/ParseError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/OpenStruct
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Observable
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/Telnet
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IndexError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/Locale
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/GetoptLong
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generators
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/FalseClass
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Enumerable
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DEBUGGER__
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Comparable
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CSV/Writer
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CSV/Reader
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CGI/Cookie
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/Syck
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/Omap
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/QName
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/Error
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/SOAP
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Port
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Part
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL/Info
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/HTTPS
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/Error
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/UDPSocket
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/TypeError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/TrueClass
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test/Unit
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/TailGroup
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/TSortTest
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/TSortHash
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/TCPSocket
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/TCPServer
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SortedSet
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Singleton
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/Tee
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell/Cat
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/ToHtml
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/ToFlow
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RubyToken
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RiDisplay
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RUNIT/CUI
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Utils
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/RSS10
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/RSS09
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Maker
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Error
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML/DTD
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/RDoc
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/Page
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc/Attr
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Precision
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/ParseDate
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/NonString
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/NameError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/MatchData
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/LoadError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Interrupt
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/Frame
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/Abort
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Generator
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Finalizer
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/FileUtils
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File/Stat
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Exception
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Delegator
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CSV/IOBuf
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CGI/Html4
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CGI/Html3
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Benchmark
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/Set
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML/DBM
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/Util
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/LDAP
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/HTTP
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Tempfile
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/StringIO
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/RPC
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP/Env
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/Lines
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RiDriver
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rational
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI/Paths
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Pathname
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/NilClass
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/SMTP
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/POP3
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/IMAP
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/HTTP
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/APOP
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/SLex
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IPSocket
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/FileTest
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/ERB/Util
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/EOFError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DateTime
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CSV/Cell
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Arguable
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WeakRef
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WEBrick
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI/FTP
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Timeout
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/Rule
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/Line
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM/Flow
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RubyLex
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RiError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/Rss
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS/RDF
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Process
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Options
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/OpenURI
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Numeric
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net/FTP
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Mutex_m
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Monitor
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Marshal
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Logging
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Integer
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB/Irb
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IOError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/GServer
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DTracer
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Complex
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CSV/Row
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Binding
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD/NS
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Vector
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Tracer
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Thread
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Sync_m
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Symbol
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Struct
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/String
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Socket
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Signal
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Resolv
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Regexp
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RegAnd
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/PStore
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Object
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Module
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Method
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Matrix
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Logger
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Kernel
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IPAddr
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Fixnum
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb/GW
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Bignum
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Base64
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Abbrev
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/fatal
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/TSort
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Shell
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Scanf
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Rinda
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RegOr
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Range
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RUNIT
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/REXML
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Queue
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Prime
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Open3
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Mutex
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Kconv
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Iconv
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Float
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Errno
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Class
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Array
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Zlib
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/YAML
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/WSDL
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Time
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Test
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Sync
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SOAP
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Racc
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RDoc
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Proc
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Ping
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Math
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Mail
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/List
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Hash
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Find
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Fill
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/File
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Date
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Data
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XSD
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XMP
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/XML
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/URI
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Set
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RSS
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Net
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/NKF
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IRB
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Foo
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/ERB
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/Dir
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DRb
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/DOT
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CSV
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/CGI
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/ACL
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/SM
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/RI
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/PP
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/IO
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system/GC
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8/system
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri/1.8
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share/ri
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/share
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/rubygems/package/tar_reader
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/rubygems/package
+@exec mkdir -p %D/share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/rubygems/indexer
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/rubygems/indexer
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/rubygems/ext
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/rubygems/digest
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/rubygems/defaults
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/rubygems/commands
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/rubygems
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/rbconfig
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/jruby/openssl
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/jruby
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/duby/plugin
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/duby/ast
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/duby
+@exec mkdir -p %D/share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/compiler/pruby
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/compiler/pruby
+@exec mkdir -p %D/share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/compiler/duby/plugin
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/compiler/duby/plugin
+@exec mkdir -p %D/share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/compiler/duby/ast
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/compiler/duby/ast
+@exec mkdir -p %D/share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/compiler/duby
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/compiler/duby
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/compiler
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/builtin/javasupport/utilities
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/builtin/javasupport/proxy
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/builtin/javasupport/core_ext
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/builtin/javasupport
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/builtin/java
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/builtin/core_ext
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8/builtin
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby/1.8
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/site_ruby
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/specifications
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/sources-0.0.1/lib
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/sources-0.0.1
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/stories/resources/test
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/stories/resources/stories
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/stories/resources/steps
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/stories/resources/spec
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/stories/resources/matchers
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/stories/resources/helpers
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/stories/resources
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/stories/pending_stories
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/stories/mock_framework_integration
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/stories/interop
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/stories/example_groups
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/stories
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/story/runner
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/story/extensions
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/story
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/runner/spec_parser
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/runner/resources
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/runner/formatter/story
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/runner/formatter
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/runner
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/package
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/mocks
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/matchers
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/interop/test/unit/resources
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/interop/test/unit
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/interop/test
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/interop
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/extensions
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/expectations/extensions
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/expectations/differs
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/expectations
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/example/example_group
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec/example
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/spec
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec/autotest
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/spec
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/rake_tasks
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/plugins/mock_frameworks
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/plugins
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/story/runner
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/story/extensions
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/story
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/runner/formatter/story
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/runner/formatter
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/runner
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/rake
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/mocks/extensions
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/mocks
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/matchers
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/interop/test/unit/ui/console
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/interop/test/unit/ui
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/interop/test/unit
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/interop/test
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/interop
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/extensions
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/expectations/extensions
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/expectations/differs
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/expectations
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec/example
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/spec
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib/autotest
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/lib
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/failing_examples
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/examples/stories/steps
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/examples/stories/game-of-life/life
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/examples/stories/game-of-life/behaviour/stories
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/examples/stories/game-of-life/behaviour/examples
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/examples/stories/game-of-life/behaviour
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/examples/stories/game-of-life
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/examples/stories
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/examples/pure
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/examples
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4/bin
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rspec-1.1.4
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/data/unittest
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/data/statusreturn
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/data/rbext
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/data/rakelib
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/data/namespace
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/data/multidesc
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/data/imports
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/data/file_creation_task
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/data/dryrun
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/data/default
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/data/chains
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/data
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test/contrib
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rake-0.8.1/test
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rake-0.8.1/lib/rake/loaders
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rake-0.8.1/lib/rake/contrib
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rake-0.8.1/lib/rake
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rake-0.8.1/lib
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rake-0.8.1/doc/release_notes
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rake-0.8.1/doc/example
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rake-0.8.1/doc
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rake-0.8.1/bin
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems/rake-0.8.1
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/gems
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Test/Unit/UI/Console/TestRunner
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Test/Unit/UI/Console
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Test/Unit/UI
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Test/Unit/TestSuiteAdapter
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Test/Unit/TestResult
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Test/Unit/TestCase
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Test/Unit/AutoRunner
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Test/Unit
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Test
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Symbol
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/String
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/VERSION
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Translator
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/World
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Story
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/StepMother
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/StepGroupHash
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/StepGroup
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Step
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Scenario
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Runner/StoryRunner
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Runner/StoryParser/WhenState
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Runner/StoryParser/ThenState
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Runner/StoryParser/StoryState
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Runner/StoryParser/State
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Runner/StoryParser/StartingState
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Runner/StoryParser/ScenarioState
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Runner/StoryParser/GivenState
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Runner/StoryParser
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Runner/StoryMediator/Story
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Runner/StoryMediator/Step
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Runner/StoryMediator/Scenario
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Runner/StoryMediator
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Runner/ScenarioRunner
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Runner/ScenarioCollector
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Runner/PlainTextStoryRunner
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Runner/IllegalStepError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Runner
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/GivenScenario
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Extensions/Main/StoryRunnerStepGroupAdapter
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Extensions/Main
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story/Extensions
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Story
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/SpecParser
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Reporter/Failure
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Reporter
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/QuietBacktraceTweaker
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Options
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/OptionParser
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/NoisyBacktraceTweaker
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Heckler
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/HeckleRunner
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/TextMateFormatter
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/Story/PlainTextFormatter
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/Story/HtmlFormatter
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/Story
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/SpecdocFormatter
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/SnippetExtractor/NullConverter
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/SnippetExtractor
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/ProgressBarFormatter
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/ProfileFormatter
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/NestedTextFormatter
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/HtmlFormatter
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/FailingExamplesFormatter
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/FailingExampleGroupsFormatter
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/BaseTextFormatter
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter/BaseFormatter
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/Formatter
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/ExampleGroupRunner
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/DrbCommandLine
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/CommandLine
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/ClassAndArgumentsParser
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner/BacktraceTweaker
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Runner
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Rake/SpecTask
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Rake
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/StringArgConstraint
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/Space
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/RegexpArgConstraint
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/Proxy
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/OrderGroup
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/NumericArgConstraint
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/NoArgsConstraint
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/NegativeMessageExpectation
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/MockExpectationError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/Mock
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/Methods
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/MessageExpectation
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/MatcherConstraint
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/LiteralArgConstraint
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/HashIncludingConstraint
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/ExampleMethods
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/ErrorGenerator
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/DuckTypeArgConstraint
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/BooleanArgConstraint
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/BaseExpectation
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/ArgumentExpectation
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/ArgumentConstraintMatchers
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/AnyArgsConstraint
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/AnyArgConstraint
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks/AmbiguousReturnError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Mocks
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/MetaClass
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Matchers/ThrowSymbol
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Matchers/SimpleMatcher
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Matchers/Satisfy
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Matchers/RespondTo
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Matchers/RaiseError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Matchers/PositiveOperatorMatcher
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Matchers/NegativeOperatorMatcher
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Matchers/ModuleMethods
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Matchers/MatcherError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Matchers/Match
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Matchers/Include
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Matchers/Have
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Matchers/Has
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Matchers/Exist
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Matchers/Equal
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Matchers/Eql
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Matchers/Change
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Matchers/BeClose
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Matchers/Be
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Matchers/BaseOperatorMatcher
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Matchers
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Extensions/Main
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Extensions
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Expectations/StringHelpers
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Expectations/ObjectExpectations
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Expectations/NegativeExpectationMatcherHandler
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Expectations/MatcherHandlerHelper
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Expectations/InvalidMatcherError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Expectations/ExpectationNotMetError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Expectations/ExpectationMatcherHandler
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Expectations/Differs/Default
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Expectations/Differs
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Expectations
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Example/SharedExampleGroup
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Example/PendingExampleFixedError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Example/Pending
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Example/ModuleReopeningFix
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Example/ModuleInclusionWarnings/MethodDispatcher
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Example/ModuleInclusionWarnings
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Example/ExamplePendingError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Example/ExampleMethods
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Example/ExampleMatcher
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Example/ExampleGroupMethods
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Example/ExampleGroupFactory
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Example/ExampleGroup
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Example/Configuration
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec/Example
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Spec
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/RspecCommandError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Regexp
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/RCov/VerifyTask
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/RCov
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Object
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Class
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Autotest/Rspec
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri/Autotest
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/ri
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/story/runner
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/story/extensions
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/story
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/runner/formatter/story
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/runner/formatter
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/runner
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/rake
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/mocks/extensions
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/mocks
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/matchers
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/interop/test/unit/ui/console
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/interop/test/unit/ui
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/interop/test/unit
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/interop/test
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/interop
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/extensions
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/expectations/extensions
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/expectations/differs
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/expectations
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec/example
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/spec
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib/autotest
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files/lib
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/files
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Test/Unit/UI/Console
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Test/Unit/UI
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Test/Unit
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Test
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Story/Runner/StoryParser
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Story/Runner/StoryMediator
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Story/Runner
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Story/Extensions/Main
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Story/Extensions
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Story
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Runner/Reporter
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Runner/Formatter/Story
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Runner/Formatter/SnippetExtractor
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Runner/Formatter
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Runner
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Rake
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Mocks
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Matchers
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Extensions
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Expectations/Differs
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Expectations
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Example/ModuleInclusionWarnings
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec/Example
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Spec
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/RCov
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes/Autotest
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc/classes
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4/rdoc
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rspec-1.1.4
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Time
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Test/Unit/Collector/Dir
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Test/Unit/Collector
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Test/Unit
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Test
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Sys
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/String
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/SshFreshDirPublisher
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/SshFilePublisher
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/SshDirPublisher
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/RakeFileUtils
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/TestTask
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/TaskManager
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/TaskLib
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/TaskArguments
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/Task
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/SshFreshDirPublisher
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/SshFilePublisher
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/SshDirPublisher
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/RuleRecursionOverflowError
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/RubyForgePublisher
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/RDocTask
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/PackageTask
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/NameSpace
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/MultiTask
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/MakefileLoader
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/InvocationChain/EmptyInvocationChain
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/InvocationChain
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/GemPackageTask
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/FtpUploader
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/FtpFile
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/FileTask
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/FileList
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/FileCreationTask
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/EarlyTime
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/DefaultLoader
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/CompositePublisher
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/Cloneable
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake/Application
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Rake
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/Module
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/FileUtils
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri/CompositePublisher
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/ri
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/files/lib/rake/loaders
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/files/lib/rake/contrib
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/files/lib/rake
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/files/lib
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/files/doc/release_notes
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/files/doc
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/files
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/classes/Test/Unit/Collector
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/classes/Test/Unit
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/classes/Test
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/classes/Rake/InvocationChain
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/classes/Rake
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc/classes
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1/rdoc
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc/rake-0.8.1
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/doc
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8/cache
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems/1.8
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/gems
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/xsd/xmlparser
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/xsd/codegen
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/xsd
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/xmlrpc
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/wsdl/xmlSchema
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/wsdl/soap
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/wsdl
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/webrick/httpservlet
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/webrick/httpauth
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/webrick
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/uri
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/test/unit/util
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/test/unit/ui/tk
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/test/unit/ui/gtk2
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/test/unit/ui/gtk
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/test/unit/ui/fox
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/test/unit/ui/console
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/test/unit/ui
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/test/unit/collector
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/test/unit
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/test
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/soap/rpc
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/soap/mapping
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/soap/header
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/soap/encodingstyle
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/soap
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/shell
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/runit/cui
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/runit
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rss/maker
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rss
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rinda
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rexml/validation
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rexml/parsers
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rexml/light
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rexml/formatters
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rexml/encodings
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rexml/dtd
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rexml
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rdoc/ri
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rdoc/parsers
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rdoc/markup/test
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rdoc/markup/simple_markup
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rdoc/markup/sample
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rdoc/markup
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rdoc/generators/template/xml
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rdoc/generators/template/html
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rdoc/generators/template/chm
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rdoc/generators/template
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rdoc/generators
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rdoc/dot
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/rdoc
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/racc
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/optparse
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/net
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/irb/lc/ja
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/irb/lc
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/irb/ext
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/irb/cmd
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/irb
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/io
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/drb
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/date
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/cgi/session
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/cgi
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8/bigdecimal
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby/1.8
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib/ruby
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/lib
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%/bin
+@dirrm share/%%PORTNAME%%-%%PORTVERSION%%
+@dirrm %%EXAMPLESDIR%%/minijava
+@dirrm %%EXAMPLESDIR%%/ext
+@dirrm %%EXAMPLESDIR%%/duby
+@dirrm %%EXAMPLESDIR%%
+@exec mkdir -p %D/%%DOCSDIR%%/rbyaml
+@dirrm %%DOCSDIR%%/rbyaml
+@exec mkdir -p %D/%%DOCSDIR%%/patches/rubylib
+@dirrm %%DOCSDIR%%/patches/rubylib
+@exec mkdir -p %D/%%DOCSDIR%%/patches/rails
+@dirrm %%DOCSDIR%%/patches/rails
+@exec mkdir -p %D/%%DOCSDIR%%/patches
+@dirrm %%DOCSDIR%%/patches
+@dirrm %%DOCSDIR%%/jvyaml
+@exec mkdir -p %D/%%DOCSDIR%%/api
+@dirrm %%DOCSDIR%%/api
+@dirrm %%DOCSDIR%%