Send ruby 2.0 to the Attic

It was unhooked from the build back in September.
This commit is contained in:
jeremy 2016-10-31 12:02:49 +00:00
parent cb2b13c5e2
commit 2e6d02afd2
24 changed files with 0 additions and 17705 deletions

View File

@ -1,98 +0,0 @@
# $OpenBSD: Makefile,v 1.30 2016/09/01 14:23:58 jeremy Exp $
COMMENT-main = object oriented script language with threads
COMMENT-gdbm = gdbm interface for ruby
COMMENT-tk = tk interface for ruby
COMMENT-ri_docs = ri documentation files for ruby
VERSION = 2.0.0
PATCHLEVEL = 648
RUBYLIBREV = 2.0
DISTNAME = ruby-${VERSION}-p${PATCHLEVEL}
SHARED_LIBS = ruby20 1.1
PKGNAME-main = ruby-${VERSION}.${PATCHLEVEL}
PKGNAME-gdbm = ruby20-gdbm-${VERSION}.${PATCHLEVEL}
PKGNAME-tk = ruby20-tk-${VERSION}.${PATCHLEVEL}
PKGNAME-ri_docs = ruby20-ri_docs-${VERSION}.${PATCHLEVEL}
REVISION-main = 2
PKG_ARCH-ri_docs = *
WANTLIB-ri_docs = # empty
PKGSPEC-main = ruby->=2.0,<2.1
BUILD_DEPENDS = shells/bash
CONFIGURE_ARGS = --program-suffix=20 \
--with-soname=ruby20 \
--with-ruby-version=minor \
--with-mantype=doc \
--enable-pthread \
--enable-ipv6 \
--disable-option-checking
CONFIGURE_ENV = LIBruby20_VERSION=${LIBruby20_VERSION} \
ac_cv_prog_DOXYGEN="" \
ac_cv_prog_DOT=""
CONFIGURE_SCRIPT = ${LOCALBASE}/bin/bash ./configure
ALL_TARGET = V=1 main
INSTALL_TARGET = V=1 install-nodoc
WANTLIB-main = c crypto ffi m ncurses ncursesw pthread readline ssl \
termcap util yaml z
LIB_DEPENDS-main = devel/libyaml \
devel/libffi
PSEUDO_FLAVORS= no_tk no_ri_docs bootstrap
# Do not build the RI docs on slow arches
.if ${MACHINE_ARCH:Marm} || ${MACHINE_ARCH:Malpha} || ${MACHINE_ARCH:Mhppa}
FLAVOR?= no_ri_docs bootstrap
.else
FLAVOR?=
.endif
MULTI_PACKAGES = -main -gdbm -tk -ri_docs
.include <bsd.port.arch.mk>
WANTLIB-gdbm = c m gdbm pthread ruby20
LIB_DEPENDS-gdbm = databases/gdbm \
lang/ruby/${REV},-main>=${VERSION}.${PATCHLEVEL},<2.1
RUN_DEPENDS-gdbm =
.if ${BUILD_PACKAGES:M-tk}
CONFIGURE_ARGS+= --with-tcl-include=${PREFIX}/include/tcl8.5 \
--with-tk-include=${PREFIX}/include/tk8.5 \
--with-tcllib=tcl85 \
--with-tklib=tk85 \
--with-X11-dir=${X11BASE}
WANTLIB-tk = X11 c m pthread ruby20 tcl85 tk85
LIB_DEPENDS-tk = tk->=8.5,<8.6:x11/tk/8.5 \
lang/ruby/${REV},-main>=${VERSION}.${PATCHLEVEL},<2.1
RUN_DEPENDS-tk =
.endif
.if ${BUILD_PACKAGES:M-ri_docs}
ALL_TARGET += rdoc
INSTALL_TARGET += install-doc
.endif
SUBST_VARS += RUBYLIBREV
TEST_DEPENDS = ${FULLPKGNAME-main}:${BUILD_PKGPATH}
pre-install:
find ${WRKSRC} -name '*.orig' -print0 | xargs -0r rm
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/ruby
post-install:
${FIX_RBCONFIG}
do-test:
-cd ${WRKSRC} && make test-sample
-cd ${WRKSRC} && make btest-ruby
cd ${WRKSRC} && make test-all TESTOPTS="-v -q -x test/ruby/test_io.rb -x test/net/http/test_http.rb"
.include <bsd.port.mk>

View File

@ -1,2 +0,0 @@
SHA256 (ruby-2.0.0-p648.tar.gz) = hpC9a0lJwzOzkZdVxOSIhdv+1v0FX+nviZML3g0jdvg=
SIZE (ruby-2.0.0-p648.tar.gz) = 13622628

View File

@ -1,15 +0,0 @@
$OpenBSD: patch-common_mk,v 1.1.1.1 2013/03/19 23:38:23 jeremy Exp $
Don't regenerate rdoc documentation during install.
--- common.mk.orig Sun Jan 20 22:41:38 2013
+++ common.mk Fri Feb 8 08:22:13 2013
@@ -398,7 +398,7 @@ dont-install-man: $(PREP)
post-no-install-man::
@$(NULLCMD)
-install-doc: rdoc pre-install-doc do-install-doc post-install-doc
+install-doc: pre-install-doc do-install-doc post-install-doc
pre-install-doc:: install-prereq
do-install-doc: $(PROGRAM)
$(INSTRUBY) --make="$(MAKE)" $(INSTRUBY_ARGS) --install=rdoc --rdoc-output="$(RDOCOUT)"

View File

@ -1,16 +0,0 @@
$OpenBSD: patch-compile_c,v 1.2 2014/11/01 04:54:43 jeremy Exp $
Disable peephole optimizer on sparc64, since it occasionally segfaults.
--- compile.c.orig Sun Aug 31 00:55:32 2014
+++ compile.c Mon Oct 27 20:08:11 2014
@@ -1770,6 +1770,9 @@ static int
iseq_peephole_optimize(rb_iseq_t *iseq, LINK_ELEMENT *list, const int do_tailcallopt)
{
INSN *iobj = (INSN *)list;
+#ifdef __sparc64__
+ return COMPILE_OK;
+#endif
again:
if (iobj->insn_id == BIN(jump)) {
INSN *niobj, *diobj, *piobj;

View File

@ -1,47 +0,0 @@
$OpenBSD: patch-configure,v 1.4 2014/11/01 04:54:43 jeremy Exp $
Fix so name, checking for DOT and DOXYGEN.
Override the arch setting to remove OpenBSD version from it,
so ports don't have to be bumped when OpenBSD version changes.
--- configure.orig Mon Oct 27 04:31:14 2014
+++ configure Mon Oct 27 20:08:11 2014
@@ -17178,13 +17178,13 @@ fi
if test x"$enable_pthread" = xyes; then
for pthread_lib in thr pthread pthreads c c_r root; do
as_ac_Lib=`$as_echo "ac_cv_lib_$pthread_lib''_pthread_kill" | $as_tr_sh`
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for pthread_kill in -l$pthread_lib" >&5
-$as_echo_n "checking for pthread_kill in -l$pthread_lib... " >&6; }
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for pthread_kill in -$pthread_lib" >&5
+$as_echo_n "checking for pthread_kill in -$pthread_lib... " >&6; }
if eval \${$as_ac_Lib+:} false; then :
$as_echo_n "(cached) " >&6
else
ac_check_lib_save_LIBS=$LIBS
-LIBS="-l$pthread_lib $LIBS"
+LIBS="-$pthread_lib $LIBS"
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
@@ -18468,7 +18468,7 @@ esac
openbsd*) :
SOLIBS='$(LIBS)'
- LIBRUBY_SO='lib$(RUBY_SO_NAME).so.$(MAJOR).'`expr ${MINOR} \* 10 + ${TEENY}`
+ LIBRUBY_SO='lib$(RUBY_SO_NAME).so.'${LIBruby20_VERSION}
;; #(
solaris*) :
@@ -19699,7 +19699,10 @@ _ACEOF
_ACEOF
else
- arch="${target_cpu}-${target_os}"
+ case "$target_os" in
+ openbsd*) arch="$target_cpu-openbsd" ;;
+ *) arch="${target_cpu}-${target_os}" ;;
+ esac
cat >>confdefs.h <<_ACEOF
#define RUBY_PLATFORM "${arch}" !<verconf>!
_ACEOF

View File

@ -1,24 +0,0 @@
$OpenBSD: patch-ext_etc_etc_c,v 1.1 2016/07/15 15:39:03 jeremy Exp $
Use shadow versions of password functions.
--- ext/etc/etc.c.orig Thu Nov 27 23:30:21 2014
+++ ext/etc/etc.c Tue Jul 12 11:39:00 2016
@@ -161,7 +161,7 @@ etc_getpwuid(int argc, VALUE *argv, VALUE obj)
else {
uid = getuid();
}
- pwd = getpwuid(uid);
+ pwd = getpwuid_shadow(uid);
if (pwd == 0) rb_raise(rb_eArgError, "can't find user for %d", (int)uid);
return setup_passwd(pwd);
#else
@@ -191,7 +191,7 @@ etc_getpwnam(VALUE obj, VALUE nam)
struct passwd *pwd;
SafeStringValue(nam);
- pwd = getpwnam(RSTRING_PTR(nam));
+ pwd = getpwnam_shadow(RSTRING_PTR(nam));
if (pwd == 0) rb_raise(rb_eArgError, "can't find user for %"PRIsVALUE, nam);
return setup_passwd(pwd);
#else

View File

@ -1,13 +0,0 @@
$OpenBSD: patch-ext_openssl_extconf_rb,v 1.1 2015/08/27 15:55:04 kili Exp $
--- ext/openssl/extconf.rb.orig Thu Dec 20 08:42:56 2012
+++ ext/openssl/extconf.rb Thu Aug 27 17:18:32 2015
@@ -103,6 +103,9 @@ have_func("OPENSSL_cleanse")
have_func("SSLv2_method")
have_func("SSLv2_server_method")
have_func("SSLv2_client_method")
+have_func("SSLv3_method")
+have_func("SSLv3_server_method")
+have_func("SSLv3_client_method")
have_func("TLSv1_1_method")
have_func("TLSv1_1_server_method")
have_func("TLSv1_1_client_method")

View File

@ -1,16 +0,0 @@
$OpenBSD: patch-ext_openssl_ossl_ssl_c,v 1.1 2015/08/27 15:55:04 kili Exp $
--- ext/openssl/ossl_ssl.c.orig Thu Jan 30 16:51:02 2014
+++ ext/openssl/ossl_ssl.c Thu Aug 27 17:18:21 2015
@@ -129,9 +129,12 @@ struct {
OSSL_SSL_METHOD_ENTRY(SSLv2_server),
OSSL_SSL_METHOD_ENTRY(SSLv2_client),
#endif
+#if defined(HAVE_SSLV3_METHOD) && defined(HAVE_SSLV3_SERVER_METHOD) && \
+ defined(HAVE_SSLV3_CLIENT_METHOD)
OSSL_SSL_METHOD_ENTRY(SSLv3),
OSSL_SSL_METHOD_ENTRY(SSLv3_server),
OSSL_SSL_METHOD_ENTRY(SSLv3_client),
+#endif
OSSL_SSL_METHOD_ENTRY(SSLv23),
OSSL_SSL_METHOD_ENTRY(SSLv23_server),
OSSL_SSL_METHOD_ENTRY(SSLv23_client),

View File

@ -1,25 +0,0 @@
$OpenBSD: patch-ext_tk_extconf_rb,v 1.1 2014/03/13 16:53:43 jeremy Exp $
Fix bug in tcl/tk library name detection when --with-tcllib
and --with-tklib are used.
--- ext/tk/extconf.rb.orig Thu Dec 26 20:16:59 2013
+++ ext/tk/extconf.rb Thu Dec 26 20:17:07 2013
@@ -1137,7 +1137,7 @@ def find_tcl(tcllib, stubs, version, *opt_paths)
if tcllib
print(".")
if have_library(tcllib, func, ["tcl.h"])
- return [true, path, lib_w_sufx, nil, *inc]
+ return [true, path, tcllib, nil, *inc]
end
else
sufx_list = ['', 't', 'g', 's', 'x']
@@ -1277,7 +1277,7 @@ def find_tk(tklib, stubs, version, *opt_paths)
if tklib
print(".")
if have_library(tklib, func, ["tcl.h", "tk.h"])
- return [true, path, lib_w_sufx, nil, *inc]
+ return [true, path, tklib, nil, *inc]
end
else
sufx_list = ['', 't', 'g', 's', 'x']

View File

@ -1,26 +0,0 @@
$OpenBSD: patch-lib_fileutils_rb,v 1.2 2013/05/17 20:11:43 jeremy Exp $
Make FileUtils.mkdir_p act more like mkdir(1) -p, by not attempting
to create directories that already exist. This fixes systrace
warnings when building ports.
--- lib/fileutils.rb.orig Thu Apr 11 10:00:49 2013
+++ lib/fileutils.rb Tue May 14 08:45:49 2013
@@ -203,7 +203,7 @@ module FileUtils
list.map {|path| path.chomp(?/) }.each do |path|
# optimize for the most common case
begin
- fu_mkdir path, options[:mode]
+ fu_mkdir path, options[:mode] unless File.directory?(path)
next
rescue SystemCallError
next if File.directory?(path)
@@ -216,7 +216,7 @@ module FileUtils
end
stack.reverse_each do |dir|
begin
- fu_mkdir dir, options[:mode]
+ fu_mkdir dir, options[:mode] unless File.directory?(dir)
rescue SystemCallError
raise unless File.directory?(dir)
end

View File

@ -1,17 +0,0 @@
$OpenBSD: patch-lib_rubygems_commands_install_command_rb,v 1.1.1.1 2013/03/19 23:38:23 jeremy Exp $
Make gem binaries on ruby 2.0 use a 20 suffix, so you can have both
other versions of the same gem installed at the same time
without conflicts.
--- lib/rubygems/commands/install_command.rb.orig Wed Nov 28 22:52:18 2012
+++ lib/rubygems/commands/install_command.rb Mon Dec 3 10:12:46 2012
@@ -22,7 +22,7 @@ class Gem::Commands::InstallCommand < Gem::Command
def initialize
defaults = Gem::DependencyInstaller::DEFAULT_OPTIONS.merge({
- :format_executable => false,
+ :format_executable => true,
:version => Gem::Requirement.default,
})

View File

@ -1,12 +0,0 @@
$OpenBSD: patch-lib_rubygems_dependency_installer_rb,v 1.1.1.1 2013/03/19 23:38:23 jeremy Exp $
--- lib/rubygems/dependency_installer.rb.orig Wed Nov 28 22:52:18 2012
+++ lib/rubygems/dependency_installer.rb Mon Dec 3 10:03:49 2012
@@ -28,7 +28,7 @@ class Gem::DependencyInstaller
:document => %w[ri],
:domain => :both, # HACK dup
:force => false,
- :format_executable => false, # HACK dup
+ :format_executable => true, # HACK dup
:ignore_dependencies => false,
:prerelease => false,
:security_policy => nil, # HACK NoSecurity requires OpenSSL. AlmostNo? Low?

View File

@ -1,16 +0,0 @@
$OpenBSD: patch-lib_rubygems_ext_builder_rb,v 1.3 2014/11/07 15:18:56 dcoppa Exp $
Use MAKE or make from ENV over rbconfig's make.
https://github.com/rubygems/rubygems/commit/f2bad74dda8d8e463a092905f29c943c962d5e68
--- lib/rubygems/ext/builder.rb.orig Fri Nov 7 12:39:45 2014
+++ lib/rubygems/ext/builder.rb Fri Nov 7 12:39:55 2014
@@ -18,7 +18,7 @@ class Gem::Ext::Builder
# try to find make program from Ruby configure arguments first
RbConfig::CONFIG['configure_args'] =~ /with-make-prog\=(\w+)/
- make_program = $1 || ENV['MAKE'] || ENV['make']
+ make_program = ENV['MAKE'] || ENV['make'] || $1
unless make_program then
make_program = (/mswin/ =~ RUBY_PLATFORM) ? 'nmake' : 'make'
end

View File

@ -1,21 +0,0 @@
$OpenBSD: patch-lib_rubygems_ext_ext_conf_builder_rb,v 1.2 2014/01/21 10:06:07 jasper Exp $
Ugly hack to make --user-install option work. Without this, when
a user uses gem install --user-install, it calls
/usr/bin/install -o root -g bin, which fails due to permission issues.
This removes the -o root -g bin, so it can succeed as a regular user.
--- lib/rubygems/ext/ext_conf_builder.rb.orig Thu Jul 25 17:42:22 2013
+++ lib/rubygems/ext/ext_conf_builder.rb Tue Jan 21 09:54:37 2014
@@ -24,6 +24,11 @@ class Gem::Ext::ExtConfBuilder < Gem::Ext::Builder
siteconf.puts "RbConfig::MAKEFILE_CONFIG['#{dir}'] = dest_path"
siteconf.puts "RbConfig::CONFIG['#{dir}'] = dest_path"
end
+ unless Process.euid == 0
+ %w[INSTALL INSTALL_DATA INSTALL_SCRIPT INSTALL_PROGRAM].each do |ins|
+ siteconf.puts "RbConfig::MAKEFILE_CONFIG['#{ins}'] = RbConfig::CONFIG['#{ins}'] = RbConfig::CONFIG['#{ins}'].gsub(/-o root -g bin/, '')"
+ end
+ end
siteconf.flush

View File

@ -1,2 +0,0 @@
This is a Ruby extension to the GDBM library which is part of the Ruby
distribution.

View File

@ -1,17 +0,0 @@
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.)

View File

@ -1,2 +0,0 @@
This contains the files used by ruby's ri tool to get documentation
about classes and methods in ruby core and standard library.

View File

@ -1,2 +0,0 @@
This is Ruby/Tk, a Ruby interface to the Tk widget set.
It's a part of the official Ruby distribution.

View File

@ -1,10 +0,0 @@
If you want to use this package as your default system ruby, as root
create symbolic links like so (overwriting any previous default):
ln -sf ${PREFIX}/bin/ruby20 ${PREFIX}/bin/ruby
ln -sf ${PREFIX}/bin/erb20 ${PREFIX}/bin/erb
ln -sf ${PREFIX}/bin/irb20 ${PREFIX}/bin/irb
ln -sf ${PREFIX}/bin/rdoc20 ${PREFIX}/bin/rdoc
ln -sf ${PREFIX}/bin/ri20 ${PREFIX}/bin/ri
ln -sf ${PREFIX}/bin/rake20 ${PREFIX}/bin/rake
ln -sf ${PREFIX}/bin/gem20 ${PREFIX}/bin/gem
ln -sf ${PREFIX}/bin/testrb20 ${PREFIX}/bin/testrb

View File

@ -1,2 +0,0 @@
@comment $OpenBSD: PLIST-gdbm,v 1.1.1.1 2013/03/19 23:38:23 jeremy Exp $
lib/ruby/${RUBYLIBREV}/${SUB}/gdbm.so

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -1,360 +0,0 @@
@comment $OpenBSD: PLIST-tk,v 1.1.1.1 2013/03/19 23:38:30 jeremy Exp $
lib/ruby/${RUBYLIBREV}/multi-tk.rb
lib/ruby/${RUBYLIBREV}/remote-tk.rb
lib/ruby/${RUBYLIBREV}/tcltk.rb
lib/ruby/${RUBYLIBREV}/tk/
lib/ruby/${RUBYLIBREV}/tk.rb
lib/ruby/${RUBYLIBREV}/tk/after.rb
lib/ruby/${RUBYLIBREV}/tk/autoload.rb
lib/ruby/${RUBYLIBREV}/tk/bgerror.rb
lib/ruby/${RUBYLIBREV}/tk/bindtag.rb
lib/ruby/${RUBYLIBREV}/tk/busy.rb
lib/ruby/${RUBYLIBREV}/tk/button.rb
lib/ruby/${RUBYLIBREV}/tk/canvas.rb
lib/ruby/${RUBYLIBREV}/tk/canvastag.rb
lib/ruby/${RUBYLIBREV}/tk/checkbutton.rb
lib/ruby/${RUBYLIBREV}/tk/clipboard.rb
lib/ruby/${RUBYLIBREV}/tk/clock.rb
lib/ruby/${RUBYLIBREV}/tk/composite.rb
lib/ruby/${RUBYLIBREV}/tk/console.rb
lib/ruby/${RUBYLIBREV}/tk/dialog.rb
lib/ruby/${RUBYLIBREV}/tk/encodedstr.rb
lib/ruby/${RUBYLIBREV}/tk/entry.rb
lib/ruby/${RUBYLIBREV}/tk/event.rb
lib/ruby/${RUBYLIBREV}/tk/font.rb
lib/ruby/${RUBYLIBREV}/tk/fontchooser.rb
lib/ruby/${RUBYLIBREV}/tk/frame.rb
lib/ruby/${RUBYLIBREV}/tk/grid.rb
lib/ruby/${RUBYLIBREV}/tk/image.rb
lib/ruby/${RUBYLIBREV}/tk/itemconfig.rb
lib/ruby/${RUBYLIBREV}/tk/itemfont.rb
lib/ruby/${RUBYLIBREV}/tk/kinput.rb
lib/ruby/${RUBYLIBREV}/tk/label.rb
lib/ruby/${RUBYLIBREV}/tk/labelframe.rb
lib/ruby/${RUBYLIBREV}/tk/listbox.rb
lib/ruby/${RUBYLIBREV}/tk/macpkg.rb
lib/ruby/${RUBYLIBREV}/tk/menu.rb
lib/ruby/${RUBYLIBREV}/tk/menubar.rb
lib/ruby/${RUBYLIBREV}/tk/menuspec.rb
lib/ruby/${RUBYLIBREV}/tk/message.rb
lib/ruby/${RUBYLIBREV}/tk/mngfocus.rb
lib/ruby/${RUBYLIBREV}/tk/msgcat.rb
lib/ruby/${RUBYLIBREV}/tk/namespace.rb
lib/ruby/${RUBYLIBREV}/tk/optiondb.rb
lib/ruby/${RUBYLIBREV}/tk/optionobj.rb
lib/ruby/${RUBYLIBREV}/tk/pack.rb
lib/ruby/${RUBYLIBREV}/tk/package.rb
lib/ruby/${RUBYLIBREV}/tk/palette.rb
lib/ruby/${RUBYLIBREV}/tk/panedwindow.rb
lib/ruby/${RUBYLIBREV}/tk/place.rb
lib/ruby/${RUBYLIBREV}/tk/radiobutton.rb
lib/ruby/${RUBYLIBREV}/tk/root.rb
lib/ruby/${RUBYLIBREV}/tk/scale.rb
lib/ruby/${RUBYLIBREV}/tk/scrollable.rb
lib/ruby/${RUBYLIBREV}/tk/scrollbar.rb
lib/ruby/${RUBYLIBREV}/tk/scrollbox.rb
lib/ruby/${RUBYLIBREV}/tk/selection.rb
lib/ruby/${RUBYLIBREV}/tk/spinbox.rb
lib/ruby/${RUBYLIBREV}/tk/tagfont.rb
lib/ruby/${RUBYLIBREV}/tk/text.rb
lib/ruby/${RUBYLIBREV}/tk/textimage.rb
lib/ruby/${RUBYLIBREV}/tk/textmark.rb
lib/ruby/${RUBYLIBREV}/tk/texttag.rb
lib/ruby/${RUBYLIBREV}/tk/textwindow.rb
lib/ruby/${RUBYLIBREV}/tk/timer.rb
lib/ruby/${RUBYLIBREV}/tk/toplevel.rb
lib/ruby/${RUBYLIBREV}/tk/ttk_selector.rb
lib/ruby/${RUBYLIBREV}/tk/txtwin_abst.rb
lib/ruby/${RUBYLIBREV}/tk/validation.rb
lib/ruby/${RUBYLIBREV}/tk/variable.rb
lib/ruby/${RUBYLIBREV}/tk/virtevent.rb
lib/ruby/${RUBYLIBREV}/tk/winfo.rb
lib/ruby/${RUBYLIBREV}/tk/winpkg.rb
lib/ruby/${RUBYLIBREV}/tk/wm.rb
lib/ruby/${RUBYLIBREV}/tk/xim.rb
lib/ruby/${RUBYLIBREV}/tkafter.rb
lib/ruby/${RUBYLIBREV}/tkbgerror.rb
lib/ruby/${RUBYLIBREV}/tkcanvas.rb
lib/ruby/${RUBYLIBREV}/tkclass.rb
lib/ruby/${RUBYLIBREV}/tkconsole.rb
lib/ruby/${RUBYLIBREV}/tkdialog.rb
lib/ruby/${RUBYLIBREV}/tkentry.rb
lib/ruby/${RUBYLIBREV}/tkextlib/
lib/ruby/${RUBYLIBREV}/tkextlib/ICONS/
lib/ruby/${RUBYLIBREV}/tkextlib/ICONS.rb
lib/ruby/${RUBYLIBREV}/tkextlib/ICONS/icons.rb
lib/ruby/${RUBYLIBREV}/tkextlib/ICONS/setup.rb
lib/ruby/${RUBYLIBREV}/tkextlib/SUPPORT_STATUS
lib/ruby/${RUBYLIBREV}/tkextlib/blt/
lib/ruby/${RUBYLIBREV}/tkextlib/blt.rb
lib/ruby/${RUBYLIBREV}/tkextlib/blt/barchart.rb
lib/ruby/${RUBYLIBREV}/tkextlib/blt/bitmap.rb
lib/ruby/${RUBYLIBREV}/tkextlib/blt/busy.rb
lib/ruby/${RUBYLIBREV}/tkextlib/blt/component.rb
lib/ruby/${RUBYLIBREV}/tkextlib/blt/container.rb
lib/ruby/${RUBYLIBREV}/tkextlib/blt/cutbuffer.rb
lib/ruby/${RUBYLIBREV}/tkextlib/blt/dragdrop.rb
lib/ruby/${RUBYLIBREV}/tkextlib/blt/eps.rb
lib/ruby/${RUBYLIBREV}/tkextlib/blt/graph.rb
lib/ruby/${RUBYLIBREV}/tkextlib/blt/htext.rb
lib/ruby/${RUBYLIBREV}/tkextlib/blt/setup.rb
lib/ruby/${RUBYLIBREV}/tkextlib/blt/spline.rb
lib/ruby/${RUBYLIBREV}/tkextlib/blt/stripchart.rb
lib/ruby/${RUBYLIBREV}/tkextlib/blt/table.rb
lib/ruby/${RUBYLIBREV}/tkextlib/blt/tabnotebook.rb
lib/ruby/${RUBYLIBREV}/tkextlib/blt/tabset.rb
lib/ruby/${RUBYLIBREV}/tkextlib/blt/ted.rb
lib/ruby/${RUBYLIBREV}/tkextlib/blt/tile/
lib/ruby/${RUBYLIBREV}/tkextlib/blt/tile.rb
lib/ruby/${RUBYLIBREV}/tkextlib/blt/tile/button.rb
lib/ruby/${RUBYLIBREV}/tkextlib/blt/tile/checkbutton.rb
lib/ruby/${RUBYLIBREV}/tkextlib/blt/tile/frame.rb
lib/ruby/${RUBYLIBREV}/tkextlib/blt/tile/label.rb
lib/ruby/${RUBYLIBREV}/tkextlib/blt/tile/radiobutton.rb
lib/ruby/${RUBYLIBREV}/tkextlib/blt/tile/scrollbar.rb
lib/ruby/${RUBYLIBREV}/tkextlib/blt/tile/toplevel.rb
lib/ruby/${RUBYLIBREV}/tkextlib/blt/tree.rb
lib/ruby/${RUBYLIBREV}/tkextlib/blt/treeview.rb
lib/ruby/${RUBYLIBREV}/tkextlib/blt/unix_dnd.rb
lib/ruby/${RUBYLIBREV}/tkextlib/blt/vector.rb
lib/ruby/${RUBYLIBREV}/tkextlib/blt/watch.rb
lib/ruby/${RUBYLIBREV}/tkextlib/blt/win_printer.rb
lib/ruby/${RUBYLIBREV}/tkextlib/blt/winop.rb
lib/ruby/${RUBYLIBREV}/tkextlib/bwidget/
lib/ruby/${RUBYLIBREV}/tkextlib/bwidget.rb
lib/ruby/${RUBYLIBREV}/tkextlib/bwidget/arrowbutton.rb
lib/ruby/${RUBYLIBREV}/tkextlib/bwidget/bitmap.rb
lib/ruby/${RUBYLIBREV}/tkextlib/bwidget/button.rb
lib/ruby/${RUBYLIBREV}/tkextlib/bwidget/buttonbox.rb
lib/ruby/${RUBYLIBREV}/tkextlib/bwidget/combobox.rb
lib/ruby/${RUBYLIBREV}/tkextlib/bwidget/dialog.rb
lib/ruby/${RUBYLIBREV}/tkextlib/bwidget/dragsite.rb
lib/ruby/${RUBYLIBREV}/tkextlib/bwidget/dropsite.rb
lib/ruby/${RUBYLIBREV}/tkextlib/bwidget/dynamichelp.rb
lib/ruby/${RUBYLIBREV}/tkextlib/bwidget/entry.rb
lib/ruby/${RUBYLIBREV}/tkextlib/bwidget/label.rb
lib/ruby/${RUBYLIBREV}/tkextlib/bwidget/labelentry.rb
lib/ruby/${RUBYLIBREV}/tkextlib/bwidget/labelframe.rb
lib/ruby/${RUBYLIBREV}/tkextlib/bwidget/listbox.rb
lib/ruby/${RUBYLIBREV}/tkextlib/bwidget/mainframe.rb
lib/ruby/${RUBYLIBREV}/tkextlib/bwidget/messagedlg.rb
lib/ruby/${RUBYLIBREV}/tkextlib/bwidget/notebook.rb
lib/ruby/${RUBYLIBREV}/tkextlib/bwidget/pagesmanager.rb
lib/ruby/${RUBYLIBREV}/tkextlib/bwidget/panedwindow.rb
lib/ruby/${RUBYLIBREV}/tkextlib/bwidget/panelframe.rb
lib/ruby/${RUBYLIBREV}/tkextlib/bwidget/passwddlg.rb
lib/ruby/${RUBYLIBREV}/tkextlib/bwidget/progressbar.rb
lib/ruby/${RUBYLIBREV}/tkextlib/bwidget/progressdlg.rb
lib/ruby/${RUBYLIBREV}/tkextlib/bwidget/scrollableframe.rb
lib/ruby/${RUBYLIBREV}/tkextlib/bwidget/scrolledwindow.rb
lib/ruby/${RUBYLIBREV}/tkextlib/bwidget/scrollview.rb
lib/ruby/${RUBYLIBREV}/tkextlib/bwidget/selectcolor.rb
lib/ruby/${RUBYLIBREV}/tkextlib/bwidget/selectfont.rb
lib/ruby/${RUBYLIBREV}/tkextlib/bwidget/separator.rb
lib/ruby/${RUBYLIBREV}/tkextlib/bwidget/setup.rb
lib/ruby/${RUBYLIBREV}/tkextlib/bwidget/spinbox.rb
lib/ruby/${RUBYLIBREV}/tkextlib/bwidget/statusbar.rb
lib/ruby/${RUBYLIBREV}/tkextlib/bwidget/titleframe.rb
lib/ruby/${RUBYLIBREV}/tkextlib/bwidget/tree.rb
lib/ruby/${RUBYLIBREV}/tkextlib/bwidget/widget.rb
lib/ruby/${RUBYLIBREV}/tkextlib/itcl/
lib/ruby/${RUBYLIBREV}/tkextlib/itcl.rb
lib/ruby/${RUBYLIBREV}/tkextlib/itcl/incr_tcl.rb
lib/ruby/${RUBYLIBREV}/tkextlib/itcl/setup.rb
lib/ruby/${RUBYLIBREV}/tkextlib/itk/
lib/ruby/${RUBYLIBREV}/tkextlib/itk.rb
lib/ruby/${RUBYLIBREV}/tkextlib/itk/incr_tk.rb
lib/ruby/${RUBYLIBREV}/tkextlib/itk/setup.rb
lib/ruby/${RUBYLIBREV}/tkextlib/iwidgets/
lib/ruby/${RUBYLIBREV}/tkextlib/iwidgets.rb
lib/ruby/${RUBYLIBREV}/tkextlib/iwidgets/buttonbox.rb
lib/ruby/${RUBYLIBREV}/tkextlib/iwidgets/calendar.rb
lib/ruby/${RUBYLIBREV}/tkextlib/iwidgets/canvasprintbox.rb
lib/ruby/${RUBYLIBREV}/tkextlib/iwidgets/canvasprintdialog.rb
lib/ruby/${RUBYLIBREV}/tkextlib/iwidgets/checkbox.rb
lib/ruby/${RUBYLIBREV}/tkextlib/iwidgets/combobox.rb
lib/ruby/${RUBYLIBREV}/tkextlib/iwidgets/dateentry.rb
lib/ruby/${RUBYLIBREV}/tkextlib/iwidgets/datefield.rb
lib/ruby/${RUBYLIBREV}/tkextlib/iwidgets/dialog.rb
lib/ruby/${RUBYLIBREV}/tkextlib/iwidgets/dialogshell.rb
lib/ruby/${RUBYLIBREV}/tkextlib/iwidgets/disjointlistbox.rb
lib/ruby/${RUBYLIBREV}/tkextlib/iwidgets/entryfield.rb
lib/ruby/${RUBYLIBREV}/tkextlib/iwidgets/extbutton.rb
lib/ruby/${RUBYLIBREV}/tkextlib/iwidgets/extfileselectionbox.rb
lib/ruby/${RUBYLIBREV}/tkextlib/iwidgets/extfileselectiondialog.rb
lib/ruby/${RUBYLIBREV}/tkextlib/iwidgets/feedback.rb
lib/ruby/${RUBYLIBREV}/tkextlib/iwidgets/fileselectionbox.rb
lib/ruby/${RUBYLIBREV}/tkextlib/iwidgets/fileselectiondialog.rb
lib/ruby/${RUBYLIBREV}/tkextlib/iwidgets/finddialog.rb
lib/ruby/${RUBYLIBREV}/tkextlib/iwidgets/hierarchy.rb
lib/ruby/${RUBYLIBREV}/tkextlib/iwidgets/hyperhelp.rb
lib/ruby/${RUBYLIBREV}/tkextlib/iwidgets/labeledframe.rb
lib/ruby/${RUBYLIBREV}/tkextlib/iwidgets/labeledwidget.rb
lib/ruby/${RUBYLIBREV}/tkextlib/iwidgets/mainwindow.rb
lib/ruby/${RUBYLIBREV}/tkextlib/iwidgets/menubar.rb
lib/ruby/${RUBYLIBREV}/tkextlib/iwidgets/messagebox.rb
lib/ruby/${RUBYLIBREV}/tkextlib/iwidgets/messagedialog.rb
lib/ruby/${RUBYLIBREV}/tkextlib/iwidgets/notebook.rb
lib/ruby/${RUBYLIBREV}/tkextlib/iwidgets/optionmenu.rb
lib/ruby/${RUBYLIBREV}/tkextlib/iwidgets/panedwindow.rb
lib/ruby/${RUBYLIBREV}/tkextlib/iwidgets/promptdialog.rb
lib/ruby/${RUBYLIBREV}/tkextlib/iwidgets/pushbutton.rb
lib/ruby/${RUBYLIBREV}/tkextlib/iwidgets/radiobox.rb
lib/ruby/${RUBYLIBREV}/tkextlib/iwidgets/scopedobject.rb
lib/ruby/${RUBYLIBREV}/tkextlib/iwidgets/scrolledcanvas.rb
lib/ruby/${RUBYLIBREV}/tkextlib/iwidgets/scrolledframe.rb
lib/ruby/${RUBYLIBREV}/tkextlib/iwidgets/scrolledhtml.rb
lib/ruby/${RUBYLIBREV}/tkextlib/iwidgets/scrolledlistbox.rb
lib/ruby/${RUBYLIBREV}/tkextlib/iwidgets/scrolledtext.rb
lib/ruby/${RUBYLIBREV}/tkextlib/iwidgets/scrolledwidget.rb
lib/ruby/${RUBYLIBREV}/tkextlib/iwidgets/selectionbox.rb
lib/ruby/${RUBYLIBREV}/tkextlib/iwidgets/selectiondialog.rb
lib/ruby/${RUBYLIBREV}/tkextlib/iwidgets/setup.rb
lib/ruby/${RUBYLIBREV}/tkextlib/iwidgets/shell.rb
lib/ruby/${RUBYLIBREV}/tkextlib/iwidgets/spindate.rb
lib/ruby/${RUBYLIBREV}/tkextlib/iwidgets/spinint.rb
lib/ruby/${RUBYLIBREV}/tkextlib/iwidgets/spinner.rb
lib/ruby/${RUBYLIBREV}/tkextlib/iwidgets/spintime.rb
lib/ruby/${RUBYLIBREV}/tkextlib/iwidgets/tabnotebook.rb
lib/ruby/${RUBYLIBREV}/tkextlib/iwidgets/tabset.rb
lib/ruby/${RUBYLIBREV}/tkextlib/iwidgets/timeentry.rb
lib/ruby/${RUBYLIBREV}/tkextlib/iwidgets/timefield.rb
lib/ruby/${RUBYLIBREV}/tkextlib/iwidgets/toolbar.rb
lib/ruby/${RUBYLIBREV}/tkextlib/iwidgets/watch.rb
lib/ruby/${RUBYLIBREV}/tkextlib/pkg_checker.rb
lib/ruby/${RUBYLIBREV}/tkextlib/setup.rb
lib/ruby/${RUBYLIBREV}/tkextlib/tcllib/
lib/ruby/${RUBYLIBREV}/tkextlib/tcllib.rb
lib/ruby/${RUBYLIBREV}/tkextlib/tcllib/autoscroll.rb
lib/ruby/${RUBYLIBREV}/tkextlib/tcllib/calendar.rb
lib/ruby/${RUBYLIBREV}/tkextlib/tcllib/canvas_sqmap.rb
lib/ruby/${RUBYLIBREV}/tkextlib/tcllib/canvas_zoom.rb
lib/ruby/${RUBYLIBREV}/tkextlib/tcllib/chatwidget.rb
lib/ruby/${RUBYLIBREV}/tkextlib/tcllib/crosshair.rb
lib/ruby/${RUBYLIBREV}/tkextlib/tcllib/ctext.rb
lib/ruby/${RUBYLIBREV}/tkextlib/tcllib/cursor.rb
lib/ruby/${RUBYLIBREV}/tkextlib/tcllib/dateentry.rb
lib/ruby/${RUBYLIBREV}/tkextlib/tcllib/datefield.rb
lib/ruby/${RUBYLIBREV}/tkextlib/tcllib/diagrams.rb
lib/ruby/${RUBYLIBREV}/tkextlib/tcllib/dialog.rb
lib/ruby/${RUBYLIBREV}/tkextlib/tcllib/getstring.rb
lib/ruby/${RUBYLIBREV}/tkextlib/tcllib/history.rb
lib/ruby/${RUBYLIBREV}/tkextlib/tcllib/ico.rb
lib/ruby/${RUBYLIBREV}/tkextlib/tcllib/ip_entry.rb
lib/ruby/${RUBYLIBREV}/tkextlib/tcllib/khim.rb
lib/ruby/${RUBYLIBREV}/tkextlib/tcllib/menuentry.rb
lib/ruby/${RUBYLIBREV}/tkextlib/tcllib/ntext.rb
lib/ruby/${RUBYLIBREV}/tkextlib/tcllib/panelframe.rb
lib/ruby/${RUBYLIBREV}/tkextlib/tcllib/plotchart.rb
lib/ruby/${RUBYLIBREV}/tkextlib/tcllib/ruler.rb
lib/ruby/${RUBYLIBREV}/tkextlib/tcllib/screenruler.rb
lib/ruby/${RUBYLIBREV}/tkextlib/tcllib/scrolledwindow.rb
lib/ruby/${RUBYLIBREV}/tkextlib/tcllib/scrollwin.rb
lib/ruby/${RUBYLIBREV}/tkextlib/tcllib/setup.rb
lib/ruby/${RUBYLIBREV}/tkextlib/tcllib/statusbar.rb
lib/ruby/${RUBYLIBREV}/tkextlib/tcllib/style.rb
lib/ruby/${RUBYLIBREV}/tkextlib/tcllib/superframe.rb
lib/ruby/${RUBYLIBREV}/tkextlib/tcllib/swaplist.rb
lib/ruby/${RUBYLIBREV}/tkextlib/tcllib/tablelist.rb
lib/ruby/${RUBYLIBREV}/tkextlib/tcllib/tablelist_core.rb
lib/ruby/${RUBYLIBREV}/tkextlib/tcllib/tablelist_tile.rb
lib/ruby/${RUBYLIBREV}/tkextlib/tcllib/tkpiechart.rb
lib/ruby/${RUBYLIBREV}/tkextlib/tcllib/toolbar.rb
lib/ruby/${RUBYLIBREV}/tkextlib/tcllib/tooltip.rb
lib/ruby/${RUBYLIBREV}/tkextlib/tcllib/widget.rb
lib/ruby/${RUBYLIBREV}/tkextlib/tclx/
lib/ruby/${RUBYLIBREV}/tkextlib/tclx.rb
lib/ruby/${RUBYLIBREV}/tkextlib/tclx/setup.rb
lib/ruby/${RUBYLIBREV}/tkextlib/tclx/tclx.rb
lib/ruby/${RUBYLIBREV}/tkextlib/tile/
lib/ruby/${RUBYLIBREV}/tkextlib/tile.rb
lib/ruby/${RUBYLIBREV}/tkextlib/tile/dialog.rb
lib/ruby/${RUBYLIBREV}/tkextlib/tile/setup.rb
lib/ruby/${RUBYLIBREV}/tkextlib/tile/sizegrip.rb
lib/ruby/${RUBYLIBREV}/tkextlib/tile/style.rb
lib/ruby/${RUBYLIBREV}/tkextlib/tile/tbutton.rb
lib/ruby/${RUBYLIBREV}/tkextlib/tile/tcheckbutton.rb
lib/ruby/${RUBYLIBREV}/tkextlib/tile/tcombobox.rb
lib/ruby/${RUBYLIBREV}/tkextlib/tile/tentry.rb
lib/ruby/${RUBYLIBREV}/tkextlib/tile/tframe.rb
lib/ruby/${RUBYLIBREV}/tkextlib/tile/tlabel.rb
lib/ruby/${RUBYLIBREV}/tkextlib/tile/tlabelframe.rb
lib/ruby/${RUBYLIBREV}/tkextlib/tile/tmenubutton.rb
lib/ruby/${RUBYLIBREV}/tkextlib/tile/tnotebook.rb
lib/ruby/${RUBYLIBREV}/tkextlib/tile/tpaned.rb
lib/ruby/${RUBYLIBREV}/tkextlib/tile/tprogressbar.rb
lib/ruby/${RUBYLIBREV}/tkextlib/tile/tradiobutton.rb
lib/ruby/${RUBYLIBREV}/tkextlib/tile/treeview.rb
lib/ruby/${RUBYLIBREV}/tkextlib/tile/tscale.rb
lib/ruby/${RUBYLIBREV}/tkextlib/tile/tscrollbar.rb
lib/ruby/${RUBYLIBREV}/tkextlib/tile/tseparator.rb
lib/ruby/${RUBYLIBREV}/tkextlib/tile/tspinbox.rb
lib/ruby/${RUBYLIBREV}/tkextlib/tile/tsquare.rb
lib/ruby/${RUBYLIBREV}/tkextlib/tkDND/
lib/ruby/${RUBYLIBREV}/tkextlib/tkDND.rb
lib/ruby/${RUBYLIBREV}/tkextlib/tkDND/setup.rb
lib/ruby/${RUBYLIBREV}/tkextlib/tkDND/shape.rb
lib/ruby/${RUBYLIBREV}/tkextlib/tkDND/tkdnd.rb
lib/ruby/${RUBYLIBREV}/tkextlib/tkHTML/
lib/ruby/${RUBYLIBREV}/tkextlib/tkHTML.rb
lib/ruby/${RUBYLIBREV}/tkextlib/tkHTML/htmlwidget.rb
lib/ruby/${RUBYLIBREV}/tkextlib/tkHTML/setup.rb
lib/ruby/${RUBYLIBREV}/tkextlib/tkimg/
lib/ruby/${RUBYLIBREV}/tkextlib/tkimg.rb
lib/ruby/${RUBYLIBREV}/tkextlib/tkimg/bmp.rb
lib/ruby/${RUBYLIBREV}/tkextlib/tkimg/gif.rb
lib/ruby/${RUBYLIBREV}/tkextlib/tkimg/ico.rb
lib/ruby/${RUBYLIBREV}/tkextlib/tkimg/jpeg.rb
lib/ruby/${RUBYLIBREV}/tkextlib/tkimg/pcx.rb
lib/ruby/${RUBYLIBREV}/tkextlib/tkimg/pixmap.rb
lib/ruby/${RUBYLIBREV}/tkextlib/tkimg/png.rb
lib/ruby/${RUBYLIBREV}/tkextlib/tkimg/ppm.rb
lib/ruby/${RUBYLIBREV}/tkextlib/tkimg/ps.rb
lib/ruby/${RUBYLIBREV}/tkextlib/tkimg/setup.rb
lib/ruby/${RUBYLIBREV}/tkextlib/tkimg/sgi.rb
lib/ruby/${RUBYLIBREV}/tkextlib/tkimg/sun.rb
lib/ruby/${RUBYLIBREV}/tkextlib/tkimg/tga.rb
lib/ruby/${RUBYLIBREV}/tkextlib/tkimg/tiff.rb
lib/ruby/${RUBYLIBREV}/tkextlib/tkimg/window.rb
lib/ruby/${RUBYLIBREV}/tkextlib/tkimg/xbm.rb
lib/ruby/${RUBYLIBREV}/tkextlib/tkimg/xpm.rb
lib/ruby/${RUBYLIBREV}/tkextlib/tktable/
lib/ruby/${RUBYLIBREV}/tkextlib/tktable.rb
lib/ruby/${RUBYLIBREV}/tkextlib/tktable/setup.rb
lib/ruby/${RUBYLIBREV}/tkextlib/tktable/tktable.rb
lib/ruby/${RUBYLIBREV}/tkextlib/tktrans/
lib/ruby/${RUBYLIBREV}/tkextlib/tktrans.rb
lib/ruby/${RUBYLIBREV}/tkextlib/tktrans/setup.rb
lib/ruby/${RUBYLIBREV}/tkextlib/tktrans/tktrans.rb
lib/ruby/${RUBYLIBREV}/tkextlib/treectrl/
lib/ruby/${RUBYLIBREV}/tkextlib/treectrl.rb
lib/ruby/${RUBYLIBREV}/tkextlib/treectrl/setup.rb
lib/ruby/${RUBYLIBREV}/tkextlib/treectrl/tktreectrl.rb
lib/ruby/${RUBYLIBREV}/tkextlib/trofs/
lib/ruby/${RUBYLIBREV}/tkextlib/trofs.rb
lib/ruby/${RUBYLIBREV}/tkextlib/trofs/setup.rb
lib/ruby/${RUBYLIBREV}/tkextlib/trofs/trofs.rb
lib/ruby/${RUBYLIBREV}/tkextlib/version.rb
lib/ruby/${RUBYLIBREV}/tkextlib/vu/
lib/ruby/${RUBYLIBREV}/tkextlib/vu.rb
lib/ruby/${RUBYLIBREV}/tkextlib/vu/bargraph.rb
lib/ruby/${RUBYLIBREV}/tkextlib/vu/charts.rb
lib/ruby/${RUBYLIBREV}/tkextlib/vu/dial.rb
lib/ruby/${RUBYLIBREV}/tkextlib/vu/pie.rb
lib/ruby/${RUBYLIBREV}/tkextlib/vu/setup.rb
lib/ruby/${RUBYLIBREV}/tkextlib/vu/spinbox.rb
lib/ruby/${RUBYLIBREV}/tkextlib/winico/
lib/ruby/${RUBYLIBREV}/tkextlib/winico.rb
lib/ruby/${RUBYLIBREV}/tkextlib/winico/setup.rb
lib/ruby/${RUBYLIBREV}/tkextlib/winico/winico.rb
lib/ruby/${RUBYLIBREV}/tkfont.rb
lib/ruby/${RUBYLIBREV}/tkmacpkg.rb
lib/ruby/${RUBYLIBREV}/tkmenubar.rb
lib/ruby/${RUBYLIBREV}/tkmngfocus.rb
lib/ruby/${RUBYLIBREV}/tkpalette.rb
lib/ruby/${RUBYLIBREV}/tkscrollbox.rb
lib/ruby/${RUBYLIBREV}/tktext.rb
lib/ruby/${RUBYLIBREV}/tkvirtevent.rb
lib/ruby/${RUBYLIBREV}/tkwinpkg.rb
lib/ruby/${RUBYLIBREV}/${SUB}/tcltklib.so
lib/ruby/${RUBYLIBREV}/${SUB}/tkutil.so

View File

@ -1,11 +0,0 @@
If you set up the symlinks to make ruby 2.0 the system
ruby, don't forget to remove the following files:
rm ${PREFIX}/bin/ruby
rm ${PREFIX}/bin/erb
rm ${PREFIX}/bin/irb
rm ${PREFIX}/bin/rdoc
rm ${PREFIX}/bin/ri
rm ${PREFIX}/bin/gem
rm ${PREFIX}/bin/rake
rm ${PREFIX}/bin/testrb