Skip site navigation (1)Skip section navigation (2)
Date:      Tue,  4 Dec 2012 01:01:52 -0800 (PST)
From:      Stanislav Sedov <stas@freebsd.localdomain>
To:        FreeBSD-gnats-submit@FreeBSD.org
Subject:   ports/174103: [NEW PORT] lang/ruby20: An object-oriented interpreted scripting language
Message-ID:  <20121204090152.27BDF50F4C@freebsd.localdomain>
Resent-Message-ID: <201212040910.qB49A07O083704@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help

>Number:         174103
>Category:       ports
>Synopsis:       [NEW PORT] lang/ruby20: An object-oriented interpreted scripting language
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Tue Dec 04 09:10:00 UTC 2012
>Closed-Date:
>Last-Modified:
>Originator:     Stanislav Sedov
>Release:        FreeBSD 10.0-CURRENT amd64
>Organization:
>Environment:
System: FreeBSD freebsd 10.0-CURRENT FreeBSD 10.0-CURRENT #1 r243832: Mon Dec  3 16:44:01
>Description:

This change adds new ruby port for ruby 2.0.0 preview2.

>How-To-Repeat:
>Fix:

I actually svn copy ruby19 to ruby20 and made my changes there.
I however including the whole patch.  I can send the patch against ruby19
as well if needed.

Index: Mk/bsd.ruby.mk
===================================================================
--- Mk/bsd.ruby.mk	(revision 308204)
+++ Mk/bsd.ruby.mk	(working copy)
@@ -188,6 +188,7 @@ RUBY_WRKSRC=		${WRKDIR}/ruby-${RUBY_DISTVERSION}
 #
 RUBY18=			""
 RUBY19=			"@comment "
+RUBY20=			"@comment "
 
 . elif ${RUBY_VER} == 1.9
 #
@@ -213,12 +214,40 @@ RUBY_CONFIGURE_ARGS+=	--with-rubyhdrdir="${PREFIX}
 #
 RUBY18=			"@comment "
 RUBY19=			""
+RUBY20=			"@comment "
 
+. elif ${RUBY_VER} == 2.0
+#
+# Ruby 2.0
+#
+RUBY_RELVERSION=	2.0.0
+RUBY_PORTREVISION=	0
+RUBY_PORTEPOCH=		0
+RUBY_PATCHLEVEL=	0
+
+RUBY_VERSION?=		${RUBY_RELVERSION}.p2
+RUBY_DISTVERSION?=	${RUBY_RELVERSION}-preview2
+
+RUBY_WRKSRC=		${WRKDIR}/ruby-${RUBY_DISTVERSION}
+
+RUBY_CONFIGURE_ARGS+=	--with-rubyhdrdir="${PREFIX}/include/ruby-2.0/" \
+			--with-rubylibprefix="${PREFIX}/lib/ruby" \
+			--docdir="${RUBY_DOCDIR}" \
+			--with-soname=ruby20
+
+#
+# PLIST_SUB helpers
+#
+RUBY18=			"@comment "
+RUBY19=			"@comment "
+RUBY20=			""
+
+
 . else
 #
 # Other versions
 #
-IGNORE=	Only ruby 1.8 and 1.9 are supported
+IGNORE=	Only ruby 1.8, 1.9 and 2.0 are supported
 . endif
 .endif # defined(RUBY_VER)
 
@@ -316,7 +345,8 @@ PLIST_SUB+=		${PLIST_RUBY_DIRS:C,DIR="(${LOCALBASE
 			RUBY_NAME="${RUBY_NAME}" \
 			RUBY_DEFAULT_SUFFIX="${RUBY_DEFAULT_SUFFIX}" \
 			RUBY18=${RUBY18} \
-			RUBY19=${RUBY19}
+			RUBY19=${RUBY19} \
+			RUBY20=${RUBY20} \
 
 .if defined(USE_RUBY_RDOC)
 MAKE_ENV+=	RUBY_RDOC=${RUBY_RDOC}
Index: lang/ruby20/Makefile
===================================================================
--- lang/ruby20/Makefile	(revision 0)
+++ lang/ruby20/Makefile	(working copy)
@@ -0,0 +1,309 @@
+# Created by:	Akinori MUSHA aka knu <knu@idaemons.org>
+# $FreeBSD$
+
+PORTNAME=	ruby
+PORTVERSION=	${RUBY_PORTVERSION}
+PORTREVISION=	${RUBY_PORTREVISION}
+PORTEPOCH=	${RUBY_PORTEPOCH}
+CATEGORIES=	lang ruby ipv6
+MASTER_SITES=		${MASTER_SITE_RUBY}
+MASTER_SITE_SUBDIR=	${MASTER_SITE_SUBDIR_RUBY}
+DISTNAME=	${RUBY_DISTNAME}
+DIST_SUBDIR=	ruby
+
+MAINTAINER=	ruby@FreeBSD.org
+COMMENT?=	An object-oriented interpreted scripting language
+
+LIB_DEPENDS=	ffi.5:${PORTSDIR}/devel/libffi \
+		yaml-0.2:${PORTSDIR}/textproc/libyaml \
+		execinfo.1:${PORTSDIR}/devel/libexecinfo
+
+GNU_CONFIGURE=	yes
+WRKSRC=		${RUBY_WRKSRC}
+CONFIGURE_ARGS=	${RUBY_CONFIGURE_ARGS} \
+		--enable-shared \
+		--enable-pthread \
+		--with-ruby-version=minor \
+		--with-sitedir="${PREFIX}/lib/ruby/site_ruby" \
+		--with-vendordir="${PREFIX}/lib/ruby/vendor_ruby"
+USE_OPENSSL=	yes
+USE_LDCONFIG=	yes
+USE_AUTOTOOLS=	autoconf
+
+WRKSRC=		${WRKDIR}/${PORTNAME}-${RUBY_DISTVERSION}
+
+RUBY_VER=		2.0
+USE_BZIP2=		yes
+USE_RUBY=		yes
+RUBY_NO_BUILD_DEPENDS=	yes
+RUBY_NO_RUN_DEPENDS=	yes
+_RUBY_SYSLIBDIR=	${PREFIX}/lib
+_RUBY_EXTDIR=		${PREFIX}/lib/ruby19
+
+MAKE_JOBS_UNSAFE=	yes
+
+NO_LATEST_LINK=	yes
+
+OPTIONS=	RDOC "Build and install Rdoc indexes" off \
+		DEBUG "Compile-in debug info" off
+
+.include <bsd.port.pre.mk>
+
+# PORTEPOCH/PORTREVISION hack
+
+.if ${PORTEPOCH} != 0
+_SUF2=	,${PORTEPOCH}
+.endif
+
+.if ${PORTREVISION} != 0
+_SUF1=	_${PORTREVISION}
+.endif
+
+PKGNAMESUFFIX=	#empty
+CFLAGS+=	${PTHREAD_CFLAGS}	# Keep this, else ruby will fail to load
+LDFLAGS+=	${PTHREAD_LIBS}		# libraries dependent op libpthread.
+
+#
+# Disable doc generation if requested or docs disabled at all
+#
+.if defined(WITH_RDOC) && !defined(NOPORTDOCS)
+CONFIGURE_ARGS+=	--enable-install-doc
+.else
+CONFIGURE_ARGS+=	--disable-install-doc
+.endif
+
+CONFIGURE_ENV=	CFLAGS="-I${LOCALBASE}/include ${CFLAGS}" \
+		LIBS="-L${LOCALBASE}/lib ${LDFLAGS}" \
+		debugflags=
+
+.if ${RUBY_VER} == ${RUBY_DEFAULT_VER}
+MLINKS=		${RUBY_NAME}.1 ruby.1
+PLIST_SUB+=	IF_DEFAULT=""
+.else
+PLIST_SUB+=	IF_DEFAULT="@comment "
+.endif
+
+INSTALLED_SCRIPTS=	irb erb rdoc ri ruby testrb
+
+EXTSAMPLES=	bigdecimal/sample/*.rb	\
+		curses/hello.rb		\
+		curses/rain.rb		\
+		curses/view.rb		\
+		curses/view2.rb
+
+EXTDOCS=	readline/README*		\
+		ripper/README			\
+		stringio/README			\
+		syslog/syslog.txt
+
+MAN1=		${RUBY_NAME}.1 erb${RUBY_SUFFIX}.1  irb${RUBY_SUFFIX}.1 \
+		ri${RUBY_SUFFIX}.1
+
+# Macros to change variables in rbconfig.rb
+RB_SET_CONF_VAR=${SH} -c '${REINPLACE_CMD} -E -e "s,(CONFIG\[\"$$0\"\][[:space:]]*=[[:space:]]*)(\(?)(.*)(\)?),\1\2$$1\4," ${WRKSRC}/rbconfig.rb' --
+
+post-patch:
+	@${REINPLACE_CMD} -E \
+		-e 's,-l$$pthread_lib,${PTHREAD_LIBS},g' \
+		-e '/^RUBY_LIB_PATH/s,\.\$$\{TEENY\},,' \
+		-e '/^RUBY_SITE_LIB_PATH2/s,\.\$$\{TEENY\},,' \
+		-e '/^RUBY_VENDOR_LIB_PATH2/s,\.\$$\{TEENY\},,' \
+		${WRKSRC}/configure
+
+	#
+	# Eliminate all leftovers
+	#
+	@${FIND} ${WRKSRC}/ -name "*.orig" -delete
+
+#
+# Remove modules we don't want
+#
+.for d in win32ole
+	${RM} -rf ${BUILD_WRKSRC}/ext/${d}
+.endfor
+# We get rake from ports.
+.for d in bin/rake doc/rake lib/rake test/rake man/rake.1 lib/rake.rb
+	${RM} -rf ${BUILD_WRKSRC}/${d}
+.endfor
+# We get the gem executable from ports.
+	${RM} ${BUILD_WRKSRC}/bin/gem
+
+#
+# Prepare modules we are wanting to build via external ports
+#
+.for d in gdbm iconv tk
+	${MV} ${BUILD_WRKSRC}/ext/${d} ${WRKDIR}/
+.endfor
+
+post-build:
+#
+# Hack to allow modules to be installed into separate PREFIX and/or under user
+# privilegies
+#
+	@${RB_SET_CONF_VAR} "prefix" "ENV['PREFIX'] || \3"
+	@${RB_SET_CONF_VAR} "INSTALL" "ENV['RB_USER_INSTALL'] ? '/usr/bin/install -c' : '/usr/bin/install -c ${_BINOWNGRP}'"
+	@${RB_SET_CONF_VAR} "INSTALL_PROGRAM" "ENV['RB_USER_INSTALL'] ? '${INSTALL} ${COPY} ${STRIP} -m ${BINMODE}' : '${INSTALL_PROGRAM}'"
+	@${RB_SET_CONF_VAR} "INSTALL_SCRIPT" "ENV['RB_USER_INSTALL'] ? '${INSTALL} ${COPY} -m ${BINMODE}' : '${INSTALL_SCRIPT}'"
+	@${RB_SET_CONF_VAR} "INSTALL_DATA" "ENV['RB_USER_INSTALL'] ? '${INSTALL} ${COPY} -m ${SHAREMODE}' : '${INSTALL_DATA}'"
+
+pre-su-install:
+	${MKDIR}	${RUBY_DOCDIR}		\
+			${RUBY_EXAMPLESDIR}	\
+			${RUBY_RIDIR}		\
+			${RUBY_SITERIDIR}	\
+			${RUBY_SITEARCHLIBDIR}	\
+			${RUBY_VENDORARCHLIBDIR}
+
+	${SETENV} LC_TIME=C /bin/date > ${RUBY_RIDIR}/created.rid
+	${SETENV} LC_TIME=C /bin/date > ${RUBY_SITERIDIR}/created.rid
+	${TOUCH} ${RUBY_EXAMPLESDIR}/.keep_me
+	${TOUCH} ${RUBY_DOCDIR}/.keep_me
+	${TOUCH} ${RUBY_SITEARCHLIBDIR}/.keep_me
+	${TOUCH} ${RUBY_VENDORARCHLIBDIR}/.keep_me
+
+post-install:
+#
+# XXX: hack to strip ruby binary. Ruby uses its own install script that seems
+# bogus to hack.
+#
+.if defined(STRIP) && ${STRIP} == -s
+	${STRIP_CMD} ${PREFIX}/bin/${RUBY_NAME}
+.endif
+
+#
+# Link just installed "ruby" to "ruby18", etc.
+#
+.if ${RUBY_VER} == ${RUBY_DEFAULT_VER}
+. for FILE in ${INSTALLED_SCRIPTS}
+	${LN} -f ${PREFIX}/bin/${FILE}${RUBY_SUFFIX} ${PREFIX}/bin/${FILE}
+. endfor
+.endif
+
+.if !defined(NOPORTDOCS)
+	# Create all dirs required (":u" isn't avaiable in STABLE yet :-()
+	${MKDIR} ${EXTSAMPLES:C,^([^/]+)/.*,\1,:S,^,${RUBY_EXAMPLESDIR}/,}
+	${MKDIR} ${EXTDOCS:C,^([^/]+)/.*,\1,:S,^,${RUBY_DOCDIR}/,}
+.for FILE in ${EXTSAMPLES}
+	${INSTALL_DATA} ${WRKSRC}/ext/${FILE} \
+		${RUBY_EXAMPLESDIR}/${FILE:C,^([^/]+)/.*,\1,}/
+.endfor
+.for FILE in ${EXTDOCS}
+	${INSTALL_DATA} ${WRKSRC}/ext/${FILE} \
+		${RUBY_DOCDIR}/${FILE:C,^([^/]+)/.*,\1,}/
+.endfor
+	@(cd ${WRKSRC}/sample/ && ${COPYTREE_SHARE} \* ${RUBY_EXAMPLESDIR}/)
+	@(cd ${WRKSRC}/doc/ && ${COPYTREE_SHARE} \* ${RUBY_DOCDIR}/)
+	${INSTALL_DATA} ${WRKSRC}/COPYING*	\
+			${WRKSRC}/ChangeLog	\
+			${WRKSRC}/LEGAL		\
+			${WRKSRC}/README*	\
+			${RUBY_DOCDIR}/
+.endif
+
+#
+# Add generated RI files to pkg-plist
+#
+	@${FIND} -ds ${RUBY_RIDIR}/ ! -type d ! -name created.rid | \
+		${SED} 's,^${PREFIX}/,,' >> ${TMPPLIST}
+	@${FIND} -ds ${RUBY_RIDIR}/ -type d -mindepth 1 | \
+		${SED} -E -e 's,^${PREFIX}/,@dirrm ,' >> ${TMPPLIST}
+
+
+#
+# Add generated doxygen files to pkg-plist
+#
+	@${ECHO_CMD} "@unexec rmdir %D/${RUBY_SITERIDIR:S,^${PREFIX}/,,} 2>/dev/null || true" >> ${TMPPLIST}
+	@${ECHO_CMD} "@unexec rmdir %D/${RUBY_RIDIR:S,^${PREFIX}/,,} 2>/dev/null || true" >> ${TMPPLIST}
+	@${ECHO_CMD} "@unexec rmdir %D/share/ri/${RUBY_VER} 2>/dev/null || true" >> ${TMPPLIST}
+	@${ECHO_CMD} "@unexec rmdir %D/share/ri 2>/dev/null || true" >> ${TMPPLIST}
+	@${ECHO_CMD} "@unexec rmdir %D/${RUBY_DOCDIR:S,^${PREFIX}/,,} 2>/dev/null || true" >> ${TMPPLIST}
+
+	@${CAT} ${PKGMESSAGE}
+
+plist::
+	truncate -s0 pkg-plist
+.for FILE in ${INSTALLED_SCRIPTS}
+	@${ECHO_CMD} "bin/${FILE}%%RUBY_SUFFIX%%" >> pkg-plist
+	@${ECHO_CMD} "%%IF_DEFAULT%%bin/${FILE}" >> pkg-plist
+.endfor
+	@${ECHO_CMD} "lib/lib%%RUBY_NAME%%-static.a" >> pkg-plist
+	@${ECHO_CMD} "lib/lib%%RUBY_NAME%%.so" >> pkg-plist
+	@${ECHO_CMD} "lib/lib%%RUBY_NAME%%.so.%%RUBY_SHLIBVER%%" >> pkg-plist
+	@${ECHO_CMD} "libdata/pkgconfig/ruby-2.0.pc" >> pkg-plist
+
+#
+# Includes
+#
+	@${FIND} -ds ${PREFIX}/include/ruby-${RUBY_VER} ! -type d | \
+		${SED} 's,^${PREFIX}/*,,' >> pkg-plist
+	@${FIND} -ds ${PREFIX}/include/ruby-${RUBY_VER} -type d | \
+		${SED} 's,^${PREFIX}/*,@dirrm ,' >> pkg-plist
+
+#
+# Vendor and site libs
+#
+	@${FIND} -Eds ${RUBY_DOCDIR}/ ! -type d ! -name .keep_me | \
+		${SED} 's,^${RUBY_DOCDIR},%%PORTDOCS%%%%RUBY_DOCDIR%%,' \
+		 >> pkg-plist
+	@${FIND} -Eds ${RUBY_DOCDIR}/ -type d -mindepth 1 | ${SORT} -r | \
+		${SED} -E -e \
+		's,^${RUBY_DOCDIR}(.*),%%PORTDOCS%%@dirrm %%RUBY_DOCDIR%%\1,' \
+		>> pkg-plist
+
+	@${FIND} -ds ${RUBY_EXAMPLESDIR}/ ! -type d ! -name .keep_me | \
+		${SED} 's,^${RUBY_EXAMPLESDIR},%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%,' \
+		 >> pkg-plist
+	@${FIND} -ds ${RUBY_EXAMPLESDIR}/ -type d -mindepth 1 | ${SORT} -r | \
+		${SED} -E -e \
+		's,^${RUBY_EXAMPLESDIR}(.*),%%PORTDOCS%%@dirrm %%RUBY_EXAMPLESDIR%%\1,' \
+		>> pkg-plist
+
+	@${ECHO_CMD} "%%RUBY_DOCDIR%%/.keep_me" >> pkg-plist
+#	@${ECHO_CMD} "@dirrmtry %%RUBY_DOCDIR%%" >> pkg-plist
+
+	@${ECHO_CMD} "%%RUBY_EXAMPLESDIR%%/.keep_me" >> pkg-plist
+	@${ECHO_CMD} "@dirrmtry %%RUBY_EXAMPLESDIR%%" >> pkg-plist
+
+	@${ECHO_CMD} "@exec /bin/mkdir -p %D/%%RUBY_RIDIR%%" >> pkg-plist
+	@${ECHO_CMD} "@exec env LC_TIME=C /bin/date > %D/%%RUBY_RIDIR%%/created.rid" >> pkg-plist
+	@${ECHO_CMD} "@unexec /bin/rm -f %D/%%RUBY_RIDIR%%/created.rid" \
+		>> pkg-plist
+
+	@${ECHO_CMD} "@exec /bin/mkdir -p %D/%%RUBY_SITERIDIR%%" >> pkg-plist
+	@${ECHO_CMD} "@exec env LC_TIME=C /bin/date > %D/%%RUBY_SITERIDIR%%/created.rid"  >> pkg-plist
+	@${ECHO_CMD} "@unexec /bin/rm -f %D/%%RUBY_SITERIDIR%%/created.rid" \
+		>> pkg-plist
+
+	@${FIND} -ds ${RUBY_LIBDIR}/ ! -type d | \
+		${SED} 's,^${RUBY_LIBDIR},%%RUBY_LIBDIR%%,' >> pkg-plist
+	@${FIND} -ds ${RUBY_LIBDIR}/ -type d | ${SORT} -r | \
+		${SED} -E -e 's,^${RUBY_LIBDIR}(.*),@dirrm %%RUBY_LIBDIR%%\1,' >> pkg-plist
+
+#
+# Find all gem files/folders
+#
+	@${ECHO_CMD} "%%RUBY_SITEARCHLIBDIR%%/.keep_me" >> pkg-plist
+	@${ECHO_CMD} "@dirrmtry %%RUBY_SITEARCHLIBDIR%%" >> pkg-plist
+	@${ECHO_CMD} "@dirrmtry %%RUBY_SITELIBDIR%%" >> pkg-plist
+	@${ECHO_CMD} "@dirrmtry lib/ruby/site_ruby" >> pkg-plist
+
+	@${ECHO_CMD} "%%RUBY_VENDORARCHLIBDIR%%/.keep_me" >> pkg-plist
+	@${ECHO_CMD} "@dirrmtry %%RUBY_VENDORARCHLIBDIR%%" >> pkg-plist
+	@${ECHO_CMD} "@dirrmtry %%RUBY_VENDORLIBDIR%%" >> pkg-plist
+	@${ECHO_CMD} "@dirrmtry lib/ruby/vendor_ruby" >> pkg-plist
+
+	@${ECHO_CMD} "@dirrmtry lib/ruby" >> pkg-plist
+
+	@${SED} -i "" -E -e "s,${RUBY_ARCH},%%RUBY_ARCH%%,g" pkg-plist
+
+test:
+	@(cd ${WRKSRC}; ${MAKE} test)
+
+validate::
+	@${MKDIR} ${WRKSRC}/rubyspec
+	rm -rf ${WRKSRC}/rubyspec/*
+	(cd ${WRKSRC}/rubyspec && git clone git://github.com/rubyspec/rubyspec.git)
+	(cd ${WRKSRC}/rubyspec && git clone git://github.com/rubyspec/mspec.git)
+	(cd ${WRKSRC}/rubyspec/rubyspec && env PATH=${WRKSRC}/rubyspec/mspec/bin:${PATH} mspec -t ${PREFIX}/bin/ruby${RUBY_SUFFIX})
+
+.include <bsd.port.post.mk>

Property changes on: lang/ruby20/Makefile
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: svn:keywords
## -0,0 +1 ##
+FreeBSD=%H
\ No newline at end of property
Index: lang/ruby20/distinfo
===================================================================
--- lang/ruby20/distinfo	(revision 0)
+++ lang/ruby20/distinfo	(working copy)
@@ -0,0 +1,2 @@
+SHA256 (ruby/ruby-2.0.0-preview2.tar.bz2) = cea98c000a113f10cb7d55753c759da1f1baa7ca9b3edf75fc19fa5f44bf71a0
+SIZE (ruby/ruby-2.0.0-preview2.tar.bz2) = 10722295

Property changes on: lang/ruby20/distinfo
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: fbsd:nokeywords
## -0,0 +1 ##
+yes
\ No newline at end of property
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Index: lang/ruby20/files/patch-common.mk
===================================================================
--- lang/ruby20/files/patch-common.mk	(revision 308204)
+++ lang/ruby20/files/patch-common.mk	(working copy)
@@ -1,19 +0,0 @@
---- common.mk.orig	2011-05-17 21:19:20.689620679 -0400
-+++ common.mk	2011-05-17 21:19:28.688621223 -0400
-@@ -256,7 +256,7 @@
- install-capi: capi pre-install-capi do-install-capi post-install-capi
- pre-install-capi:: install-prereq
- do-install-capi: $(PREP)
--	$(INSTRUBY) --make="$(MAKE)" $(INSTRUBY_ARGS) --install=capi
-+	@$(NULLCMD)
- post-install-capi::
- 	@$(NULLCMD)
- 
-@@ -738,7 +738,6 @@
- 	$(BASERUBY) -I$(srcdir) $(srcdir)/tool/compile_prelude.rb $(srcdir)/prelude.rb $@
- 
- prelude.c: $(srcdir)/tool/compile_prelude.rb $(RBCONFIG) \
--	   $(srcdir)/lib/rubygems/defaults.rb $(srcdir)/lib/rubygems/custom_require.rb \
- 	   $(PRELUDE_SCRIPTS) $(PREP)
- 	$(COMPILE_PRELUDE) $(PRELUDE_SCRIPTS) $@
- 
Index: lang/ruby20/files/patch-configure.in
===================================================================
--- lang/ruby20/files/patch-configure.in	(revision 0)
+++ lang/ruby20/files/patch-configure.in	(working copy)
@@ -0,0 +1,36 @@
+--- configure.in.orig	2012-11-27 22:45:25.000000000 -0800
++++ configure.in	2012-12-03 23:15:58.000000000 -0800
+@@ -1298,11 +1298,11 @@
+   ac_cv_func_shutdown=no
+   ],
+ [	LIBS="-lm $LIBS"])
+-AC_CHECK_LIB(crypt, crypt)
+-AC_CHECK_LIB(dl, dlopen)	# Dynamic linking for SunOS/Solaris and SYSV
+-AC_CHECK_LIB(dld, shl_load)	# Dynamic linking for HP-UX
+-AC_CHECK_LIB(socket, socketpair)	# SunOS/Solaris
+-AC_CHECK_LIB(rt, clock_gettime)	# GNU/Linux
++AC_SEARCH_LIBS(crypt, crypt)
++AC_SEARCH_LIBS(dl, dlopen)	# Dynamic linking for SunOS/Solaris and SYSV
++AC_SEARCH_LIBS(dld, shl_load)	# Dynamic linking for HP-UX
++AC_SEARCH_LIBS(socket, socketpair)	# SunOS/Solaris
++AC_SEARCH_LIBS(rt, clock_gettime)	# GNU/Linux
+ 
+ AS_CASE(["$target_cpu"],
+ [alpha*|sh4|sh4el|sh4eb], [AS_CASE(["$target_os"::"$GCC"],
+@@ -2008,7 +2008,7 @@
+ fi
+ 
+ if test x"$enable_pthread" = xyes; then
+-    for pthread_lib in thr pthread pthreads c c_r root; do
++    for pthread_lib in pthread thr pthreads c c_r root; do
+ 	AC_CHECK_LIB($pthread_lib, pthread_kill,
+ 		     rb_with_pthread=yes, rb_with_pthread=no)
+ 	if test "$rb_with_pthread" = "yes"; then break; fi
+@@ -2016,6 +2016,7 @@
+     if test x"$rb_with_pthread" = xyes; then
+ 	AC_DEFINE(_REENTRANT)
+ 	AC_DEFINE(_THREAD_SAFE)
++	[pthread],  [MAINLIBS="-pthread $MAINLIBS"],
+ 	AC_DEFINE(HAVE_LIBPTHREAD)
+ 	AC_CHECK_HEADERS(pthread_np.h, [], [], [@%:@include <pthread.h>])
+ 	AS_CASE([$pthread_lib],

Property changes on: lang/ruby20/files/patch-configure.in
___________________________________________________________________
Added: fbsd:nokeywords
## -0,0 +1 ##
+yes
\ No newline at end of property
Index: lang/ruby20/files/patch-cont.c
===================================================================
--- lang/ruby20/files/patch-cont.c	(revision 0)
+++ lang/ruby20/files/patch-cont.c	(working copy)
@@ -0,0 +1,11 @@
+--- cont.c.orig	2012-11-21 04:42:11.000000000 -0800
++++ cont.c	2012-12-03 23:17:32.000000000 -0800
+@@ -15,7 +15,7 @@
+ #include "gc.h"
+ #include "eval_intern.h"
+ 
+-#if ((defined(_WIN32) && _WIN32_WINNT >= 0x0400) || (defined(HAVE_GETCONTEXT) && defined(HAVE_SETCONTEXT))) && !defined(__NetBSD__) && !defined(__sun) && !defined(FIBER_USE_NATIVE)
++#if ((defined(_WIN32) && _WIN32_WINNT >= 0x0400) || (defined(HAVE_GETCONTEXT) && defined(HAVE_SETCONTEXT))) && !defined(__FreeBSD__) && !defined(__NetBSD__) && !defined(__sun) && !defined(FIBER_USE_NATIVE)
+ #define FIBER_USE_NATIVE 1
+ 
+ /* FIBER_USE_NATIVE enables Fiber performance improvement using system

Property changes on: lang/ruby20/files/patch-cont.c
___________________________________________________________________
Added: fbsd:nokeywords
## -0,0 +1 ##
+yes
\ No newline at end of property
Index: lang/ruby20/files/patch-lib_mkmf.rb
===================================================================
--- lang/ruby20/files/patch-lib_mkmf.rb	(revision 0)
+++ lang/ruby20/files/patch-lib_mkmf.rb	(working copy)
@@ -0,0 +1,11 @@
+--- lib/mkmf.rb.orig	2012-11-28 04:19:49.000000000 -0800
++++ lib/mkmf.rb	2012-12-03 23:18:58.000000000 -0800
+@@ -204,7 +204,7 @@
+   $extmk &&= true
+   if not $extmk and File.exist?(RbConfig::CONFIG["rubyhdrdir"] + "/ruby/ruby.h")
+     $hdrdir = CONFIG["rubyhdrdir"]
+-    $topdir = $hdrdir
++    $topdir = $hdrdir + "/" + "#{CONFIG['arch']}/ruby/"
+     $top_srcdir = $hdrdir
+     $arch_hdrdir = "$(hdrdir)/$(arch)"
+   elsif File.exist?(($hdrdir = ($top_srcdir ||= topdir) + "/include")  + "/ruby.h")

Property changes on: lang/ruby20/files/patch-lib_mkmf.rb
___________________________________________________________________
Added: fbsd:nokeywords
## -0,0 +1 ##
+yes
\ No newline at end of property
Index: lang/ruby20/files/patch-lib_uri_generic.rb
===================================================================
--- lang/ruby20/files/patch-lib_uri_generic.rb	(revision 0)
+++ lang/ruby20/files/patch-lib_uri_generic.rb	(working copy)
@@ -0,0 +1,19 @@
+--- lib/uri/generic.rb.orig	2009-06-18 16:47:45.000000000 +0400
++++ lib/uri/generic.rb	2009-06-18 16:48:54.000000000 +0400
+@@ -1032,7 +1032,15 @@
+           end
+         end
+ 
+-        str << path_query
++        path = path_query
++
++        #
++        # Add URI delimiter if the path misses it (like as in FTP)
++        #
++        if not path.empty? and not str.empty? and path[0, 1] != '/'
++          path = '/' + path 
++        end
++        str << path
+       end
+ 
+       if @fragment

Property changes on: lang/ruby20/files/patch-lib_uri_generic.rb
___________________________________________________________________
Added: fbsd:nokeywords
## -0,0 +1 ##
+yes
\ No newline at end of property
Index: lang/ruby20/files/patch-tool_mkconfig.rb
===================================================================
--- lang/ruby20/files/patch-tool_mkconfig.rb	(revision 0)
+++ lang/ruby20/files/patch-tool_mkconfig.rb	(working copy)
@@ -0,0 +1,12 @@
+--- tool/mkconfig.rb.orig	2010-10-04 00:53:53.000000000 -0700
++++ tool/mkconfig.rb	2010-10-04 00:55:18.000000000 -0700
+@@ -136,7 +136,8 @@
+ 
+ drive = File::PATH_SEPARATOR == ';'
+ 
+-prefix = "/lib/ruby/#{version}/#{arch}"
++major, minor, *rest = RUBY_VERSION.split('.')
++prefix = "/lib/ruby/#{major}.#{minor}/#{arch}"
+ print "  TOPDIR = File.dirname(__FILE__).chomp!(#{prefix.dump})\n"
+ print "  DESTDIR = ", (drive ? "TOPDIR && TOPDIR[/\\A[a-z]:/i] || " : ""), "'' unless defined? DESTDIR\n"
+ print "  CONFIG = {}\n"

Property changes on: lang/ruby20/files/patch-tool_mkconfig.rb
___________________________________________________________________
Added: fbsd:nokeywords
## -0,0 +1 ##
+yes
\ No newline at end of property
Index: lang/ruby20/files/patch-tool_rbinstall.rb
===================================================================
--- lang/ruby20/files/patch-tool_rbinstall.rb	(revision 0)
+++ lang/ruby20/files/patch-tool_rbinstall.rb	(working copy)
@@ -0,0 +1,81 @@
+--- tool/rbinstall.rb.orig	2012-11-30 19:35:36.000000000 -0800
++++ tool/rbinstall.rb	2012-12-03 23:20:50.000000000 -0800
+@@ -305,6 +305,7 @@
+ 
+ bindir = CONFIG["bindir", true]
+ libdir = CONFIG["libdir", true]
++libdatadir = CONFIG["prefix", true] + "/" + "libdata"
+ archhdrdir = rubyhdrdir = CONFIG["rubyhdrdir", true]
+ archhdrdir += "/" + CONFIG["arch", true]
+ rubylibdir = CONFIG["rubylibdir", true]
+@@ -362,7 +363,7 @@
+ install?(:local, :arch, :data) do
+   pc = CONFIG["ruby_pc"]
+   if pc and File.file?(pc) and File.size?(pc)
+-    prepare "pkgconfig data", pkgconfigdir = File.join(libdir, "pkgconfig")
++    prepare "pkgconfig data", pkgconfigdir = File.join(libdatadir, "pkgconfig")
+     install pc, pkgconfigdir, :mode => $data_mode
+   end
+ end
+@@ -684,61 +685,6 @@
+ end
+ # :startdoc:
+ 
+-install?(:ext, :comm, :gem) do
+-  $:.unshift(File.join(srcdir, "lib"))
+-  require("rubygems.rb")
+-  gem_dir = Gem.default_dir
+-  directories = Gem.ensure_gem_subdirectories(gem_dir)
+-  prepare "default gems", gem_dir, directories
+-
+-  spec_dir = File.join(gem_dir, directories.grep(/^spec/)[0])
+-  default_spec_dir = "#{spec_dir}/default"
+-  makedirs(default_spec_dir)
+-
+-  gems = {}
+-  File.foreach(File.join(srcdir, "defs/default_gems")) do |line|
+-    line.chomp!
+-    line.sub!(/\s*#.*/, '')
+-    next if line.empty?
+-    words = []
+-    line.scan(/\G\s*([^\[\]\s]+|\[([^\[\]]*)\])/) do
+-      words << ($2 ? $2.split : $1)
+-    end
+-    name, base_dir, src, execs = *words
+-    next unless name and base_dir and src
+-
+-    src       = File.join(srcdir, src)
+-    base_dir  = File.join(srcdir, base_dir)
+-    specgen   = RbInstall::Specs::Generator.new(name, base_dir, src, execs || [])
+-    gems[name] ||= specgen
+-  end
+-
+-  Dir.glob(srcdir+"/{lib,ext}/**/*.gemspec").each do |src|
+-    specgen   = RbInstall::Specs::Reader.new(src)
+-    gems[specgen.gemspec.name] ||= specgen
+-  end
+-
+-  gems.sort.each do |name, specgen|
+-    gemspec   = specgen.gemspec
+-    base_dir  = specgen.src.sub(/\A#{Regexp.escape(srcdir)}\//, "")
+-    full_name = "#{gemspec.name}-#{gemspec.version}"
+-
+-    puts "#{" "*30}#{gemspec.name} #{gemspec.version}"
+-    gemspec_path = File.join(default_spec_dir, "#{full_name}.gemspec")
+-    open_for_install(gemspec_path, $data_mode) do
+-      specgen.spec_source
+-    end
+-
+-    unless gemspec.executables.empty? then
+-      bin_dir = File.join(gem_dir, 'gems', full_name, 'bin')
+-      makedirs(bin_dir)
+-
+-      execs = gemspec.executables.map {|exec| File.join(srcdir, 'bin', exec)}
+-      install(execs, bin_dir, :mode => $prog_mode)
+-    end
+-  end
+-end
+-
+ parse_args()
+ 
+ include FileUtils

Property changes on: lang/ruby20/files/patch-tool_rbinstall.rb
___________________________________________________________________
Added: fbsd:nokeywords
## -0,0 +1 ##
+yes
\ No newline at end of property
Index: lang/ruby20/pkg-descr
===================================================================
--- lang/ruby20/pkg-descr	(revision 0)
+++ lang/ruby20/pkg-descr	(working copy)
@@ -0,0 +1,20 @@
+Ruby is the interpreted scripting language for quick and
+easy object-oriented programming.  It has many features to
+process text files and to do system management tasks (as in
+Perl).  It is simple, straight-forward, and extensible.
+
+Features of Ruby are shown below.
+
+  + Simple Syntax
+  + *Normal* Object-Oriented features(ex. class, method calls)
+  + *Advanced* Object-Oriented features(ex. Mix-in, Singleton-method)
+  + Operator Overloading
+  + Exception Handling
+  + Iterators and Closures
+  + Garbage Collection
+  + Dynamic Loading of Object files(on some architecture)
+  + Highly Portable(works on many UNIX machines, and on DOS,
+    Windows, Mac, BeOS etc.)
+
+Author:	Matsumoto "matz" Yukihiro <matz@zetabits.com>
+WWW:	http://www.ruby-lang.org/en/

Property changes on: lang/ruby20/pkg-descr
___________________________________________________________________
Added: fbsd:nokeywords
## -0,0 +1 ##
+yes
\ No newline at end of property
Index: lang/ruby20/pkg-message
===================================================================
--- lang/ruby20/pkg-message	(revision 0)
+++ lang/ruby20/pkg-message	(working copy)
@@ -0,0 +1,15 @@
+====
+Note that some of the standard libraries are provided as separate
+ports since they require extra dependencies:
+
+	converters/ruby-iconv	iconv module
+
+	databases/ruby-gdbm:	GDBM module
+
+	x11-toolkits/ruby-tk:	Tcl/Tk modules
+	japanese/ruby-tk:	Tcl/Tk modules for Japanized Tcl/Tk
+
+	lang/ruby-mode.el:	Emacs lisp modules
+
+Install them as occasion demands.
+====

Property changes on: lang/ruby20/pkg-message
___________________________________________________________________
Added: fbsd:nokeywords
## -0,0 +1 ##
+yes
\ No newline at end of property
Index: lang/ruby20/pkg-plist
===================================================================
--- lang/ruby20/pkg-plist	(revision 0)
+++ lang/ruby20/pkg-plist	(working copy)
@@ -0,0 +1,1121 @@
+bin/irb%%RUBY_SUFFIX%%
+%%IF_DEFAULT%%bin/irb
+bin/erb%%RUBY_SUFFIX%%
+%%IF_DEFAULT%%bin/erb
+bin/rdoc%%RUBY_SUFFIX%%
+%%IF_DEFAULT%%bin/rdoc
+bin/ri%%RUBY_SUFFIX%%
+%%IF_DEFAULT%%bin/ri
+bin/ruby%%RUBY_SUFFIX%%
+%%IF_DEFAULT%%bin/ruby
+bin/testrb%%RUBY_SUFFIX%%
+%%IF_DEFAULT%%bin/testrb
+lib/lib%%RUBY_NAME%%-static.a
+lib/lib%%RUBY_NAME%%.so
+lib/lib%%RUBY_NAME%%.so.%%RUBY_SHLIBVER%%
+libdata/pkgconfig/ruby-2.0.pc
+include/ruby-2.0/%%RUBY_ARCH%%/ruby/config.h
+include/ruby-2.0/ruby/backward/classext.h
+include/ruby-2.0/ruby/backward/rubyio.h
+include/ruby-2.0/ruby/backward/rubysig.h
+include/ruby-2.0/ruby/backward/st.h
+include/ruby-2.0/ruby/backward/util.h
+include/ruby-2.0/ruby/debug.h
+include/ruby-2.0/ruby/defines.h
+include/ruby-2.0/ruby/digest.h
+include/ruby-2.0/ruby/dl.h
+include/ruby-2.0/ruby/encoding.h
+include/ruby-2.0/ruby/intern.h
+include/ruby-2.0/ruby/io.h
+include/ruby-2.0/ruby/missing.h
+include/ruby-2.0/ruby/oniguruma.h
+include/ruby-2.0/ruby/re.h
+include/ruby-2.0/ruby/regex.h
+include/ruby-2.0/ruby/ruby.h
+include/ruby-2.0/ruby/st.h
+include/ruby-2.0/ruby/subst.h
+include/ruby-2.0/ruby/thread.h
+include/ruby-2.0/ruby/util.h
+include/ruby-2.0/ruby/version.h
+include/ruby-2.0/ruby/vm.h
+include/ruby-2.0/ruby.h
+@dirrm include/ruby-2.0/%%RUBY_ARCH%%/ruby
+@dirrm include/ruby-2.0/%%RUBY_ARCH%%
+@dirrm include/ruby-2.0/ruby/backward
+@dirrm include/ruby-2.0/ruby
+@dirrm include/ruby-2.0
+%%PORTDOCS%%%%RUBY_DOCDIR%%/COPYING
+%%PORTDOCS%%%%RUBY_DOCDIR%%/COPYING.ja
+%%PORTDOCS%%%%RUBY_DOCDIR%%/ChangeLog
+%%PORTDOCS%%%%RUBY_DOCDIR%%/ChangeLog-1.8.0
+%%PORTDOCS%%%%RUBY_DOCDIR%%/ChangeLog-1.9.3
+%%PORTDOCS%%%%RUBY_DOCDIR%%/ChangeLog-YARV
+%%PORTDOCS%%%%RUBY_DOCDIR%%/LEGAL
+%%PORTDOCS%%%%RUBY_DOCDIR%%/NEWS-1.8.7
+%%PORTDOCS%%%%RUBY_DOCDIR%%/NEWS-1.9.1
+%%PORTDOCS%%%%RUBY_DOCDIR%%/NEWS-1.9.2
+%%PORTDOCS%%%%RUBY_DOCDIR%%/NEWS-1.9.3
+%%PORTDOCS%%%%RUBY_DOCDIR%%/README
+%%PORTDOCS%%%%RUBY_DOCDIR%%/README.EXT
+%%PORTDOCS%%%%RUBY_DOCDIR%%/README.EXT.ja
+%%PORTDOCS%%%%RUBY_DOCDIR%%/README.ja
+%%PORTDOCS%%%%RUBY_DOCDIR%%/etc.rd
+%%PORTDOCS%%%%RUBY_DOCDIR%%/etc.rd.ja
+%%PORTDOCS%%%%RUBY_DOCDIR%%/forwardable.rd
+%%PORTDOCS%%%%RUBY_DOCDIR%%/forwardable.rd.ja
+%%PORTDOCS%%%%RUBY_DOCDIR%%/globals.rdoc
+%%PORTDOCS%%%%RUBY_DOCDIR%%/images/boottime-classes.png
+%%PORTDOCS%%%%RUBY_DOCDIR%%/irb/irb-tools.rd.ja
+%%PORTDOCS%%%%RUBY_DOCDIR%%/irb/irb.rd
+%%PORTDOCS%%%%RUBY_DOCDIR%%/irb/irb.rd.ja
+%%PORTDOCS%%%%RUBY_DOCDIR%%/pty/README
+%%PORTDOCS%%%%RUBY_DOCDIR%%/pty/README.expect
+%%PORTDOCS%%%%RUBY_DOCDIR%%/pty/README.expect.ja
+%%PORTDOCS%%%%RUBY_DOCDIR%%/pty/README.ja
+%%PORTDOCS%%%%RUBY_DOCDIR%%/re.rdoc
+%%PORTDOCS%%%%RUBY_DOCDIR%%/readline/README
+%%PORTDOCS%%%%RUBY_DOCDIR%%/readline/README.ja
+%%PORTDOCS%%%%RUBY_DOCDIR%%/ripper/README
+%%PORTDOCS%%%%RUBY_DOCDIR%%/rubygems/ChangeLog
+%%PORTDOCS%%%%RUBY_DOCDIR%%/rubygems/History.txt
+%%PORTDOCS%%%%RUBY_DOCDIR%%/rubygems/LICENSE.txt
+%%PORTDOCS%%%%RUBY_DOCDIR%%/rubygems/README
+%%PORTDOCS%%%%RUBY_DOCDIR%%/shell.rd
+%%PORTDOCS%%%%RUBY_DOCDIR%%/shell.rd.ja
+%%PORTDOCS%%%%RUBY_DOCDIR%%/stringio/README
+%%PORTDOCS%%%%RUBY_DOCDIR%%/syslog/syslog.txt
+%%PORTDOCS%%@dirrm %%RUBY_DOCDIR%%/syslog
+%%PORTDOCS%%@dirrm %%RUBY_DOCDIR%%/stringio
+%%PORTDOCS%%@dirrm %%RUBY_DOCDIR%%/rubygems
+%%PORTDOCS%%@dirrm %%RUBY_DOCDIR%%/ripper
+%%PORTDOCS%%@dirrm %%RUBY_DOCDIR%%/readline
+%%PORTDOCS%%@dirrm %%RUBY_DOCDIR%%/pty
+%%PORTDOCS%%@dirrm %%RUBY_DOCDIR%%/irb
+%%PORTDOCS%%@dirrm %%RUBY_DOCDIR%%/images
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/README
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/bigdecimal/linear.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/bigdecimal/nlsolve.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/bigdecimal/pi.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/biorhythm.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/cal.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/cbreak.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/clnt.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/coverage.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/curses/hello.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/curses/rain.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/curses/view.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/curses/view2.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/dir.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/drb/README.rd
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/drb/README.rd.ja
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/drb/darray.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/drb/darrayc.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/drb/dbiff.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/drb/dcdbiff.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/drb/dchatc.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/drb/dchats.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/drb/dhasen.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/drb/dhasenc.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/drb/dlogc.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/drb/dlogd.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/drb/dqin.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/drb/dqlib.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/drb/dqout.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/drb/dqueue.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/drb/drbc.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/drb/drbch.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/drb/drbm.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/drb/drbmc.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/drb/drbs-acl.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/drb/drbs.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/drb/drbssl_c.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/drb/drbssl_s.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/drb/extserv_test.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/drb/gw_ct.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/drb/gw_cu.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/drb/gw_s.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/drb/holderc.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/drb/holders.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/drb/http0.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/drb/http0serv.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/drb/name.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/drb/namec.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/drb/old_tuplespace.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/drb/rinda_ts.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/drb/rindac.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/drb/rindas.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/drb/ring_echo.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/drb/ring_inspect.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/drb/ring_place.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/drb/simpletuple.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/drb/speedc.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/drb/speeds.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/dualstack-fetch.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/dualstack-httpd.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/eval.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/export.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/exyacc.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/fact.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/fib.awk
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/fib.pl
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/fib.py
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/fib.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/fib.scm
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/freq.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/from.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/fullpath.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/less.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/list.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/list2.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/list3.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/logger/app.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/logger/log.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/logger/shifting.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/mine.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/mkproto.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/mpart.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/observ.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/occur.pl
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/occur.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/occur2.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/openssl/c_rehash.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/openssl/cert2text.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/openssl/certstore.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/openssl/cipher.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/openssl/crlstore.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/openssl/echo_cli.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/openssl/echo_svr.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/openssl/gen_csr.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/openssl/smime_read.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/openssl/smime_write.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/openssl/wget.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/optparse/opttest.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/optparse/subcommand.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/philos.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/pi.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/pty/expect_sample.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/pty/script.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/pty/shl.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/rcs.awk
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/rcs.dat
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/rcs.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/rdoc/markup/rdoc2latex.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/rdoc/markup/sample.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/ripper/ruby2html.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/ripper/strip-comment.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/rss/blend.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/rss/convert.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/rss/list_description.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/rss/re_read.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/rss/rss_recent.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/sieve.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/svr.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/test.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/testunit/adder.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/testunit/subtracter.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/testunit/tc_adder.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/testunit/tc_subtracter.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/testunit/ts_examples.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/time.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/timeout.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/trojan.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/tsvr.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/uumerge.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/webrick/demo-app.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/webrick/demo-multipart.cgi
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/webrick/demo-servlet.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/webrick/demo-urlencoded.cgi
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/webrick/hello.cgi
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/webrick/hello.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/webrick/httpd.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/webrick/httpproxy.rb
+%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/webrick/httpsd.rb
+%%PORTDOCS%%@dirrm %%RUBY_EXAMPLESDIR%%/webrick
+%%PORTDOCS%%@dirrm %%RUBY_EXAMPLESDIR%%/testunit
+%%PORTDOCS%%@dirrm %%RUBY_EXAMPLESDIR%%/rss
+%%PORTDOCS%%@dirrm %%RUBY_EXAMPLESDIR%%/ripper
+%%PORTDOCS%%@dirrm %%RUBY_EXAMPLESDIR%%/rdoc/markup
+%%PORTDOCS%%@dirrm %%RUBY_EXAMPLESDIR%%/rdoc
+%%PORTDOCS%%@dirrm %%RUBY_EXAMPLESDIR%%/pty
+%%PORTDOCS%%@dirrm %%RUBY_EXAMPLESDIR%%/optparse
+%%PORTDOCS%%@dirrm %%RUBY_EXAMPLESDIR%%/openssl
+%%PORTDOCS%%@dirrm %%RUBY_EXAMPLESDIR%%/logger
+%%PORTDOCS%%@dirrm %%RUBY_EXAMPLESDIR%%/drb
+%%PORTDOCS%%@dirrm %%RUBY_EXAMPLESDIR%%/curses
+%%PORTDOCS%%@dirrm %%RUBY_EXAMPLESDIR%%/bigdecimal
+%%RUBY_DOCDIR%%/.keep_me
+%%RUBY_EXAMPLESDIR%%/.keep_me
+@dirrmtry %%RUBY_EXAMPLESDIR%%
+@exec /bin/mkdir -p %D/%%RUBY_RIDIR%%
+@exec env LC_TIME=C /bin/date > %D/%%RUBY_RIDIR%%/created.rid
+@unexec /bin/rm -f %D/%%RUBY_RIDIR%%/created.rid
+@exec /bin/mkdir -p %D/%%RUBY_SITERIDIR%%
+@exec env LC_TIME=C /bin/date > %D/%%RUBY_SITERIDIR%%/created.rid
+@unexec /bin/rm -f %D/%%RUBY_SITERIDIR%%/created.rid
+%%RUBY_LIBDIR%%/English.rb
+%%RUBY_LIBDIR%%/abbrev.rb
+%%RUBY_LIBDIR%%/%%RUBY_ARCH%%/bigdecimal.so
+%%RUBY_LIBDIR%%/%%RUBY_ARCH%%/continuation.so
+%%RUBY_LIBDIR%%/%%RUBY_ARCH%%/coverage.so
+%%RUBY_LIBDIR%%/%%RUBY_ARCH%%/curses.so
+%%RUBY_LIBDIR%%/%%RUBY_ARCH%%/date_core.so
+%%RUBY_LIBDIR%%/%%RUBY_ARCH%%/dbm.so
+%%RUBY_LIBDIR%%/%%RUBY_ARCH%%/digest/bubblebabble.so
+%%RUBY_LIBDIR%%/%%RUBY_ARCH%%/digest/md5.so
+%%RUBY_LIBDIR%%/%%RUBY_ARCH%%/digest/rmd160.so
+%%RUBY_LIBDIR%%/%%RUBY_ARCH%%/digest/sha1.so
+%%RUBY_LIBDIR%%/%%RUBY_ARCH%%/digest/sha2.so
+%%RUBY_LIBDIR%%/%%RUBY_ARCH%%/digest.so
+%%RUBY_LIBDIR%%/%%RUBY_ARCH%%/dl/callback.so
+%%RUBY_LIBDIR%%/%%RUBY_ARCH%%/dl.so
+%%RUBY_LIBDIR%%/%%RUBY_ARCH%%/enc/big5.so
+%%RUBY_LIBDIR%%/%%RUBY_ARCH%%/enc/cp949.so
+%%RUBY_LIBDIR%%/%%RUBY_ARCH%%/enc/emacs_mule.so
+%%RUBY_LIBDIR%%/%%RUBY_ARCH%%/enc/encdb.so
+%%RUBY_LIBDIR%%/%%RUBY_ARCH%%/enc/euc_jp.so
+%%RUBY_LIBDIR%%/%%RUBY_ARCH%%/enc/euc_kr.so
+%%RUBY_LIBDIR%%/%%RUBY_ARCH%%/enc/euc_tw.so
+%%RUBY_LIBDIR%%/%%RUBY_ARCH%%/enc/gb18030.so
+%%RUBY_LIBDIR%%/%%RUBY_ARCH%%/enc/gb2312.so
+%%RUBY_LIBDIR%%/%%RUBY_ARCH%%/enc/gbk.so
+%%RUBY_LIBDIR%%/%%RUBY_ARCH%%/enc/iso_8859_1.so
+%%RUBY_LIBDIR%%/%%RUBY_ARCH%%/enc/iso_8859_10.so
+%%RUBY_LIBDIR%%/%%RUBY_ARCH%%/enc/iso_8859_11.so
+%%RUBY_LIBDIR%%/%%RUBY_ARCH%%/enc/iso_8859_13.so
+%%RUBY_LIBDIR%%/%%RUBY_ARCH%%/enc/iso_8859_14.so
+%%RUBY_LIBDIR%%/%%RUBY_ARCH%%/enc/iso_8859_15.so
+%%RUBY_LIBDIR%%/%%RUBY_ARCH%%/enc/iso_8859_16.so
+%%RUBY_LIBDIR%%/%%RUBY_ARCH%%/enc/iso_8859_2.so
+%%RUBY_LIBDIR%%/%%RUBY_ARCH%%/enc/iso_8859_3.so
+%%RUBY_LIBDIR%%/%%RUBY_ARCH%%/enc/iso_8859_4.so
+%%RUBY_LIBDIR%%/%%RUBY_ARCH%%/enc/iso_8859_5.so
+%%RUBY_LIBDIR%%/%%RUBY_ARCH%%/enc/iso_8859_6.so
+%%RUBY_LIBDIR%%/%%RUBY_ARCH%%/enc/iso_8859_7.so
+%%RUBY_LIBDIR%%/%%RUBY_ARCH%%/enc/iso_8859_8.so
+%%RUBY_LIBDIR%%/%%RUBY_ARCH%%/enc/iso_8859_9.so
+%%RUBY_LIBDIR%%/%%RUBY_ARCH%%/enc/koi8_r.so
+%%RUBY_LIBDIR%%/%%RUBY_ARCH%%/enc/koi8_u.so
+%%RUBY_LIBDIR%%/%%RUBY_ARCH%%/enc/shift_jis.so
+%%RUBY_LIBDIR%%/%%RUBY_ARCH%%/enc/trans/big5.so
+%%RUBY_LIBDIR%%/%%RUBY_ARCH%%/enc/trans/chinese.so
+%%RUBY_LIBDIR%%/%%RUBY_ARCH%%/enc/trans/emoji.so
+%%RUBY_LIBDIR%%/%%RUBY_ARCH%%/enc/trans/emoji_iso2022_kddi.so
+%%RUBY_LIBDIR%%/%%RUBY_ARCH%%/enc/trans/emoji_sjis_docomo.so
+%%RUBY_LIBDIR%%/%%RUBY_ARCH%%/enc/trans/emoji_sjis_kddi.so
+%%RUBY_LIBDIR%%/%%RUBY_ARCH%%/enc/trans/emoji_sjis_softbank.so
+%%RUBY_LIBDIR%%/%%RUBY_ARCH%%/enc/trans/escape.so
+%%RUBY_LIBDIR%%/%%RUBY_ARCH%%/enc/trans/gb18030.so
+%%RUBY_LIBDIR%%/%%RUBY_ARCH%%/enc/trans/gbk.so
+%%RUBY_LIBDIR%%/%%RUBY_ARCH%%/enc/trans/iso2022.so
+%%RUBY_LIBDIR%%/%%RUBY_ARCH%%/enc/trans/japanese.so
+%%RUBY_LIBDIR%%/%%RUBY_ARCH%%/enc/trans/japanese_euc.so
+%%RUBY_LIBDIR%%/%%RUBY_ARCH%%/enc/trans/japanese_sjis.so
+%%RUBY_LIBDIR%%/%%RUBY_ARCH%%/enc/trans/korean.so
+%%RUBY_LIBDIR%%/%%RUBY_ARCH%%/enc/trans/single_byte.so
+%%RUBY_LIBDIR%%/%%RUBY_ARCH%%/enc/trans/transdb.so
+%%RUBY_LIBDIR%%/%%RUBY_ARCH%%/enc/trans/utf8_mac.so
+%%RUBY_LIBDIR%%/%%RUBY_ARCH%%/enc/trans/utf_16_32.so
+%%RUBY_LIBDIR%%/%%RUBY_ARCH%%/enc/utf_16be.so
+%%RUBY_LIBDIR%%/%%RUBY_ARCH%%/enc/utf_16le.so
+%%RUBY_LIBDIR%%/%%RUBY_ARCH%%/enc/utf_32be.so
+%%RUBY_LIBDIR%%/%%RUBY_ARCH%%/enc/utf_32le.so
+%%RUBY_LIBDIR%%/%%RUBY_ARCH%%/enc/windows_1251.so
+%%RUBY_LIBDIR%%/%%RUBY_ARCH%%/enc/windows_31j.so
+%%RUBY_LIBDIR%%/%%RUBY_ARCH%%/etc.so
+%%RUBY_LIBDIR%%/%%RUBY_ARCH%%/fcntl.so
+%%RUBY_LIBDIR%%/%%RUBY_ARCH%%/fiber.so
+%%RUBY_LIBDIR%%/%%RUBY_ARCH%%/fiddle.so
+%%RUBY_LIBDIR%%/%%RUBY_ARCH%%/io/console.so
+%%RUBY_LIBDIR%%/%%RUBY_ARCH%%/io/nonblock.so
+%%RUBY_LIBDIR%%/%%RUBY_ARCH%%/io/wait.so
+%%RUBY_LIBDIR%%/%%RUBY_ARCH%%/json/ext/generator.so
+%%RUBY_LIBDIR%%/%%RUBY_ARCH%%/json/ext/parser.so
+%%RUBY_LIBDIR%%/%%RUBY_ARCH%%/mathn/complex.so
+%%RUBY_LIBDIR%%/%%RUBY_ARCH%%/mathn/rational.so
+%%RUBY_LIBDIR%%/%%RUBY_ARCH%%/nkf.so
+%%RUBY_LIBDIR%%/%%RUBY_ARCH%%/objspace.so
+%%RUBY_LIBDIR%%/%%RUBY_ARCH%%/openssl.so
+%%RUBY_LIBDIR%%/%%RUBY_ARCH%%/pathname.so
+%%RUBY_LIBDIR%%/%%RUBY_ARCH%%/psych.so
+%%RUBY_LIBDIR%%/%%RUBY_ARCH%%/pty.so
+%%RUBY_LIBDIR%%/%%RUBY_ARCH%%/racc/cparse.so
+%%RUBY_LIBDIR%%/%%RUBY_ARCH%%/rbconfig.rb
+%%RUBY_LIBDIR%%/%%RUBY_ARCH%%/readline.so
+%%RUBY_LIBDIR%%/%%RUBY_ARCH%%/ripper.so
+%%RUBY_LIBDIR%%/%%RUBY_ARCH%%/sdbm.so
+%%RUBY_LIBDIR%%/%%RUBY_ARCH%%/socket.so
+%%RUBY_LIBDIR%%/%%RUBY_ARCH%%/stringio.so
+%%RUBY_LIBDIR%%/%%RUBY_ARCH%%/strscan.so
+%%RUBY_LIBDIR%%/%%RUBY_ARCH%%/syslog.so
+%%RUBY_LIBDIR%%/%%RUBY_ARCH%%/zlib.so
+%%RUBY_LIBDIR%%/base64.rb
+%%RUBY_LIBDIR%%/benchmark.rb
+%%RUBY_LIBDIR%%/bigdecimal/jacobian.rb
+%%RUBY_LIBDIR%%/bigdecimal/ludcmp.rb
+%%RUBY_LIBDIR%%/bigdecimal/math.rb
+%%RUBY_LIBDIR%%/bigdecimal/newton.rb
+%%RUBY_LIBDIR%%/bigdecimal/util.rb
+%%RUBY_LIBDIR%%/cgi/cookie.rb
+%%RUBY_LIBDIR%%/cgi/core.rb
+%%RUBY_LIBDIR%%/cgi/html.rb
+%%RUBY_LIBDIR%%/cgi/session/pstore.rb
+%%RUBY_LIBDIR%%/cgi/session.rb
+%%RUBY_LIBDIR%%/cgi/util.rb
+%%RUBY_LIBDIR%%/cgi.rb
+%%RUBY_LIBDIR%%/cmath.rb
+%%RUBY_LIBDIR%%/complex.rb
+%%RUBY_LIBDIR%%/csv.rb
+%%RUBY_LIBDIR%%/date/format.rb
+%%RUBY_LIBDIR%%/date.rb
+%%RUBY_LIBDIR%%/debug.rb
+%%RUBY_LIBDIR%%/delegate.rb
+%%RUBY_LIBDIR%%/digest/hmac.rb
+%%RUBY_LIBDIR%%/digest/sha2.rb
+%%RUBY_LIBDIR%%/digest.rb
+%%RUBY_LIBDIR%%/dl/callback.rb
+%%RUBY_LIBDIR%%/dl/cparser.rb
+%%RUBY_LIBDIR%%/dl/func.rb
+%%RUBY_LIBDIR%%/dl/import.rb
+%%RUBY_LIBDIR%%/dl/pack.rb
+%%RUBY_LIBDIR%%/dl/stack.rb
+%%RUBY_LIBDIR%%/dl/struct.rb
+%%RUBY_LIBDIR%%/dl/types.rb
+%%RUBY_LIBDIR%%/dl/value.rb
+%%RUBY_LIBDIR%%/dl.rb
+%%RUBY_LIBDIR%%/drb/acl.rb
+%%RUBY_LIBDIR%%/drb/drb.rb
+%%RUBY_LIBDIR%%/drb/eq.rb
+%%RUBY_LIBDIR%%/drb/extserv.rb
+%%RUBY_LIBDIR%%/drb/extservm.rb
+%%RUBY_LIBDIR%%/drb/gw.rb
+%%RUBY_LIBDIR%%/drb/invokemethod.rb
+%%RUBY_LIBDIR%%/drb/observer.rb
+%%RUBY_LIBDIR%%/drb/ssl.rb
+%%RUBY_LIBDIR%%/drb/timeridconv.rb
+%%RUBY_LIBDIR%%/drb/unix.rb
+%%RUBY_LIBDIR%%/drb.rb
+%%RUBY_LIBDIR%%/e2mmap.rb
+%%RUBY_LIBDIR%%/erb.rb
+%%RUBY_LIBDIR%%/expect.rb
+%%RUBY_LIBDIR%%/fiddle/closure.rb
+%%RUBY_LIBDIR%%/fiddle/cparser.rb
+%%RUBY_LIBDIR%%/fiddle/function.rb
+%%RUBY_LIBDIR%%/fiddle/import.rb
+%%RUBY_LIBDIR%%/fiddle/pack.rb
+%%RUBY_LIBDIR%%/fiddle/struct.rb
+%%RUBY_LIBDIR%%/fiddle/value.rb
+%%RUBY_LIBDIR%%/fiddle.rb
+%%RUBY_LIBDIR%%/fileutils.rb
+%%RUBY_LIBDIR%%/find.rb
+%%RUBY_LIBDIR%%/forwardable.rb
+%%RUBY_LIBDIR%%/getoptlong.rb
+%%RUBY_LIBDIR%%/gserver.rb
+%%RUBY_LIBDIR%%/io/console/size.rb
+%%RUBY_LIBDIR%%/ipaddr.rb
+%%RUBY_LIBDIR%%/irb/cmd/chws.rb
+%%RUBY_LIBDIR%%/irb/cmd/fork.rb
+%%RUBY_LIBDIR%%/irb/cmd/help.rb
+%%RUBY_LIBDIR%%/irb/cmd/load.rb
+%%RUBY_LIBDIR%%/irb/cmd/nop.rb
+%%RUBY_LIBDIR%%/irb/cmd/pushws.rb
+%%RUBY_LIBDIR%%/irb/cmd/subirb.rb
+%%RUBY_LIBDIR%%/irb/completion.rb
+%%RUBY_LIBDIR%%/irb/context.rb
+%%RUBY_LIBDIR%%/irb/ext/change-ws.rb
+%%RUBY_LIBDIR%%/irb/ext/history.rb
+%%RUBY_LIBDIR%%/irb/ext/loader.rb
+%%RUBY_LIBDIR%%/irb/ext/math-mode.rb
+%%RUBY_LIBDIR%%/irb/ext/multi-irb.rb
+%%RUBY_LIBDIR%%/irb/ext/save-history.rb
+%%RUBY_LIBDIR%%/irb/ext/tracer.rb
+%%RUBY_LIBDIR%%/irb/ext/use-loader.rb
+%%RUBY_LIBDIR%%/irb/ext/workspaces.rb
+%%RUBY_LIBDIR%%/irb/extend-command.rb
+%%RUBY_LIBDIR%%/irb/frame.rb
+%%RUBY_LIBDIR%%/irb/help.rb
+%%RUBY_LIBDIR%%/irb/init.rb
+%%RUBY_LIBDIR%%/irb/input-method.rb
+%%RUBY_LIBDIR%%/irb/inspector.rb
+%%RUBY_LIBDIR%%/irb/lc/error.rb
+%%RUBY_LIBDIR%%/irb/lc/help-message
+%%RUBY_LIBDIR%%/irb/lc/ja/encoding_aliases.rb
+%%RUBY_LIBDIR%%/irb/lc/ja/error.rb
+%%RUBY_LIBDIR%%/irb/lc/ja/help-message
+%%RUBY_LIBDIR%%/irb/locale.rb
+%%RUBY_LIBDIR%%/irb/magic-file.rb
+%%RUBY_LIBDIR%%/irb/notifier.rb
+%%RUBY_LIBDIR%%/irb/output-method.rb
+%%RUBY_LIBDIR%%/irb/ruby-lex.rb
+%%RUBY_LIBDIR%%/irb/ruby-token.rb
+%%RUBY_LIBDIR%%/irb/slex.rb
+%%RUBY_LIBDIR%%/irb/src_encoding.rb
+%%RUBY_LIBDIR%%/irb/version.rb
+%%RUBY_LIBDIR%%/irb/workspace.rb
+%%RUBY_LIBDIR%%/irb/ws-for-case-2.rb
+%%RUBY_LIBDIR%%/irb/xmp.rb
+%%RUBY_LIBDIR%%/irb.rb
+%%RUBY_LIBDIR%%/json/add/bigdecimal.rb
+%%RUBY_LIBDIR%%/json/add/complex.rb
+%%RUBY_LIBDIR%%/json/add/core.rb
+%%RUBY_LIBDIR%%/json/add/date.rb
+%%RUBY_LIBDIR%%/json/add/date_time.rb
+%%RUBY_LIBDIR%%/json/add/exception.rb
+%%RUBY_LIBDIR%%/json/add/ostruct.rb
+%%RUBY_LIBDIR%%/json/add/range.rb
+%%RUBY_LIBDIR%%/json/add/rational.rb
+%%RUBY_LIBDIR%%/json/add/regexp.rb
+%%RUBY_LIBDIR%%/json/add/struct.rb
+%%RUBY_LIBDIR%%/json/add/symbol.rb
+%%RUBY_LIBDIR%%/json/add/time.rb
+%%RUBY_LIBDIR%%/json/common.rb
+%%RUBY_LIBDIR%%/json/ext.rb
+%%RUBY_LIBDIR%%/json/generic_object.rb
+%%RUBY_LIBDIR%%/json/version.rb
+%%RUBY_LIBDIR%%/json.rb
+%%RUBY_LIBDIR%%/kconv.rb
+%%RUBY_LIBDIR%%/logger.rb
+%%RUBY_LIBDIR%%/mathn.rb
+%%RUBY_LIBDIR%%/matrix/eigenvalue_decomposition.rb
+%%RUBY_LIBDIR%%/matrix/lup_decomposition.rb
+%%RUBY_LIBDIR%%/matrix.rb
+%%RUBY_LIBDIR%%/minitest/autorun.rb
+%%RUBY_LIBDIR%%/minitest/benchmark.rb
+%%RUBY_LIBDIR%%/minitest/hell.rb
+%%RUBY_LIBDIR%%/minitest/mock.rb
+%%RUBY_LIBDIR%%/minitest/parallel_each.rb
+%%RUBY_LIBDIR%%/minitest/pride.rb
+%%RUBY_LIBDIR%%/minitest/spec.rb
+%%RUBY_LIBDIR%%/minitest/unit.rb
+%%RUBY_LIBDIR%%/mkmf.rb
+%%RUBY_LIBDIR%%/monitor.rb
+%%RUBY_LIBDIR%%/mutex_m.rb
+%%RUBY_LIBDIR%%/net/ftp.rb
+%%RUBY_LIBDIR%%/net/http/backward.rb
+%%RUBY_LIBDIR%%/net/http/exceptions.rb
+%%RUBY_LIBDIR%%/net/http/generic_request.rb
+%%RUBY_LIBDIR%%/net/http/header.rb
+%%RUBY_LIBDIR%%/net/http/proxy_delta.rb
+%%RUBY_LIBDIR%%/net/http/request.rb
+%%RUBY_LIBDIR%%/net/http/requests.rb
+%%RUBY_LIBDIR%%/net/http/response.rb
+%%RUBY_LIBDIR%%/net/http/responses.rb
+%%RUBY_LIBDIR%%/net/http.rb
+%%RUBY_LIBDIR%%/net/https.rb
+%%RUBY_LIBDIR%%/net/imap.rb
+%%RUBY_LIBDIR%%/net/pop.rb
+%%RUBY_LIBDIR%%/net/protocol.rb
+%%RUBY_LIBDIR%%/net/smtp.rb
+%%RUBY_LIBDIR%%/net/telnet.rb
+%%RUBY_LIBDIR%%/observer.rb
+%%RUBY_LIBDIR%%/open-uri.rb
+%%RUBY_LIBDIR%%/open3.rb
+%%RUBY_LIBDIR%%/openssl/bn.rb
+%%RUBY_LIBDIR%%/openssl/buffering.rb
+%%RUBY_LIBDIR%%/openssl/cipher.rb
+%%RUBY_LIBDIR%%/openssl/config.rb
+%%RUBY_LIBDIR%%/openssl/digest.rb
+%%RUBY_LIBDIR%%/openssl/ssl.rb
+%%RUBY_LIBDIR%%/openssl/x509.rb
+%%RUBY_LIBDIR%%/openssl.rb
+%%RUBY_LIBDIR%%/optparse/ac.rb
+%%RUBY_LIBDIR%%/optparse/date.rb
+%%RUBY_LIBDIR%%/optparse/shellwords.rb
+%%RUBY_LIBDIR%%/optparse/time.rb
+%%RUBY_LIBDIR%%/optparse/uri.rb
+%%RUBY_LIBDIR%%/optparse/version.rb
+%%RUBY_LIBDIR%%/optparse.rb
+%%RUBY_LIBDIR%%/ostruct.rb
+%%RUBY_LIBDIR%%/pathname.rb
+%%RUBY_LIBDIR%%/pp.rb
+%%RUBY_LIBDIR%%/prettyprint.rb
+%%RUBY_LIBDIR%%/prime.rb
+%%RUBY_LIBDIR%%/profile.rb
+%%RUBY_LIBDIR%%/profiler.rb
+%%RUBY_LIBDIR%%/pstore.rb
+%%RUBY_LIBDIR%%/psych/coder.rb
+%%RUBY_LIBDIR%%/psych/core_ext.rb
+%%RUBY_LIBDIR%%/psych/deprecated.rb
+%%RUBY_LIBDIR%%/psych/handler.rb
+%%RUBY_LIBDIR%%/psych/handlers/document_stream.rb
+%%RUBY_LIBDIR%%/psych/handlers/recorder.rb
+%%RUBY_LIBDIR%%/psych/json/ruby_events.rb
+%%RUBY_LIBDIR%%/psych/json/stream.rb
+%%RUBY_LIBDIR%%/psych/json/tree_builder.rb
+%%RUBY_LIBDIR%%/psych/json/yaml_events.rb
+%%RUBY_LIBDIR%%/psych/nodes/alias.rb
+%%RUBY_LIBDIR%%/psych/nodes/document.rb
+%%RUBY_LIBDIR%%/psych/nodes/mapping.rb
+%%RUBY_LIBDIR%%/psych/nodes/node.rb
+%%RUBY_LIBDIR%%/psych/nodes/scalar.rb
+%%RUBY_LIBDIR%%/psych/nodes/sequence.rb
+%%RUBY_LIBDIR%%/psych/nodes/stream.rb
+%%RUBY_LIBDIR%%/psych/nodes.rb
+%%RUBY_LIBDIR%%/psych/omap.rb
+%%RUBY_LIBDIR%%/psych/parser.rb
+%%RUBY_LIBDIR%%/psych/scalar_scanner.rb
+%%RUBY_LIBDIR%%/psych/set.rb
+%%RUBY_LIBDIR%%/psych/stream.rb
+%%RUBY_LIBDIR%%/psych/streaming.rb
+%%RUBY_LIBDIR%%/psych/syntax_error.rb
+%%RUBY_LIBDIR%%/psych/tree_builder.rb
+%%RUBY_LIBDIR%%/psych/visitors/depth_first.rb
+%%RUBY_LIBDIR%%/psych/visitors/emitter.rb
+%%RUBY_LIBDIR%%/psych/visitors/json_tree.rb
+%%RUBY_LIBDIR%%/psych/visitors/to_ruby.rb
+%%RUBY_LIBDIR%%/psych/visitors/visitor.rb
+%%RUBY_LIBDIR%%/psych/visitors/yaml_tree.rb
+%%RUBY_LIBDIR%%/psych/visitors.rb
+%%RUBY_LIBDIR%%/psych/y.rb
+%%RUBY_LIBDIR%%/psych.rb
+%%RUBY_LIBDIR%%/racc/parser.rb
+%%RUBY_LIBDIR%%/rational.rb
+%%RUBY_LIBDIR%%/rbconfig/datadir.rb
+%%RUBY_LIBDIR%%/rbconfig/obsolete.rb
+%%RUBY_LIBDIR%%/rdoc/alias.rb
+%%RUBY_LIBDIR%%/rdoc/anon_class.rb
+%%RUBY_LIBDIR%%/rdoc/any_method.rb
+%%RUBY_LIBDIR%%/rdoc/attr.rb
+%%RUBY_LIBDIR%%/rdoc/class_module.rb
+%%RUBY_LIBDIR%%/rdoc/code_object.rb
+%%RUBY_LIBDIR%%/rdoc/code_objects.rb
+%%RUBY_LIBDIR%%/rdoc/comment.rb
+%%RUBY_LIBDIR%%/rdoc/constant.rb
+%%RUBY_LIBDIR%%/rdoc/context/section.rb
+%%RUBY_LIBDIR%%/rdoc/context.rb
+%%RUBY_LIBDIR%%/rdoc/cross_reference.rb
+%%RUBY_LIBDIR%%/rdoc/encoding.rb
+%%RUBY_LIBDIR%%/rdoc/erb_partial.rb
+%%RUBY_LIBDIR%%/rdoc/erbio.rb
+%%RUBY_LIBDIR%%/rdoc/extend.rb
+%%RUBY_LIBDIR%%/rdoc/generator/darkfish.rb
+%%RUBY_LIBDIR%%/rdoc/generator/json_index.rb
+%%RUBY_LIBDIR%%/rdoc/generator/markup.rb
+%%RUBY_LIBDIR%%/rdoc/generator/ri.rb
+%%RUBY_LIBDIR%%/rdoc/generator/template/darkfish/_footer.rhtml
+%%RUBY_LIBDIR%%/rdoc/generator/template/darkfish/_head.rhtml
+%%RUBY_LIBDIR%%/rdoc/generator/template/darkfish/_sidebar_VCS_info.rhtml
+%%RUBY_LIBDIR%%/rdoc/generator/template/darkfish/_sidebar_classes.rhtml
+%%RUBY_LIBDIR%%/rdoc/generator/template/darkfish/_sidebar_extends.rhtml
+%%RUBY_LIBDIR%%/rdoc/generator/template/darkfish/_sidebar_in_files.rhtml
+%%RUBY_LIBDIR%%/rdoc/generator/template/darkfish/_sidebar_includes.rhtml
+%%RUBY_LIBDIR%%/rdoc/generator/template/darkfish/_sidebar_installed.rhtml
+%%RUBY_LIBDIR%%/rdoc/generator/template/darkfish/_sidebar_methods.rhtml
+%%RUBY_LIBDIR%%/rdoc/generator/template/darkfish/_sidebar_navigation.rhtml
+%%RUBY_LIBDIR%%/rdoc/generator/template/darkfish/_sidebar_pages.rhtml
+%%RUBY_LIBDIR%%/rdoc/generator/template/darkfish/_sidebar_parent.rhtml
+%%RUBY_LIBDIR%%/rdoc/generator/template/darkfish/_sidebar_search.rhtml
+%%RUBY_LIBDIR%%/rdoc/generator/template/darkfish/_sidebar_sections.rhtml
+%%RUBY_LIBDIR%%/rdoc/generator/template/darkfish/_sidebar_table_of_contents.rhtml
+%%RUBY_LIBDIR%%/rdoc/generator/template/darkfish/class.rhtml
+%%RUBY_LIBDIR%%/rdoc/generator/template/darkfish/images/add.png
+%%RUBY_LIBDIR%%/rdoc/generator/template/darkfish/images/arrow_up.png
+%%RUBY_LIBDIR%%/rdoc/generator/template/darkfish/images/brick.png
+%%RUBY_LIBDIR%%/rdoc/generator/template/darkfish/images/brick_link.png
+%%RUBY_LIBDIR%%/rdoc/generator/template/darkfish/images/bug.png
+%%RUBY_LIBDIR%%/rdoc/generator/template/darkfish/images/bullet_black.png
+%%RUBY_LIBDIR%%/rdoc/generator/template/darkfish/images/bullet_toggle_minus.png
+%%RUBY_LIBDIR%%/rdoc/generator/template/darkfish/images/bullet_toggle_plus.png
+%%RUBY_LIBDIR%%/rdoc/generator/template/darkfish/images/date.png
+%%RUBY_LIBDIR%%/rdoc/generator/template/darkfish/images/delete.png
+%%RUBY_LIBDIR%%/rdoc/generator/template/darkfish/images/find.png
+%%RUBY_LIBDIR%%/rdoc/generator/template/darkfish/images/loadingAnimation.gif
+%%RUBY_LIBDIR%%/rdoc/generator/template/darkfish/images/macFFBgHack.png
+%%RUBY_LIBDIR%%/rdoc/generator/template/darkfish/images/package.png
+%%RUBY_LIBDIR%%/rdoc/generator/template/darkfish/images/page_green.png
+%%RUBY_LIBDIR%%/rdoc/generator/template/darkfish/images/page_white_text.png
+%%RUBY_LIBDIR%%/rdoc/generator/template/darkfish/images/page_white_width.png
+%%RUBY_LIBDIR%%/rdoc/generator/template/darkfish/images/plugin.png
+%%RUBY_LIBDIR%%/rdoc/generator/template/darkfish/images/ruby.png
+%%RUBY_LIBDIR%%/rdoc/generator/template/darkfish/images/tag_blue.png
+%%RUBY_LIBDIR%%/rdoc/generator/template/darkfish/images/tag_green.png
+%%RUBY_LIBDIR%%/rdoc/generator/template/darkfish/images/transparent.png
+%%RUBY_LIBDIR%%/rdoc/generator/template/darkfish/images/wrench.png
+%%RUBY_LIBDIR%%/rdoc/generator/template/darkfish/images/wrench_orange.png
+%%RUBY_LIBDIR%%/rdoc/generator/template/darkfish/images/zoom.png
+%%RUBY_LIBDIR%%/rdoc/generator/template/darkfish/index.rhtml
+%%RUBY_LIBDIR%%/rdoc/generator/template/darkfish/js/darkfish.js
+%%RUBY_LIBDIR%%/rdoc/generator/template/darkfish/js/jquery.js
+%%RUBY_LIBDIR%%/rdoc/generator/template/darkfish/js/search.js
+%%RUBY_LIBDIR%%/rdoc/generator/template/darkfish/page.rhtml
+%%RUBY_LIBDIR%%/rdoc/generator/template/darkfish/rdoc.css
+%%RUBY_LIBDIR%%/rdoc/generator/template/darkfish/servlet_not_found.rhtml
+%%RUBY_LIBDIR%%/rdoc/generator/template/darkfish/servlet_root.rhtml
+%%RUBY_LIBDIR%%/rdoc/generator/template/darkfish/table_of_contents.rhtml
+%%RUBY_LIBDIR%%/rdoc/generator/template/json_index/js/navigation.js
+%%RUBY_LIBDIR%%/rdoc/generator/template/json_index/js/searcher.js
+%%RUBY_LIBDIR%%/rdoc/generator.rb
+%%RUBY_LIBDIR%%/rdoc/ghost_method.rb
+%%RUBY_LIBDIR%%/rdoc/include.rb
+%%RUBY_LIBDIR%%/rdoc/known_classes.rb
+%%RUBY_LIBDIR%%/rdoc/markdown/entities.rb
+%%RUBY_LIBDIR%%/rdoc/markdown/literals_1_9.rb
+%%RUBY_LIBDIR%%/rdoc/markdown.rb
+%%RUBY_LIBDIR%%/rdoc/markup/attr_changer.rb
+%%RUBY_LIBDIR%%/rdoc/markup/attr_span.rb
+%%RUBY_LIBDIR%%/rdoc/markup/attribute_manager.rb
+%%RUBY_LIBDIR%%/rdoc/markup/attributes.rb
+%%RUBY_LIBDIR%%/rdoc/markup/blank_line.rb
+%%RUBY_LIBDIR%%/rdoc/markup/block_quote.rb
+%%RUBY_LIBDIR%%/rdoc/markup/document.rb
+%%RUBY_LIBDIR%%/rdoc/markup/formatter.rb
+%%RUBY_LIBDIR%%/rdoc/markup/formatter_test_case.rb
+%%RUBY_LIBDIR%%/rdoc/markup/hard_break.rb
+%%RUBY_LIBDIR%%/rdoc/markup/heading.rb
+%%RUBY_LIBDIR%%/rdoc/markup/include.rb
+%%RUBY_LIBDIR%%/rdoc/markup/indented_paragraph.rb
+%%RUBY_LIBDIR%%/rdoc/markup/inline.rb
+%%RUBY_LIBDIR%%/rdoc/markup/list.rb
+%%RUBY_LIBDIR%%/rdoc/markup/list_item.rb
+%%RUBY_LIBDIR%%/rdoc/markup/paragraph.rb
+%%RUBY_LIBDIR%%/rdoc/markup/parser.rb
+%%RUBY_LIBDIR%%/rdoc/markup/pre_process.rb
+%%RUBY_LIBDIR%%/rdoc/markup/raw.rb
+%%RUBY_LIBDIR%%/rdoc/markup/rule.rb
+%%RUBY_LIBDIR%%/rdoc/markup/special.rb
+%%RUBY_LIBDIR%%/rdoc/markup/text_formatter_test_case.rb
+%%RUBY_LIBDIR%%/rdoc/markup/to_ansi.rb
+%%RUBY_LIBDIR%%/rdoc/markup/to_bs.rb
+%%RUBY_LIBDIR%%/rdoc/markup/to_html.rb
+%%RUBY_LIBDIR%%/rdoc/markup/to_html_crossref.rb
+%%RUBY_LIBDIR%%/rdoc/markup/to_html_snippet.rb
+%%RUBY_LIBDIR%%/rdoc/markup/to_joined_paragraph.rb
+%%RUBY_LIBDIR%%/rdoc/markup/to_label.rb
+%%RUBY_LIBDIR%%/rdoc/markup/to_markdown.rb
+%%RUBY_LIBDIR%%/rdoc/markup/to_rdoc.rb
+%%RUBY_LIBDIR%%/rdoc/markup/to_table_of_contents.rb
+%%RUBY_LIBDIR%%/rdoc/markup/to_test.rb
+%%RUBY_LIBDIR%%/rdoc/markup/to_tt_only.rb
+%%RUBY_LIBDIR%%/rdoc/markup/verbatim.rb
+%%RUBY_LIBDIR%%/rdoc/markup.rb
+%%RUBY_LIBDIR%%/rdoc/meta_method.rb
+%%RUBY_LIBDIR%%/rdoc/method_attr.rb
+%%RUBY_LIBDIR%%/rdoc/normal_class.rb
+%%RUBY_LIBDIR%%/rdoc/normal_module.rb
+%%RUBY_LIBDIR%%/rdoc/options.rb
+%%RUBY_LIBDIR%%/rdoc/parser/c.rb
+%%RUBY_LIBDIR%%/rdoc/parser/markdown.rb
+%%RUBY_LIBDIR%%/rdoc/parser/rd.rb
+%%RUBY_LIBDIR%%/rdoc/parser/ruby.rb
+%%RUBY_LIBDIR%%/rdoc/parser/ruby_tools.rb
+%%RUBY_LIBDIR%%/rdoc/parser/simple.rb
+%%RUBY_LIBDIR%%/rdoc/parser/text.rb
+%%RUBY_LIBDIR%%/rdoc/parser.rb
+%%RUBY_LIBDIR%%/rdoc/rd/block_parser.rb
+%%RUBY_LIBDIR%%/rdoc/rd/inline.rb
+%%RUBY_LIBDIR%%/rdoc/rd/inline_parser.rb
+%%RUBY_LIBDIR%%/rdoc/rd.rb
+%%RUBY_LIBDIR%%/rdoc/rdoc.rb
+%%RUBY_LIBDIR%%/rdoc/require.rb
+%%RUBY_LIBDIR%%/rdoc/ri/driver.rb
+%%RUBY_LIBDIR%%/rdoc/ri/formatter.rb
+%%RUBY_LIBDIR%%/rdoc/ri/paths.rb
+%%RUBY_LIBDIR%%/rdoc/ri/store.rb
+%%RUBY_LIBDIR%%/rdoc/ri.rb
+%%RUBY_LIBDIR%%/rdoc/ruby_lex.rb
+%%RUBY_LIBDIR%%/rdoc/ruby_token.rb
+%%RUBY_LIBDIR%%/rdoc/rubygems_hook.rb
+%%RUBY_LIBDIR%%/rdoc/servlet.rb
+%%RUBY_LIBDIR%%/rdoc/single_class.rb
+%%RUBY_LIBDIR%%/rdoc/stats/normal.rb
+%%RUBY_LIBDIR%%/rdoc/stats/quiet.rb
+%%RUBY_LIBDIR%%/rdoc/stats/verbose.rb
+%%RUBY_LIBDIR%%/rdoc/stats.rb
+%%RUBY_LIBDIR%%/rdoc/store.rb
+%%RUBY_LIBDIR%%/rdoc/task.rb
+%%RUBY_LIBDIR%%/rdoc/test_case.rb
+%%RUBY_LIBDIR%%/rdoc/text.rb
+%%RUBY_LIBDIR%%/rdoc/token_stream.rb
+%%RUBY_LIBDIR%%/rdoc/tom_doc.rb
+%%RUBY_LIBDIR%%/rdoc/top_level.rb
+%%RUBY_LIBDIR%%/rdoc.rb
+%%RUBY_LIBDIR%%/resolv-replace.rb
+%%RUBY_LIBDIR%%/resolv.rb
+%%RUBY_LIBDIR%%/rexml/attlistdecl.rb
+%%RUBY_LIBDIR%%/rexml/attribute.rb
+%%RUBY_LIBDIR%%/rexml/cdata.rb
+%%RUBY_LIBDIR%%/rexml/child.rb
+%%RUBY_LIBDIR%%/rexml/comment.rb
+%%RUBY_LIBDIR%%/rexml/doctype.rb
+%%RUBY_LIBDIR%%/rexml/document.rb
+%%RUBY_LIBDIR%%/rexml/dtd/attlistdecl.rb
+%%RUBY_LIBDIR%%/rexml/dtd/dtd.rb
+%%RUBY_LIBDIR%%/rexml/dtd/elementdecl.rb
+%%RUBY_LIBDIR%%/rexml/dtd/entitydecl.rb
+%%RUBY_LIBDIR%%/rexml/dtd/notationdecl.rb
+%%RUBY_LIBDIR%%/rexml/element.rb
+%%RUBY_LIBDIR%%/rexml/encoding.rb
+%%RUBY_LIBDIR%%/rexml/entity.rb
+%%RUBY_LIBDIR%%/rexml/formatters/default.rb
+%%RUBY_LIBDIR%%/rexml/formatters/pretty.rb
+%%RUBY_LIBDIR%%/rexml/formatters/transitive.rb
+%%RUBY_LIBDIR%%/rexml/functions.rb
+%%RUBY_LIBDIR%%/rexml/instruction.rb
+%%RUBY_LIBDIR%%/rexml/light/node.rb
+%%RUBY_LIBDIR%%/rexml/namespace.rb
+%%RUBY_LIBDIR%%/rexml/node.rb
+%%RUBY_LIBDIR%%/rexml/output.rb
+%%RUBY_LIBDIR%%/rexml/parent.rb
+%%RUBY_LIBDIR%%/rexml/parseexception.rb
+%%RUBY_LIBDIR%%/rexml/parsers/baseparser.rb
+%%RUBY_LIBDIR%%/rexml/parsers/lightparser.rb
+%%RUBY_LIBDIR%%/rexml/parsers/pullparser.rb
+%%RUBY_LIBDIR%%/rexml/parsers/sax2parser.rb
+%%RUBY_LIBDIR%%/rexml/parsers/streamparser.rb
+%%RUBY_LIBDIR%%/rexml/parsers/treeparser.rb
+%%RUBY_LIBDIR%%/rexml/parsers/ultralightparser.rb
+%%RUBY_LIBDIR%%/rexml/parsers/xpathparser.rb
+%%RUBY_LIBDIR%%/rexml/quickpath.rb
+%%RUBY_LIBDIR%%/rexml/rexml.rb
+%%RUBY_LIBDIR%%/rexml/sax2listener.rb
+%%RUBY_LIBDIR%%/rexml/source.rb
+%%RUBY_LIBDIR%%/rexml/streamlistener.rb
+%%RUBY_LIBDIR%%/rexml/syncenumerator.rb
+%%RUBY_LIBDIR%%/rexml/text.rb
+%%RUBY_LIBDIR%%/rexml/undefinednamespaceexception.rb
+%%RUBY_LIBDIR%%/rexml/validation/relaxng.rb
+%%RUBY_LIBDIR%%/rexml/validation/validation.rb
+%%RUBY_LIBDIR%%/rexml/validation/validationexception.rb
+%%RUBY_LIBDIR%%/rexml/xmldecl.rb
+%%RUBY_LIBDIR%%/rexml/xmltokens.rb
+%%RUBY_LIBDIR%%/rexml/xpath.rb
+%%RUBY_LIBDIR%%/rexml/xpath_parser.rb
+%%RUBY_LIBDIR%%/rinda/rinda.rb
+%%RUBY_LIBDIR%%/rinda/ring.rb
+%%RUBY_LIBDIR%%/rinda/tuplespace.rb
+%%RUBY_LIBDIR%%/ripper/core.rb
+%%RUBY_LIBDIR%%/ripper/filter.rb
+%%RUBY_LIBDIR%%/ripper/lexer.rb
+%%RUBY_LIBDIR%%/ripper/sexp.rb
+%%RUBY_LIBDIR%%/ripper.rb
+%%RUBY_LIBDIR%%/rss/0.9.rb
+%%RUBY_LIBDIR%%/rss/1.0.rb
+%%RUBY_LIBDIR%%/rss/2.0.rb
+%%RUBY_LIBDIR%%/rss/atom.rb
+%%RUBY_LIBDIR%%/rss/content/1.0.rb
+%%RUBY_LIBDIR%%/rss/content/2.0.rb
+%%RUBY_LIBDIR%%/rss/content.rb
+%%RUBY_LIBDIR%%/rss/converter.rb
+%%RUBY_LIBDIR%%/rss/dublincore/1.0.rb
+%%RUBY_LIBDIR%%/rss/dublincore/2.0.rb
+%%RUBY_LIBDIR%%/rss/dublincore/atom.rb
+%%RUBY_LIBDIR%%/rss/dublincore.rb
+%%RUBY_LIBDIR%%/rss/image.rb
+%%RUBY_LIBDIR%%/rss/itunes.rb
+%%RUBY_LIBDIR%%/rss/maker/0.9.rb
+%%RUBY_LIBDIR%%/rss/maker/1.0.rb
+%%RUBY_LIBDIR%%/rss/maker/2.0.rb
+%%RUBY_LIBDIR%%/rss/maker/atom.rb
+%%RUBY_LIBDIR%%/rss/maker/base.rb
+%%RUBY_LIBDIR%%/rss/maker/content.rb
+%%RUBY_LIBDIR%%/rss/maker/dublincore.rb
+%%RUBY_LIBDIR%%/rss/maker/entry.rb
+%%RUBY_LIBDIR%%/rss/maker/feed.rb
+%%RUBY_LIBDIR%%/rss/maker/image.rb
+%%RUBY_LIBDIR%%/rss/maker/itunes.rb
+%%RUBY_LIBDIR%%/rss/maker/slash.rb
+%%RUBY_LIBDIR%%/rss/maker/syndication.rb
+%%RUBY_LIBDIR%%/rss/maker/taxonomy.rb
+%%RUBY_LIBDIR%%/rss/maker/trackback.rb
+%%RUBY_LIBDIR%%/rss/maker.rb
+%%RUBY_LIBDIR%%/rss/parser.rb
+%%RUBY_LIBDIR%%/rss/rexmlparser.rb
+%%RUBY_LIBDIR%%/rss/rss.rb
+%%RUBY_LIBDIR%%/rss/slash.rb
+%%RUBY_LIBDIR%%/rss/syndication.rb
+%%RUBY_LIBDIR%%/rss/taxonomy.rb
+%%RUBY_LIBDIR%%/rss/trackback.rb
+%%RUBY_LIBDIR%%/rss/utils.rb
+%%RUBY_LIBDIR%%/rss/xml-stylesheet.rb
+%%RUBY_LIBDIR%%/rss/xml.rb
+%%RUBY_LIBDIR%%/rss/xmlparser.rb
+%%RUBY_LIBDIR%%/rss/xmlscanner.rb
+%%RUBY_LIBDIR%%/rss.rb
+%%RUBY_LIBDIR%%/rubygems/available_set.rb
+%%RUBY_LIBDIR%%/rubygems/command.rb
+%%RUBY_LIBDIR%%/rubygems/command_manager.rb
+%%RUBY_LIBDIR%%/rubygems/commands/build_command.rb
+%%RUBY_LIBDIR%%/rubygems/commands/cert_command.rb
+%%RUBY_LIBDIR%%/rubygems/commands/check_command.rb
+%%RUBY_LIBDIR%%/rubygems/commands/cleanup_command.rb
+%%RUBY_LIBDIR%%/rubygems/commands/contents_command.rb
+%%RUBY_LIBDIR%%/rubygems/commands/dependency_command.rb
+%%RUBY_LIBDIR%%/rubygems/commands/environment_command.rb
+%%RUBY_LIBDIR%%/rubygems/commands/fetch_command.rb
+%%RUBY_LIBDIR%%/rubygems/commands/generate_index_command.rb
+%%RUBY_LIBDIR%%/rubygems/commands/help_command.rb
+%%RUBY_LIBDIR%%/rubygems/commands/install_command.rb
+%%RUBY_LIBDIR%%/rubygems/commands/list_command.rb
+%%RUBY_LIBDIR%%/rubygems/commands/lock_command.rb
+%%RUBY_LIBDIR%%/rubygems/commands/mirror_command.rb
+%%RUBY_LIBDIR%%/rubygems/commands/outdated_command.rb
+%%RUBY_LIBDIR%%/rubygems/commands/owner_command.rb
+%%RUBY_LIBDIR%%/rubygems/commands/pristine_command.rb
+%%RUBY_LIBDIR%%/rubygems/commands/push_command.rb
+%%RUBY_LIBDIR%%/rubygems/commands/query_command.rb
+%%RUBY_LIBDIR%%/rubygems/commands/rdoc_command.rb
+%%RUBY_LIBDIR%%/rubygems/commands/search_command.rb
+%%RUBY_LIBDIR%%/rubygems/commands/server_command.rb
+%%RUBY_LIBDIR%%/rubygems/commands/setup_command.rb
+%%RUBY_LIBDIR%%/rubygems/commands/sources_command.rb
+%%RUBY_LIBDIR%%/rubygems/commands/specification_command.rb
+%%RUBY_LIBDIR%%/rubygems/commands/stale_command.rb
+%%RUBY_LIBDIR%%/rubygems/commands/uninstall_command.rb
+%%RUBY_LIBDIR%%/rubygems/commands/unpack_command.rb
+%%RUBY_LIBDIR%%/rubygems/commands/update_command.rb
+%%RUBY_LIBDIR%%/rubygems/commands/which_command.rb
+%%RUBY_LIBDIR%%/rubygems/commands/yank_command.rb
+%%RUBY_LIBDIR%%/rubygems/compatibility.rb
+%%RUBY_LIBDIR%%/rubygems/config_file.rb
+%%RUBY_LIBDIR%%/rubygems/core_ext/kernel_gem.rb
+%%RUBY_LIBDIR%%/rubygems/core_ext/kernel_require.rb
+%%RUBY_LIBDIR%%/rubygems/defaults.rb
+%%RUBY_LIBDIR%%/rubygems/dependency.rb
+%%RUBY_LIBDIR%%/rubygems/dependency_installer.rb
+%%RUBY_LIBDIR%%/rubygems/dependency_list.rb
+%%RUBY_LIBDIR%%/rubygems/dependency_resolver.rb
+%%RUBY_LIBDIR%%/rubygems/deprecate.rb
+%%RUBY_LIBDIR%%/rubygems/errors.rb
+%%RUBY_LIBDIR%%/rubygems/exceptions.rb
+%%RUBY_LIBDIR%%/rubygems/ext/builder.rb
+%%RUBY_LIBDIR%%/rubygems/ext/configure_builder.rb
+%%RUBY_LIBDIR%%/rubygems/ext/ext_conf_builder.rb
+%%RUBY_LIBDIR%%/rubygems/ext/rake_builder.rb
+%%RUBY_LIBDIR%%/rubygems/ext.rb
+%%RUBY_LIBDIR%%/rubygems/gem_runner.rb
+%%RUBY_LIBDIR%%/rubygems/gemcutter_utilities.rb
+%%RUBY_LIBDIR%%/rubygems/indexer.rb
+%%RUBY_LIBDIR%%/rubygems/install_message.rb
+%%RUBY_LIBDIR%%/rubygems/install_update_options.rb
+%%RUBY_LIBDIR%%/rubygems/installer.rb
+%%RUBY_LIBDIR%%/rubygems/installer_test_case.rb
+%%RUBY_LIBDIR%%/rubygems/local_remote_options.rb
+%%RUBY_LIBDIR%%/rubygems/mock_gem_ui.rb
+%%RUBY_LIBDIR%%/rubygems/name_tuple.rb
+%%RUBY_LIBDIR%%/rubygems/package/digest_io.rb
+%%RUBY_LIBDIR%%/rubygems/package/old.rb
+%%RUBY_LIBDIR%%/rubygems/package/tar_header.rb
+%%RUBY_LIBDIR%%/rubygems/package/tar_reader/entry.rb
+%%RUBY_LIBDIR%%/rubygems/package/tar_reader.rb
+%%RUBY_LIBDIR%%/rubygems/package/tar_test_case.rb
+%%RUBY_LIBDIR%%/rubygems/package/tar_writer.rb
+%%RUBY_LIBDIR%%/rubygems/package.rb
+%%RUBY_LIBDIR%%/rubygems/package_task.rb
+%%RUBY_LIBDIR%%/rubygems/path_support.rb
+%%RUBY_LIBDIR%%/rubygems/platform.rb
+%%RUBY_LIBDIR%%/rubygems/psych_additions.rb
+%%RUBY_LIBDIR%%/rubygems/psych_tree.rb
+%%RUBY_LIBDIR%%/rubygems/rdoc.rb
+%%RUBY_LIBDIR%%/rubygems/remote_fetcher.rb
+%%RUBY_LIBDIR%%/rubygems/request_set.rb
+%%RUBY_LIBDIR%%/rubygems/requirement.rb
+%%RUBY_LIBDIR%%/rubygems/security/policies.rb
+%%RUBY_LIBDIR%%/rubygems/security/policy.rb
+%%RUBY_LIBDIR%%/rubygems/security/signer.rb
+%%RUBY_LIBDIR%%/rubygems/security/trust_dir.rb
+%%RUBY_LIBDIR%%/rubygems/security.rb
+%%RUBY_LIBDIR%%/rubygems/server.rb
+%%RUBY_LIBDIR%%/rubygems/source.rb
+%%RUBY_LIBDIR%%/rubygems/source_list.rb
+%%RUBY_LIBDIR%%/rubygems/source_local.rb
+%%RUBY_LIBDIR%%/rubygems/source_specific_file.rb
+%%RUBY_LIBDIR%%/rubygems/spec_fetcher.rb
+%%RUBY_LIBDIR%%/rubygems/specification.rb
+%%RUBY_LIBDIR%%/rubygems/ssl_certs/AddTrustExternalCARoot.pem
+%%RUBY_LIBDIR%%/rubygems/ssl_certs/Entrust_net-Secure-Server-Certification-Authority.pem
+%%RUBY_LIBDIR%%/rubygems/ssl_certs/VerisignClass3PublicPrimaryCertificationAuthority-G2.pem
+%%RUBY_LIBDIR%%/rubygems/ssl_certs/ca-bundle.pem
+%%RUBY_LIBDIR%%/rubygems/syck_hack.rb
+%%RUBY_LIBDIR%%/rubygems/test_case.rb
+%%RUBY_LIBDIR%%/rubygems/test_utilities.rb
+%%RUBY_LIBDIR%%/rubygems/text.rb
+%%RUBY_LIBDIR%%/rubygems/uninstaller.rb
+%%RUBY_LIBDIR%%/rubygems/user_interaction.rb
+%%RUBY_LIBDIR%%/rubygems/validator.rb
+%%RUBY_LIBDIR%%/rubygems/version.rb
+%%RUBY_LIBDIR%%/rubygems/version_option.rb
+%%RUBY_LIBDIR%%/rubygems.rb
+%%RUBY_LIBDIR%%/scanf.rb
+%%RUBY_LIBDIR%%/securerandom.rb
+%%RUBY_LIBDIR%%/set.rb
+%%RUBY_LIBDIR%%/shell/builtin-command.rb
+%%RUBY_LIBDIR%%/shell/command-processor.rb
+%%RUBY_LIBDIR%%/shell/error.rb
+%%RUBY_LIBDIR%%/shell/filter.rb
+%%RUBY_LIBDIR%%/shell/process-controller.rb
+%%RUBY_LIBDIR%%/shell/system-command.rb
+%%RUBY_LIBDIR%%/shell/version.rb
+%%RUBY_LIBDIR%%/shell.rb
+%%RUBY_LIBDIR%%/shellwords.rb
+%%RUBY_LIBDIR%%/singleton.rb
+%%RUBY_LIBDIR%%/socket.rb
+%%RUBY_LIBDIR%%/sync.rb
+%%RUBY_LIBDIR%%/syslog/logger.rb
+%%RUBY_LIBDIR%%/tempfile.rb
+%%RUBY_LIBDIR%%/test/unit/assertions.rb
+%%RUBY_LIBDIR%%/test/unit/parallel.rb
+%%RUBY_LIBDIR%%/test/unit/testcase.rb
+%%RUBY_LIBDIR%%/test/unit.rb
+%%RUBY_LIBDIR%%/thread.rb
+%%RUBY_LIBDIR%%/thwait.rb
+%%RUBY_LIBDIR%%/time.rb
+%%RUBY_LIBDIR%%/timeout.rb
+%%RUBY_LIBDIR%%/tmpdir.rb
+%%RUBY_LIBDIR%%/tracer.rb
+%%RUBY_LIBDIR%%/tsort.rb
+%%RUBY_LIBDIR%%/ubygems.rb
+%%RUBY_LIBDIR%%/un.rb
+%%RUBY_LIBDIR%%/uri/common.rb
+%%RUBY_LIBDIR%%/uri/ftp.rb
+%%RUBY_LIBDIR%%/uri/generic.rb
+%%RUBY_LIBDIR%%/uri/http.rb
+%%RUBY_LIBDIR%%/uri/https.rb
+%%RUBY_LIBDIR%%/uri/ldap.rb
+%%RUBY_LIBDIR%%/uri/ldaps.rb
+%%RUBY_LIBDIR%%/uri/mailto.rb
+%%RUBY_LIBDIR%%/uri.rb
+%%RUBY_LIBDIR%%/weakref.rb
+%%RUBY_LIBDIR%%/webrick/accesslog.rb
+%%RUBY_LIBDIR%%/webrick/cgi.rb
+%%RUBY_LIBDIR%%/webrick/compat.rb
+%%RUBY_LIBDIR%%/webrick/config.rb
+%%RUBY_LIBDIR%%/webrick/cookie.rb
+%%RUBY_LIBDIR%%/webrick/htmlutils.rb
+%%RUBY_LIBDIR%%/webrick/httpauth/authenticator.rb
+%%RUBY_LIBDIR%%/webrick/httpauth/basicauth.rb
+%%RUBY_LIBDIR%%/webrick/httpauth/digestauth.rb
+%%RUBY_LIBDIR%%/webrick/httpauth/htdigest.rb
+%%RUBY_LIBDIR%%/webrick/httpauth/htgroup.rb
+%%RUBY_LIBDIR%%/webrick/httpauth/htpasswd.rb
+%%RUBY_LIBDIR%%/webrick/httpauth/userdb.rb
+%%RUBY_LIBDIR%%/webrick/httpauth.rb
+%%RUBY_LIBDIR%%/webrick/httpproxy.rb
+%%RUBY_LIBDIR%%/webrick/httprequest.rb
+%%RUBY_LIBDIR%%/webrick/httpresponse.rb
+%%RUBY_LIBDIR%%/webrick/https.rb
+%%RUBY_LIBDIR%%/webrick/httpserver.rb
+%%RUBY_LIBDIR%%/webrick/httpservlet/abstract.rb
+%%RUBY_LIBDIR%%/webrick/httpservlet/cgi_runner.rb
+%%RUBY_LIBDIR%%/webrick/httpservlet/cgihandler.rb
+%%RUBY_LIBDIR%%/webrick/httpservlet/erbhandler.rb
+%%RUBY_LIBDIR%%/webrick/httpservlet/filehandler.rb
+%%RUBY_LIBDIR%%/webrick/httpservlet/prochandler.rb
+%%RUBY_LIBDIR%%/webrick/httpservlet.rb
+%%RUBY_LIBDIR%%/webrick/httpstatus.rb
+%%RUBY_LIBDIR%%/webrick/httputils.rb
+%%RUBY_LIBDIR%%/webrick/httpversion.rb
+%%RUBY_LIBDIR%%/webrick/log.rb
+%%RUBY_LIBDIR%%/webrick/server.rb
+%%RUBY_LIBDIR%%/webrick/ssl.rb
+%%RUBY_LIBDIR%%/webrick/utils.rb
+%%RUBY_LIBDIR%%/webrick/version.rb
+%%RUBY_LIBDIR%%/webrick.rb
+%%RUBY_LIBDIR%%/xmlrpc/base64.rb
+%%RUBY_LIBDIR%%/xmlrpc/client.rb
+%%RUBY_LIBDIR%%/xmlrpc/config.rb
+%%RUBY_LIBDIR%%/xmlrpc/create.rb
+%%RUBY_LIBDIR%%/xmlrpc/datetime.rb
+%%RUBY_LIBDIR%%/xmlrpc/httpserver.rb
+%%RUBY_LIBDIR%%/xmlrpc/marshal.rb
+%%RUBY_LIBDIR%%/xmlrpc/parser.rb
+%%RUBY_LIBDIR%%/xmlrpc/server.rb
+%%RUBY_LIBDIR%%/xmlrpc/utils.rb
+%%RUBY_LIBDIR%%/xmlrpc.rb
+%%RUBY_LIBDIR%%/yaml/dbm.rb
+%%RUBY_LIBDIR%%/yaml/store.rb
+%%RUBY_LIBDIR%%/yaml.rb
+@dirrm %%RUBY_LIBDIR%%/yaml
+@dirrm %%RUBY_LIBDIR%%/xmlrpc
+@dirrm %%RUBY_LIBDIR%%/webrick/httpservlet
+@dirrm %%RUBY_LIBDIR%%/webrick/httpauth
+@dirrm %%RUBY_LIBDIR%%/webrick
+@dirrm %%RUBY_LIBDIR%%/uri
+@dirrm %%RUBY_LIBDIR%%/test/unit
+@dirrm %%RUBY_LIBDIR%%/test
+@dirrm %%RUBY_LIBDIR%%/syslog
+@dirrm %%RUBY_LIBDIR%%/shell
+@dirrm %%RUBY_LIBDIR%%/rubygems/ssl_certs
+@dirrm %%RUBY_LIBDIR%%/rubygems/security
+@dirrm %%RUBY_LIBDIR%%/rubygems/package/tar_reader
+@dirrm %%RUBY_LIBDIR%%/rubygems/package
+@dirrm %%RUBY_LIBDIR%%/rubygems/ext
+@dirrm %%RUBY_LIBDIR%%/rubygems/core_ext
+@dirrm %%RUBY_LIBDIR%%/rubygems/commands
+@dirrm %%RUBY_LIBDIR%%/rubygems
+@dirrm %%RUBY_LIBDIR%%/rss/maker
+@dirrm %%RUBY_LIBDIR%%/rss/dublincore
+@dirrm %%RUBY_LIBDIR%%/rss/content
+@dirrm %%RUBY_LIBDIR%%/rss
+@dirrm %%RUBY_LIBDIR%%/ripper
+@dirrm %%RUBY_LIBDIR%%/rinda
+@dirrm %%RUBY_LIBDIR%%/rexml/validation
+@dirrm %%RUBY_LIBDIR%%/rexml/parsers
+@dirrm %%RUBY_LIBDIR%%/rexml/light
+@dirrm %%RUBY_LIBDIR%%/rexml/formatters
+@dirrm %%RUBY_LIBDIR%%/rexml/dtd
+@dirrm %%RUBY_LIBDIR%%/rexml
+@dirrm %%RUBY_LIBDIR%%/rdoc/stats
+@dirrm %%RUBY_LIBDIR%%/rdoc/ri
+@dirrm %%RUBY_LIBDIR%%/rdoc/rd
+@dirrm %%RUBY_LIBDIR%%/rdoc/parser
+@dirrm %%RUBY_LIBDIR%%/rdoc/markup
+@dirrm %%RUBY_LIBDIR%%/rdoc/markdown
+@dirrm %%RUBY_LIBDIR%%/rdoc/generator/template/json_index/js
+@dirrm %%RUBY_LIBDIR%%/rdoc/generator/template/json_index
+@dirrm %%RUBY_LIBDIR%%/rdoc/generator/template/darkfish/js
+@dirrm %%RUBY_LIBDIR%%/rdoc/generator/template/darkfish/images
+@dirrm %%RUBY_LIBDIR%%/rdoc/generator/template/darkfish
+@dirrm %%RUBY_LIBDIR%%/rdoc/generator/template
+@dirrm %%RUBY_LIBDIR%%/rdoc/generator
+@dirrm %%RUBY_LIBDIR%%/rdoc/context
+@dirrm %%RUBY_LIBDIR%%/rdoc
+@dirrm %%RUBY_LIBDIR%%/rbconfig
+@dirrm %%RUBY_LIBDIR%%/racc
+@dirrm %%RUBY_LIBDIR%%/psych/visitors
+@dirrm %%RUBY_LIBDIR%%/psych/nodes
+@dirrm %%RUBY_LIBDIR%%/psych/json
+@dirrm %%RUBY_LIBDIR%%/psych/handlers
+@dirrm %%RUBY_LIBDIR%%/psych
+@dirrm %%RUBY_LIBDIR%%/optparse
+@dirrm %%RUBY_LIBDIR%%/openssl
+@dirrm %%RUBY_LIBDIR%%/net/http
+@dirrm %%RUBY_LIBDIR%%/net
+@dirrm %%RUBY_LIBDIR%%/minitest
+@dirrm %%RUBY_LIBDIR%%/matrix
+@dirrm %%RUBY_LIBDIR%%/json/add
+@dirrm %%RUBY_LIBDIR%%/json
+@dirrm %%RUBY_LIBDIR%%/irb/lc/ja
+@dirrm %%RUBY_LIBDIR%%/irb/lc
+@dirrm %%RUBY_LIBDIR%%/irb/ext
+@dirrm %%RUBY_LIBDIR%%/irb/cmd
+@dirrm %%RUBY_LIBDIR%%/irb
+@dirrm %%RUBY_LIBDIR%%/io/console
+@dirrm %%RUBY_LIBDIR%%/io
+@dirrm %%RUBY_LIBDIR%%/fiddle
+@dirrm %%RUBY_LIBDIR%%/drb
+@dirrm %%RUBY_LIBDIR%%/dl
+@dirrm %%RUBY_LIBDIR%%/digest
+@dirrm %%RUBY_LIBDIR%%/date
+@dirrm %%RUBY_LIBDIR%%/cgi/session
+@dirrm %%RUBY_LIBDIR%%/cgi
+@dirrm %%RUBY_LIBDIR%%/bigdecimal
+@dirrm %%RUBY_LIBDIR%%/%%RUBY_ARCH%%/racc
+@dirrm %%RUBY_LIBDIR%%/%%RUBY_ARCH%%/mathn
+@dirrm %%RUBY_LIBDIR%%/%%RUBY_ARCH%%/json/ext
+@dirrm %%RUBY_LIBDIR%%/%%RUBY_ARCH%%/json
+@dirrm %%RUBY_LIBDIR%%/%%RUBY_ARCH%%/io
+@dirrm %%RUBY_LIBDIR%%/%%RUBY_ARCH%%/enc/trans
+@dirrm %%RUBY_LIBDIR%%/%%RUBY_ARCH%%/enc
+@dirrm %%RUBY_LIBDIR%%/%%RUBY_ARCH%%/dl
+@dirrm %%RUBY_LIBDIR%%/%%RUBY_ARCH%%/digest
+@dirrm %%RUBY_LIBDIR%%/%%RUBY_ARCH%%
+@dirrm %%RUBY_LIBDIR%%/
+%%RUBY_SITEARCHLIBDIR%%/.keep_me
+@dirrmtry %%RUBY_SITEARCHLIBDIR%%
+@dirrmtry %%RUBY_SITELIBDIR%%
+@dirrmtry lib/ruby/site_ruby
+%%RUBY_VENDORARCHLIBDIR%%/.keep_me
+@dirrmtry %%RUBY_VENDORARCHLIBDIR%%
+@dirrmtry %%RUBY_VENDORLIBDIR%%
+@dirrmtry lib/ruby/vendor_ruby
+@dirrmtry lib/ruby/gems
+@dirrmtry lib/ruby

Property changes on: lang/ruby20/pkg-plist
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: fbsd:nokeywords
## -0,0 +1 ##
+yes
\ No newline at end of property
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property

!DSPAM:50bdbc1013141036315329!


>Release-Note:
>Audit-Trail:
>Unformatted:



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20121204090152.27BDF50F4C>