17672127 Need CPAN perl-tk module for cssh dependency s11-update
authorNorm Jacobs <Norm.Jacobs@Oracle.COM>
Tue, 11 Feb 2014 21:34:55 -0800
branchs11-update
changeset 2949 40a8bd356d76
parent 2948 6d5c2f9c7529
child 2951 83313d4990a4
17672127 Need CPAN perl-tk module for cssh dependency 18198698 Remove myConfig.patch and tk-GENFRAG.p5m from perl-tk
components/perl_modules/perl-tk/Makefile
components/perl_modules/perl-tk/patches/001-system-jpeg.patch
components/perl_modules/perl-tk/patches/002-system-png.patch
components/perl_modules/perl-tk/resolve.deps
components/perl_modules/perl-tk/tk-PERLVER.p5m
components/perl_modules/perl-tk/tk.license
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/components/perl_modules/perl-tk/Makefile	Tue Feb 11 21:34:55 2014 -0800
@@ -0,0 +1,57 @@
+#
+# CDDL HEADER START
+#
+# The contents of this file are subject to the terms of the
+# Common Development and Distribution License (the "License").
+# You may not use this file except in compliance with the License.
+#
+# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
+# or http://www.opensolaris.org/os/licensing.
+# See the License for the specific language governing permissions
+# and limitations under the License.
+#
+# When distributing Covered Code, include this CDDL HEADER in each
+# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
+# If applicable, add the following below this CDDL HEADER, with the
+# fields enclosed by brackets "[]" replaced with your own identifying
+# information: Portions Copyright [yyyy] [name of copyright owner]
+#
+# CDDL HEADER END
+#
+# Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved.
+#
+include ../../../make-rules/shared-macros.mk
+
+COMPONENT_NAME=		Tk
+# pkg does not like leading zeros, removed zero after dot.
+COMPONENT_VERSION=	804.31
+HUMAN_VERSION=		804.031
+COMPONENT_SRC=		$(COMPONENT_NAME)-$(HUMAN_VERSION)
+COMPONENT_ARCHIVE=	$(COMPONENT_SRC).tar.gz
+COMPONENT_PROJECT_URL=	http://search.cpan.org/~srezic/Tk
+COMPONENT_ARCHIVE_HASH=	\
+    sha256:ce8d857a82a77f6bad3f94c1a8c3e3f32d5489bfb41619c3b8cae00103428054
+COMPONENT_ARCHIVE_URL=	http://search.cpan.org/CPAN/authors/id/S/SR/SREZIC/$(COMPONENT_ARCHIVE)
+COMPONENT_BUGDB=	perl-mod/tk
+
+include $(WS_TOP)/make-rules/prep.mk
+include $(WS_TOP)/make-rules/ips.mk
+include $(WS_TOP)/make-rules/makemaker.mk
+
+# override LIBS so that the Tk.so RunPATH doesn't get set.
+CONFIGURE_OPTIONS += LIBS="-lXft -lX11 -lfontconfig -lm -lc"
+
+# Disbale ASLR for this module.
+ASLR_MODE = $(ASLR_NOT_APPLICABLE)
+
+COMPONENT_TEST_TARGETS = test
+
+build:		$(BUILD_32)
+
+install:	$(INSTALL_32)
+
+test:		$(TEST_32)
+
+BUILD_PKG_DEPENDENCIES =	$(BUILD_TOOLS)
+
+include $(WS_TOP)/make-rules/depend.mk
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/components/perl_modules/perl-tk/patches/001-system-jpeg.patch	Tue Feb 11 21:34:55 2014 -0800
@@ -0,0 +1,65 @@
+In-House patch. 
+Making sure Perl-Tk does not build its own copy of libjpeg, instead links against libjpeg library already present in Solaris in /usr/lib.
+--- Tk-804.031/JPEG/Makefile.PL.orig	2014-01-03 22:04:39.788240812 -0800
++++ Tk-804.031/JPEG/Makefile.PL	2014-01-03 21:57:20.929546011 -0800
+@@ -1,27 +1,6 @@
+ # -*- cperl -*-
+ use Tk::MMutil;
+ use Tk::Config ();
+-use File::Copy;
+-my $l = $Config::Config{'lib_ext'};
+-
+-use Tk::MMtry;
+-
+-if ($Tk::MMtry::VERSION ge '4.007' && try_run("config/has_jpeg.c",['-I/usr/local/include'],['-ljpeg']))
+- {
+-  push(@args, LIBS => ['-ljpeg'],
+-              INC  => '-I/usr/local/include',
+-              DEFINE => '-DHAVE_JPEGLIB_H',
+-      );
+-  warn "Using system's -ljpeg\n";
+-  unlink("jpeg/Makefile.PL");
+- }
+-else
+- {
+-  push(@args, MYEXTLIB  => "jpeg/libjpeg$l",
+-              'INC'     => '-Ijpeg');
+-  copy("Makefile.jpeg.maybe","jpeg/Makefile.PL");
+-  warn "Building jpeg/libjpeg$l\n";
+- }
+ 
+ Tk::MMutil::TkExtMakefile(@args,
+     'NAME'         => 'Tk::JPEG',
+@@ -32,9 +11,9 @@
+     'OBJECT'       => '$(O_FILES)',
+     'VERSION_FROM' => 'JPEG.pm',
+     'XS_VERSION'   => $Tk::Config::VERSION,
+-    'dist'         => { COMPRESS => 'gzip -f9', SUFFIX => '.gz' },
+-    'clean'        => { FILES => 'jpeg/Makefile jpeg/Makefile.PL jpeg/config.status jpeg/jconfig.h' }
+-
++    'LIBS'         => ['-ljpeg'],
++    'DEFINE'       => '-DHAVE_JPEGLIB_H',
++    'dist'         => { COMPRESS => 'gzip -f9', SUFFIX => '.gz' }
+    );
+ 
+ sub MY::test_via_harness
+@@ -45,19 +24,3 @@
+ }
+ 
+ package MY;
+-
+-
+-sub postamble {
+-  if (-f "jpeg/Makefile.PL")
+-   {
+-    return
+-'
+-$(MYEXTLIB)  : FORCE
+-	cd jpeg && $(MAKE) libjpeg'.$l.'
+-';
+-
+-   }
+-}
+-
+-
+-
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/components/perl_modules/perl-tk/patches/002-system-png.patch	Tue Feb 11 21:34:55 2014 -0800
@@ -0,0 +1,173 @@
+In-House patch. 
+Making sure Perl-Tk does not build its own copy of libpng and libz, instead links against these libraries already present in Solaris in /usr/lib.
+
+--- Tk-804.031/PNG/Makefile.PL.orig	Tue Nov 12 22:36:34 2013
++++ Tk-804.031/PNG/Makefile.PL	Tue Nov 12 22:36:41 2013
+@@ -2,19 +2,7 @@
+ use strict;
+ use Tk::MMutil;
+ use Tk::Config ();
+-use Tk::MMtry;
+-use File::Copy;
+ 
+-my $l = $Config::Config{'lib_ext'};
+-my $cc = $Config::Config{'cc'};
+-my $zlib = "libz$l";
+-
+-foreach my $file (qw(zlib/Makefile.PL libpng/Makefile.PL))
+- {
+-  chmod(0666,$file) unless -w $file;
+-  unlink($file);
+- }
+-
+ my $libpng_cflags;
+ my $libpng_libs;
+ system('pkg-config --exists libpng');
+@@ -21,74 +9,17 @@
+ if ($? == 0) {
+     chomp($libpng_cflags = `pkg-config --cflags libpng`);
+     chomp($libpng_libs   = `pkg-config --libs libpng`);
+-} else {
+-    warn "'pkg-config libpng' failed, continue with fallback values for cflags and libs...\n";
+-    $libpng_cflags = '-I/usr/local/include';
+-    $libpng_libs   = '-lpng -lz -lm';
+ }
+ 
+-if ($Tk::MMtry::VERSION ge '4.007' &&
+-    try_run("config/has_png.c",[$libpng_cflags],[$libpng_libs]))
+- {
+-  Tk::MMutil::TkExtMakefile(
+-       NAME         => 'Tk::PNG',
+-       VERSION_FROM => 'PNG.pm',
+-       XS_VERSION   => $Tk::Config::VERSION,
+-       dist         => { COMPRESS => 'gzip -f9', SUFFIX => '.gz' },
+-       OBJECT       => '$(O_FILES)',
+-       INC          => $libpng_cflags,
+-       LIBS         => [$libpng_libs],
+-     );
+- }
+-else
+- {
+-  my $ok = 1;
+-  foreach my $file ("libpng/Makefile.PL","zlib/Makefile.PL")
+-   {
+-    next unless -f $file;
+-    chmod(0666,$file);
+-    unlink($file);
+-   }
+-  unless (copy("Makefile.libpng.maybe","libpng/Makefile.PL"))
+-   {
+-    warn "Cannot copy Makefile.libpng.maybe => libpng/Makefile.PL ($!)";
+-    $ok = 0;
+-   }
+-  unless (copy("Makefile.zlib.maybe","zlib/Makefile.PL"))
+-   {
+-    warn "Cannot copy Makefile.zlib.maybe => zlib/Makefile.PL ($!)";
+-    $ok = 0;
+-   }
+-  if ($ok)
+-   {
+-    warn "Building libpng$l\n";
+-    my $extlib = "libpng/libpng$l";
+-    if ($cc eq 'cl')
+-     {
+-      $extlib .= " zlib/zlib$l";
+-      $zlib   = "zlib$l";
+-     }
+-    else
+-     {
+-      $extlib .= " zlib/libz$l";
+-     }
+-    Tk::MMutil::TkExtMakefile(
+-           NAME         => 'Tk::PNG',
+-           VERSION_FROM => 'PNG.pm',
+-           XS_VERSION   => $Tk::Config::VERSION,
+-           dist         => { COMPRESS => 'gzip -f9', SUFFIX => '.gz' },
+-           OBJECT       => '$(O_FILES)',
+-           INC          => '-Ilibpng -Izlib',
+-           MYEXTLIB     => $extlib,
+-           LIBS         => ['-lm'],
+-         );
+-    }
+-   else
+-    {
+-     warn "Cannot build libpng$l\n";
+-     ExtUtils::MakeMaker::WriteEmptyMakefile();
+-    }
+- }
++Tk::MMutil::TkExtMakefile(
++     NAME         => 'Tk::PNG',
++     VERSION_FROM => 'PNG.pm',
++     XS_VERSION   => $Tk::Config::VERSION,
++     dist         => { COMPRESS => 'gzip -f9', SUFFIX => '.gz' },
++     OBJECT       => '$(O_FILES)',
++     INC          => $libpng_cflags,
++     LIBS         => [$libpng_libs],
++   );
+ 
+ sub MY::test_via_harness
+ {
+@@ -98,63 +29,3 @@
+ }
+ 
+ package MY;
+-
+-sub pasthru {
+-  if ($^O eq 'MSWin32' && $Config::Config{cc} =~ /gcc/)
+-   {
+-    # gcc usually has ranlib, also dmake does not understand "rem"
+-    # which is default setting for $Config::Config{ranlib} under
+-    # Windows, unless .USE_SHELL: is specified (see also special_targets
+-    # in ExtUtils::MM_Win32)
+-    qq[PASTHRU="CC=$Config::Config{cc} $Config::Config{cccdlflags}"];
+-   }
+-  else
+-   {
+-    qq[PASTHRU="CC=$Config::Config{cc} $Config::Config{cccdlflags}" RANLIB=\"$Config::Config{ranlib}\"];
+-   }
+-}
+-
+-sub postamble {
+-  my $s = '';
+-  if (-f "libpng/Makefile.PL")
+-   {
+-    $s .=
+-"
+-libpng/libpng$l : zlib/$zlib
+-	cd libpng && \$(MAKE) libpng".$l.' $(PASTHRU)
+-';
+-
+-   }
+-  if (-f "zlib/Makefile.PL")
+-   {
+-    $s .=
+-"
+-zlib/$zlib : FORCE
+-	cd zlib && \$(MAKE) $zlib".' $(PASTHRU)
+-';
+-
+-   }
+- return $s;
+-}
+-
+-sub realclean {
+-  my $self = shift;
+-  my $str  = $self->MM::realclean(@_);
+-  $str =~ s/(::\s*clean)/$1 realclean2/;
+-  $str .= "\nrealclean2 ::\n";
+-  $str .= "\t\$(RM_F) ".join(" \\\n\t","libpng/Makefile","libpng/Makefile.PL","zlib/Makefile","zlib/Makefile.PL")."\n";
+-  $str .= "\t\$(RM_F) ".join(" \\\n\t", map { "libpng/$_" } qw(
+-								  config.h
+-								  config.log
+-								  config.status
+-								  libpng-config
+-								  libpng.pc
+-								  libtool
+-								  stamp-h1
+-							     ))."\n";
+-  $str .= "\t\$(RM_RF) ".join(" \\\n\t","libpng/.deps")."\n";
+-  return $str;
+-}
+-
+-
+-
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/components/perl_modules/perl-tk/resolve.deps	Tue Feb 11 21:34:55 2014 -0800
@@ -0,0 +1,9 @@
+library/libjpeg
+library/libpng
+library/libx11
+library/libxft
+runtime/perl-512
+runtime/perl-584
+system/library
+system/library/fontconfig
+system/library/math
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/components/perl_modules/perl-tk/tk-PERLVER.p5m	Tue Feb 11 21:34:55 2014 -0800
@@ -0,0 +1,800 @@
+#
+# CDDL HEADER START
+#
+# The contents of this file are subject to the terms of the
+# Common Development and Distribution License (the "License").
+# You may not use this file except in compliance with the License.
+#
+# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
+# or http://www.opensolaris.org/os/licensing.
+# See the License for the specific language governing permissions
+# and limitations under the License.
+#
+# When distributing Covered Code, include this CDDL HEADER in each
+# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
+# If applicable, add the following below this CDDL HEADER, with the
+# fields enclosed by brackets "[]" replaced with your own identifying
+# information: Portions Copyright [yyyy] [name of copyright owner]
+#
+# CDDL HEADER END
+#
+# Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved.
+#
+<transform file path=usr.*/man/.+ -> default mangler.man.stability volatile>
+set name=pkg.fmri \
+    value=pkg:/library/perl5/perl-tk-$(PLV)@$(IPS_COMPONENT_VERSION),$(BUILD_VERSION)
+set name=pkg.summary value="CPAN Perl Tk module"
+set name=pkg.description \
+    value="perl-tk provides a number of (GUI) widgets commonly needed to develop desktop applications such as buttons, menu, canvas, text, frame, label etc."
+set name=com.oracle.info.description value="the perl Tk library"
+set name=com.oracle.info.tpno value=13259
+set name=info.classification \
+    value=org.opensolaris.category.2008:Development/Perl
+set name=info.source-url value=$(COMPONENT_ARCHIVE_URL)
+set name=info.upstream-url value=$(COMPONENT_PROJECT_URL)
+set name=org.opensolaris.arc-caseid value=PSARC/2013/271
+set name=org.opensolaris.consolidation value=$(CONSOLIDATION)
+#
+file path=usr/perl5/$(PERLVER)/bin/gedi
+file path=usr/perl5/$(PERLVER)/bin/ptked
+file path=usr/perl5/$(PERLVER)/bin/ptksh
+file path=usr/perl5/$(PERLVER)/bin/widget
+file path=usr/perl5/$(PERLVER)/man/man1/ptked.1
+file path=usr/perl5/$(PERLVER)/man/man1/ptksh.1
+file path=usr/perl5/$(PERLVER)/man/man1/widget.1
+file path=usr/perl5/$(PERLVER)/man/man3/Tie::Watch.3
+file path=usr/perl5/$(PERLVER)/man/man3/Tk.3
+file path=usr/perl5/$(PERLVER)/man/man3/Tk::804delta.3
+file path=usr/perl5/$(PERLVER)/man/man3/Tk::Adjuster.3
+file path=usr/perl5/$(PERLVER)/man/man3/Tk::Animation.3
+file path=usr/perl5/$(PERLVER)/man/man3/Tk::Balloon.3
+file path=usr/perl5/$(PERLVER)/man/man3/Tk::Bitmap.3
+file path=usr/perl5/$(PERLVER)/man/man3/Tk::BrowseEntry.3
+file path=usr/perl5/$(PERLVER)/man/man3/Tk::Button.3
+file path=usr/perl5/$(PERLVER)/man/man3/Tk::Canvas.3
+file path=usr/perl5/$(PERLVER)/man/man3/Tk::Checkbutton.3
+file path=usr/perl5/$(PERLVER)/man/man3/Tk::Clipboard.3
+file path=usr/perl5/$(PERLVER)/man/man3/Tk::CmdLine.3
+file path=usr/perl5/$(PERLVER)/man/man3/Tk::ColorEditor.3
+file path=usr/perl5/$(PERLVER)/man/man3/Tk::Compound.3
+file path=usr/perl5/$(PERLVER)/man/man3/Tk::ConfigSpecs.3
+file path=usr/perl5/$(PERLVER)/man/man3/Tk::DItem.3
+file path=usr/perl5/$(PERLVER)/man/man3/Tk::Derived.3
+file path=usr/perl5/$(PERLVER)/man/man3/Tk::Dialog.3
+file path=usr/perl5/$(PERLVER)/man/man3/Tk::DialogBox.3
+file path=usr/perl5/$(PERLVER)/man/man3/Tk::DirTree.3
+file path=usr/perl5/$(PERLVER)/man/man3/Tk::DragDrop::Common.3
+file path=usr/perl5/$(PERLVER)/man/man3/Tk::DragDrop::SunConst.3
+file path=usr/perl5/$(PERLVER)/man/man3/Tk::DropSite.3
+file path=usr/perl5/$(PERLVER)/man/man3/Tk::Entry.3
+file path=usr/perl5/$(PERLVER)/man/man3/Tk::Error.3
+file path=usr/perl5/$(PERLVER)/man/man3/Tk::Eventloop.3
+file path=usr/perl5/$(PERLVER)/man/man3/Tk::FBox.3
+file path=usr/perl5/$(PERLVER)/man/man3/Tk::FileSelect.3
+file path=usr/perl5/$(PERLVER)/man/man3/Tk::Font.3
+file path=usr/perl5/$(PERLVER)/man/man3/Tk::Frame.3
+file path=usr/perl5/$(PERLVER)/man/man3/Tk::HList.3
+file path=usr/perl5/$(PERLVER)/man/man3/Tk::IO.3
+file path=usr/perl5/$(PERLVER)/man/man3/Tk::IconList.3
+file path=usr/perl5/$(PERLVER)/man/man3/Tk::Image.3
+file path=usr/perl5/$(PERLVER)/man/man3/Tk::InputO.3
+file path=usr/perl5/$(PERLVER)/man/man3/Tk::Internals.3
+file path=usr/perl5/$(PERLVER)/man/man3/Tk::LabFrame.3
+file path=usr/perl5/$(PERLVER)/man/man3/Tk::Label.3
+file path=usr/perl5/$(PERLVER)/man/man3/Tk::Labelframe.3
+file path=usr/perl5/$(PERLVER)/man/man3/Tk::Listbox.3
+file path=usr/perl5/$(PERLVER)/man/man3/Tk::MainWindow.3
+file path=usr/perl5/$(PERLVER)/man/man3/Tk::Menu.3
+file path=usr/perl5/$(PERLVER)/man/man3/Tk::Menu::Item.3
+file path=usr/perl5/$(PERLVER)/man/man3/Tk::Menubutton.3
+file path=usr/perl5/$(PERLVER)/man/man3/Tk::Message.3
+file path=usr/perl5/$(PERLVER)/man/man3/Tk::MsgBox.3
+file path=usr/perl5/$(PERLVER)/man/man3/Tk::Mwm.3
+file path=usr/perl5/$(PERLVER)/man/man3/Tk::NoteBook.3
+file path=usr/perl5/$(PERLVER)/man/man3/Tk::Optionmenu.3
+file path=usr/perl5/$(PERLVER)/man/man3/Tk::Pane.3
+file path=usr/perl5/$(PERLVER)/man/man3/Tk::Panedwindow.3
+file path=usr/perl5/$(PERLVER)/man/man3/Tk::Photo.3
+file path=usr/perl5/$(PERLVER)/man/man3/Tk::Pixmap.3
+file path=usr/perl5/$(PERLVER)/man/man3/Tk::Popup.3
+file path=usr/perl5/$(PERLVER)/man/man3/Tk::ProgressBar.3
+file path=usr/perl5/$(PERLVER)/man/man3/Tk::ROText.3
+file path=usr/perl5/$(PERLVER)/man/man3/Tk::Radiobutton.3
+file path=usr/perl5/$(PERLVER)/man/man3/Tk::Reindex.3
+file path=usr/perl5/$(PERLVER)/man/man3/Tk::Scale.3
+file path=usr/perl5/$(PERLVER)/man/man3/Tk::Scrollbar.3
+file path=usr/perl5/$(PERLVER)/man/man3/Tk::Scrolled.3
+file path=usr/perl5/$(PERLVER)/man/man3/Tk::Spinbox.3
+file path=usr/perl5/$(PERLVER)/man/man3/Tk::Submethods.3
+file path=usr/perl5/$(PERLVER)/man/man3/Tk::TList.3
+file path=usr/perl5/$(PERLVER)/man/man3/Tk::Table.3
+file path=usr/perl5/$(PERLVER)/man/man3/Tk::Tcl-perl.3
+file path=usr/perl5/$(PERLVER)/man/man3/Tk::Text.3
+file path=usr/perl5/$(PERLVER)/man/man3/Tk::TextUndo.3
+file path=usr/perl5/$(PERLVER)/man/man3/Tk::Tiler.3
+file path=usr/perl5/$(PERLVER)/man/man3/Tk::TixGrid.3
+file path=usr/perl5/$(PERLVER)/man/man3/Tk::Toplevel.3
+file path=usr/perl5/$(PERLVER)/man/man3/Tk::Trace.3
+file path=usr/perl5/$(PERLVER)/man/man3/Tk::Tree.3
+file path=usr/perl5/$(PERLVER)/man/man3/Tk::UserGuide.3
+file path=usr/perl5/$(PERLVER)/man/man3/Tk::Widget.3
+file path=usr/perl5/$(PERLVER)/man/man3/Tk::WidgetDemo.3
+file path=usr/perl5/$(PERLVER)/man/man3/Tk::WinPhoto.3
+file path=usr/perl5/$(PERLVER)/man/man3/Tk::Wm.3
+file path=usr/perl5/$(PERLVER)/man/man3/Tk::X.3
+file path=usr/perl5/$(PERLVER)/man/man3/Tk::X11Font.3
+file path=usr/perl5/$(PERLVER)/man/man3/Tk::Xrm.3
+file path=usr/perl5/$(PERLVER)/man/man3/Tk::after.3
+file path=usr/perl5/$(PERLVER)/man/man3/Tk::bind.3
+file path=usr/perl5/$(PERLVER)/man/man3/Tk::bindtags.3
+file path=usr/perl5/$(PERLVER)/man/man3/Tk::callbacks.3
+file path=usr/perl5/$(PERLVER)/man/man3/Tk::chooseColor.3
+file path=usr/perl5/$(PERLVER)/man/man3/Tk::chooseDirectory.3
+file path=usr/perl5/$(PERLVER)/man/man3/Tk::composite.3
+file path=usr/perl5/$(PERLVER)/man/man3/Tk::demos::widget_lib::slide.3
+file path=usr/perl5/$(PERLVER)/man/man3/Tk::demos::widget_lib::trace2.3
+file path=usr/perl5/$(PERLVER)/man/man3/Tk::event.3
+file path=usr/perl5/$(PERLVER)/man/man3/Tk::exit.3
+file path=usr/perl5/$(PERLVER)/man/man3/Tk::fileevent.3
+file path=usr/perl5/$(PERLVER)/man/man3/Tk::focus.3
+file path=usr/perl5/$(PERLVER)/man/man3/Tk::form.3
+file path=usr/perl5/$(PERLVER)/man/man3/Tk::getOpenFile.3
+file path=usr/perl5/$(PERLVER)/man/man3/Tk::grab.3
+file path=usr/perl5/$(PERLVER)/man/man3/Tk::grid.3
+file path=usr/perl5/$(PERLVER)/man/man3/Tk::mega.3
+file path=usr/perl5/$(PERLVER)/man/man3/Tk::messageBox.3
+file path=usr/perl5/$(PERLVER)/man/man3/Tk::option.3
+file path=usr/perl5/$(PERLVER)/man/man3/Tk::options.3
+file path=usr/perl5/$(PERLVER)/man/man3/Tk::overview.3
+file path=usr/perl5/$(PERLVER)/man/man3/Tk::pTk.3
+file path=usr/perl5/$(PERLVER)/man/man3/Tk::pack.3
+file path=usr/perl5/$(PERLVER)/man/man3/Tk::palette.3
+file path=usr/perl5/$(PERLVER)/man/man3/Tk::place.3
+file path=usr/perl5/$(PERLVER)/man/man3/Tk::selection.3
+file path=usr/perl5/$(PERLVER)/man/man3/Tk::send.3
+file path=usr/perl5/$(PERLVER)/man/man3/Tk::tixWm.3
+file path=usr/perl5/$(PERLVER)/man/man3/Tk::tkvars.3
+file path=usr/perl5/$(PERLVER)/man/man3/Tk::widgets.3
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tie/Watch.pm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk.pm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk.pod
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/804delta.pod
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/Adjuster.pm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/Adjuster.pod
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/After.pm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/Animation.pm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/Animation.pod
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/Balloon.pm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/Balloon.pod
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/Bitmap.pm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/Bitmap.pod
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/BrowseEntry.pm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/BrowseEntry.pod
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/Button.pm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/Button.pod
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/Camel.xpm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/Canvas.pm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/Canvas.pod
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/Checkbutton.pm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/Checkbutton.pod
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/Clipboard.pm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/Clipboard.pod
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/CmdLine.pm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/CmdLine.pod
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/ColorEdit.xpm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/ColorEditor.pm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/ColorEditor.pod
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/Compound.pm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/Compound.pod
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/Config.pm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/ConfigSpecs.pod
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/Configure.pm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/Credits
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/DItem.pod
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/Derived.pm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/Derived.pod
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/Dialog.pm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/Dialog.pod
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/DialogBox.pm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/DialogBox.pod
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/DirTree.pm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/DirTree.pod
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/Dirlist.pm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/DragDrop.pm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/DragDrop/Common.pm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/DragDrop/Common.pod
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/DragDrop/LocalDrop.pm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/DragDrop/Rect.pm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/DragDrop/SunConst.pm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/DragDrop/SunConst.pod
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/DragDrop/SunDrop.pm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/DragDrop/SunSite.pm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/DragDrop/XDNDDrop.pm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/DragDrop/XDNDSite.pm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/DropSite.pm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/DropSite.pod
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/DummyEncode.pm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/English.pm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/Entry.pm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/Entry.pod
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/Error.pod
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/ErrorDialog.pm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/Event.pm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/Event/IO.pm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/Eventloop.pod
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/FBox.pm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/FBox.pod
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/FileSelect.pm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/FileSelect.pod
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/FloatEntry.pm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/Font.pm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/Font.pod
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/Frame.pm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/Frame.pod
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/HList.pm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/HList.pod
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/IO.pm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/IO.pod
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/IconList.pm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/IconList.pod
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/Image.pm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/Image.pod
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/InputO.pm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/InputO.pod
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/Internals.pod
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/ItemStyle.pm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/LabEntry.pm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/LabFrame.pm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/LabFrame.pod
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/LabRadio.pm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/Label.pm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/Label.pod
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/Labelframe.pm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/Labelframe.pod
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/Listbox.pm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/Listbox.pod
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/MMtry.pm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/MMutil.pm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/MainWindow.pm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/MainWindow.pod
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/MakeDepend.pm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/Menu.pm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/Menu.pod
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/Menu/Item.pm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/Menu/Item.pod
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/Menubar.pm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/Menubutton.pm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/Menubutton.pod
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/Message.pm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/Message.pod
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/MsgBox.pm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/MsgBox.pod
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/Mwm.pm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/Mwm.pod
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/NBFrame.pm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/NoteBook.pm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/NoteBook.pod
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/Optionmenu.pm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/Optionmenu.pod
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/Pane.pm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/Panedwindow.pm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/Panedwindow.pod
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/Photo.pm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/Photo.pod
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/Pixmap.pm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/Pixmap.pod
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/Popup.pod
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/Pretty.pm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/ProgressBar.pm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/README.Adjust
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/ROText.pm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/ROText.pod
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/Radiobutton.pm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/Radiobutton.pod
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/Region.pm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/Reindex.pm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/ReindexedROText.pm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/ReindexedText.pm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/Scale.pm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/Scale.pod
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/Scrollbar.pm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/Scrollbar.pod
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/Scrolled.pod
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/Spinbox.pm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/Spinbox.pod
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/Stats.pm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/Submethods.pm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/Submethods.pod
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/TList.pm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/TList.pod
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/Table.pm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/Table.pod
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/Tcl-perl.pod
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/Text.pm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/Text.pod
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/Text/Tag.pm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/TextEdit.pm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/TextList.pm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/TextUndo.pm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/TextUndo.pod
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/Tiler.pm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/Tiler.pod
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/TixGrid.pm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/TixGrid.pod
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/Tk.xbm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/Tk.xpm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/TkXSUB.def
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/Toplevel.pm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/Toplevel.pod
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/Trace.pm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/Tree.pm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/Tree.pod
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/UserGuide.pod
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/Widget.pm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/Widget.pod
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/WidgetDemo.pod
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/WinPhoto.pm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/Wm.pm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/Wm.pod
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/X.pm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/X.pod
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/X11Font.pm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/X11Font.pod
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/Xcamel.gif
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/Xlib.pm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/Xrm.pm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/Xrm.pod
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/act_folder.xbm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/act_folder.xpm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/after.pod
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/anim.gif
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/arrowdownwin.xbm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/balArrow.xbm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/bind.pod
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/bindtags.pod
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/callbacks.pod
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/cbxarrow.xbm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/chooseColor.pod
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/chooseDirectory.pod
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/composite.pod
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/demos/LabEnLabRad.pm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/demos/images/QuitPB.xpm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/demos/images/QuitPBa.xpm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/demos/images/c.icon
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/demos/images/cursor.cur
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/demos/images/cursor.mask
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/demos/images/cursor.xbm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/demos/images/dir.icon
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/demos/images/dir.mask
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/demos/images/earth.gif
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/demos/images/earthris.gif
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/demos/images/face
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/demos/images/flagdown
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/demos/images/flagup
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/demos/images/grey.25
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/demos/images/grey.5
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/demos/images/letters
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/demos/images/mickey.gif
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/demos/images/ned.xpm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/demos/images/noletters
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/demos/images/page.icon
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/demos/images/page.mask
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/demos/images/pattern
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/demos/images/teapot.ppm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/demos/widget_lib/Ball.pm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/demos/widget_lib/HList.pl
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/demos/widget_lib/HList2.pl
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/demos/widget_lib/Plot.pm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/demos/widget_lib/WidgetDemo.pm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/demos/widget_lib/arrows.pl
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/demos/widget_lib/balloon.pl
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/demos/widget_lib/bind.pl
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/demos/widget_lib/bitmaps.pl
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/demos/widget_lib/bounce.pl
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/demos/widget_lib/browseentry.pl
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/demos/widget_lib/browseentry2.pl
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/demos/widget_lib/button.pl
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/demos/widget_lib/check.pl
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/demos/widget_lib/choosedir.pl
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/demos/widget_lib/clrpick.pl
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/demos/widget_lib/colors.pl
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/demos/widget_lib/cscroll.pl
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/demos/widget_lib/ctext.pl
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/demos/widget_lib/dialog1.pl
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/demos/widget_lib/dialog2.pl
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/demos/widget_lib/dirtree.pl
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/demos/widget_lib/entry1.pl
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/demos/widget_lib/entry2.pl
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/demos/widget_lib/entry3.pl
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/demos/widget_lib/filebox.pl
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/demos/widget_lib/floor.pl
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/demos/widget_lib/form.pl
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/demos/widget_lib/form_mgr.pl
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/demos/widget_lib/hello.pl
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/demos/widget_lib/hscale.pl
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/demos/widget_lib/icon.pl
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/demos/widget_lib/image1.pl
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/demos/widget_lib/image2.pl
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/demos/widget_lib/items.pl
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/demos/widget_lib/keysyms.pl
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/demos/widget_lib/labelframe.pl
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/demos/widget_lib/labels.pl
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/demos/widget_lib/labframe.pl
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/demos/widget_lib/mega.pl
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/demos/widget_lib/menbut.pl
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/demos/widget_lib/menus.pl
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/demos/widget_lib/menus2.pl
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/demos/widget_lib/msgBox.pl
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/demos/widget_lib/notebook.pl
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/demos/widget_lib/paned1.pl
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/demos/widget_lib/paned2.pl
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/demos/widget_lib/photo1.pl
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/demos/widget_lib/photo2.pl
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/demos/widget_lib/plot.pl
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/demos/widget_lib/progress.pl
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/demos/widget_lib/puzzle.pl
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/demos/widget_lib/radio.pl
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/demos/widget_lib/ruler.pl
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/demos/widget_lib/sayings.pl
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/demos/widget_lib/search.pl
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/demos/widget_lib/showVars.pl
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/demos/widget_lib/slide.pl
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/demos/widget_lib/spin.pl
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/demos/widget_lib/states.pl
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/demos/widget_lib/style.pl
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/demos/widget_lib/texts.pl
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/demos/widget_lib/trace1.pl
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/demos/widget_lib/trace2.pl
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/demos/widget_lib/transtile.pl
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/demos/widget_lib/twind.pl
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/demos/widget_lib/unicodeout.pl
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/demos/widget_lib/virtevents1.pl
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/demos/widget_lib/vscale.pl
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/demos/widtrib/Gedi.pl
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/demos/widtrib/TEMPLATE.pl
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/demos/widtrib/Tiler.pl
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/demos/widtrib/all.pl
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/demos/widtrib/cursor.pl
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/demos/widtrib/lib/npuz/Xcamel.npuz
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/demos/widtrib/npuz.pl
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/demos/widtrib/plop.pl
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/event.pod
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/exit.pod
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/file.xbm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/file.xpm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/fileevent.pod
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/focus.pod
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/folder.xbm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/folder.xpm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/form.pod
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/getOpenFile.pod
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/grab.pod
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/grid.pod
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/icon.gif
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/install.pm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/license.terms
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/mega.pod
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/messageBox.pod
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/openfile.xbm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/openfolder.xbm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/openfolder.xpm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/option.pod
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/options.pod
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/overview.pod
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pTk.pod
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pTk/Lang.h
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pTk/Lang.m
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pTk/Lang.t
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pTk/Lang_f.h
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pTk/Tcl-pTk
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pTk/Xlib.h
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pTk/Xlib.m
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pTk/Xlib.t
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pTk/Xlib_f.h
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pTk/compat/limits.h
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pTk/compat/stdlib.h
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pTk/compat/unistd.h
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pTk/default.h
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pTk/img.h
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pTk/imgInt.h
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pTk/imgInt.m
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pTk/imgInt.t
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pTk/imgInt_f.h
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pTk/ks_names.h
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pTk/mkVFunc
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pTk/moredefs.h
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pTk/port.h
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pTk/tcl.h
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pTk/tclDecls.h
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pTk/tclDecls.m
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pTk/tclDecls.t
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pTk/tclDecls_f.h
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pTk/tclIntDecls.h
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pTk/tclIntPlatDecls.h
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pTk/tclMath.h
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pTk/tclPlatDecls.h
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pTk/tix.h
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pTk/tix.m
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pTk/tix.t
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pTk/tixBitmaps.h
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pTk/tixDef.h
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pTk/tixForm.h
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pTk/tixGrData.h
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pTk/tixGrid.h
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pTk/tixHList.h
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pTk/tixImgXpm.h
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pTk/tixImgXpm.m
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pTk/tixImgXpm.t
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pTk/tixImgXpm_f.h
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pTk/tixInt.h
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pTk/tixInt.m
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pTk/tixInt.t
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pTk/tixInt_f.h
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pTk/tixPort.h
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pTk/tixTList.h
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pTk/tixUnixInt.h
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pTk/tixUnixPort.h
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pTk/tix_f.h
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pTk/tk.h
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pTk/tk.m
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pTk/tk.t
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pTk/tk3d.h
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pTk/tkButton.h
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pTk/tkCanvas.h
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pTk/tkCanvases.h
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pTk/tkColor.h
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pTk/tkConfig.h
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pTk/tkDecls.h
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pTk/tkDecls.m
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pTk/tkDecls.t
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pTk/tkDecls_f.h
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pTk/tkEvent.h
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pTk/tkEvent.m
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pTk/tkEvent.t
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pTk/tkEvent_f.h
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pTk/tkFileFilter.h
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pTk/tkFont.h
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pTk/tkImgPhoto.h
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pTk/tkImgPhoto.m
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pTk/tkImgPhoto.t
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pTk/tkImgPhoto_f.h
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pTk/tkInitScript.h
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pTk/tkInt.h
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pTk/tkInt.m
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pTk/tkInt.t
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pTk/tkIntDecls.h
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pTk/tkIntDecls.m
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pTk/tkIntDecls.t
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pTk/tkIntDecls_f.h
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pTk/tkIntPlatDecls.h
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pTk/tkIntPlatDecls.m
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pTk/tkIntPlatDecls.t
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pTk/tkIntPlatDecls_f.h
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pTk/tkIntXlibDecls.h
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pTk/tkIntXlibDecls.m
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pTk/tkIntXlibDecls.t
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pTk/tkIntXlibDecls_f.h
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pTk/tkInt_f.h
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pTk/tkMenu.h
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pTk/tkMenubutton.h
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pTk/tkOption.h
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pTk/tkOption.m
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pTk/tkOption.t
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pTk/tkOption_f.h
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pTk/tkPlatDecls.h
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pTk/tkPlatDecls.m
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pTk/tkPlatDecls.t
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pTk/tkPlatDecls_f.h
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pTk/tkPort.h
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pTk/tkScale.h
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pTk/tkScrollbar.h
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pTk/tkSelect.h
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pTk/tkText.h
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pTk/tkUndo.h
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pTk/tkUnixDefault.h
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pTk/tkUnixInt.h
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pTk/tkUnixPort.h
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pTk/tkVMacro.h
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pTk/tkXrm.h
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pTk/tk_f.h
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/pack.pod
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/palette.pod
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/place.pod
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/prolog.ps
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/selection.pod
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/send.pod
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/srcfile.xpm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/textfile.xpm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/tixWm.pod
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/tkGlue.def
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/tkGlue.h
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/tkGlue.m
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/tkGlue.t
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/tkGlue_f.h
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/tkvars.pod
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/tranicon.gif
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/typemap
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/vtab.def
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/widgets.pm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/widgets.pod
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/win.xbm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/winfolder.xpm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/Tk/wintext.xpm
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/CancelRepeat.al
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Canvas/Canvas.bs
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Canvas/Canvas.so
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Clipboard/autosplit.ix
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Clipboard/getSelected.al
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Compound/Compound.bs
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Compound/Compound.so
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/EnterFocus.al
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Entry/Entry.bs
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Entry/Entry.so
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Error.al
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Event/Event.bs
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Event/Event.so
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/FirstMenu.al
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/FocusChildren.al
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/FocusOK.al
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Frame/AddScrollbars.al
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Frame/FindMenu.al
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Frame/autosplit.ix
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Frame/freeze_on_map.al
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Frame/label.al
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Frame/labelPack.al
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Frame/labelVariable.al
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Frame/packscrollbars.al
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Frame/queuePack.al
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Frame/sbset.al
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Frame/scrollbars.al
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/HList/HList.bs
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/HList/HList.so
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/IO/IO.bs
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/IO/IO.so
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/ImageNames.al
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/ImageTypes.al
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/InputO/InputO.bs
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/InputO/InputO.so
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Listbox/AutoScan.al
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Listbox/BeginExtend.al
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Listbox/BeginSelect.al
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Listbox/BeginToggle.al
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Listbox/ButtonRelease_1.al
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Listbox/CLEAR.al
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Listbox/Cancel.al
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Listbox/Cntrl_End.al
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Listbox/Cntrl_Home.al
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Listbox/Cntrl_backslash.al
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Listbox/DELETE.al
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Listbox/DataExtend.al
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Listbox/EXISTS.al
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Listbox/EXTEND.al
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Listbox/ExtendUpDown.al
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Listbox/FETCH.al
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Listbox/FETCHSIZE.al
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Listbox/Listbox.bs
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Listbox/Listbox.so
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Listbox/Motion.al
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Listbox/POP.al
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Listbox/PUSH.al
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Listbox/SHIFT.al
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Listbox/SPLICE.al
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Listbox/STORE.al
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Listbox/SelectAll.al
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Listbox/SetList.al
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Listbox/TIEARRAY.al
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Listbox/TIESCALAR.al
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Listbox/UNSHIFT.al
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Listbox/UpDown.al
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Listbox/autosplit.ix
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Listbox/clipboardPaste.al
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Listbox/deleteSelected.al
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Listbox/getSelected.al
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Listbox/xyIndex.al
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Menubutton/Menubutton.bs
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Menubutton/Menubutton.so
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Mwm/Mwm.bs
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Mwm/Mwm.so
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/NBFrame/NBFrame.bs
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/NBFrame/NBFrame.so
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Pixmap/Pixmap.bs
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Pixmap/Pixmap.so
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Receive.al
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/RepeatId.al
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Scale/Activate.al
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Scale/ButtonDown.al
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Scale/ButtonUp.al
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Scale/ControlPress.al
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Scale/Drag.al
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Scale/EndDrag.al
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Scale/Enter.al
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Scale/Increment.al
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Scale/Leave.al
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Scale/Scale.bs
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Scale/Scale.so
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Scale/autosplit.ix
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Scrollbar/ButtonDown.al
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Scrollbar/ButtonUp.al
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Scrollbar/Drag.al
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Scrollbar/EndDrag.al
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Scrollbar/Enter.al
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Scrollbar/Leave.al
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Scrollbar/Motion.al
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Scrollbar/ScrlByPages.al
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Scrollbar/ScrlByUnits.al
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Scrollbar/ScrlToPos.al
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Scrollbar/ScrlTopBottom.al
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Scrollbar/Scrollbar.bs
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Scrollbar/Scrollbar.so
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Scrollbar/Select.al
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Scrollbar/StartDrag.al
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Scrollbar/autosplit.ix
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Selection.al
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/TList/TList.bs
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/TList/TList.so
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Table/Create.al
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Table/Posn.al
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Table/autosplit.ix
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Table/see.al
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Table/totalColumns.al
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Table/totalRows.al
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Text/Text.bs
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Text/Text.so
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Text/autosplit.ix
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/TextEdit/autosplit.ix
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/TextUndo/autosplit.ix
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/TixGrid/TixGrid.bs
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/TixGrid/TixGrid.so
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Tk.bs
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Tk.so
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Toplevel/FG_BindIn.al
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Toplevel/FG_BindOut.al
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Toplevel/FG_Create.al
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Toplevel/FG_Destroy.al
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Toplevel/FG_In.al
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Toplevel/FG_Out.al
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Toplevel/autosplit.ix
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/TraverseToMenu.al
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Widget/ASkludge.al
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Widget/AltKeyInDialog.al
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Widget/AmpWidget.al
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Widget/FindAltKeyTarget.al
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Widget/MasterMenu.al
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Widget/RestoreFocusGrab.al
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Widget/SetAmpText.al
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Widget/SetFocusGrab.al
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Widget/UnderlineAmpersand.al
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Widget/autosplit.ix
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Widget/bindDump.al
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Widget/clipboardKeysyms.al
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Widget/pathname.al
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/WinPhoto/WinPhoto.bs
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/WinPhoto/WinPhoto.so
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Wm/AnchorAdjust.al
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Wm/FullScreen.al
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Wm/Popup.al
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Wm/Post.al
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Wm/autosplit.ix
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Wm/iconposition.al
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/X/X.bs
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/X/X.so
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/X/autosplit.ix
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Xlib/Xlib.bs
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/Xlib/Xlib.so
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/autosplit.ix
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/break.al
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/focusFollowsMouse.al
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/focusNext.al
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/focusPrev.al
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/getEncoding.al
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/getNextFocus.al
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/getPrevFocus.al
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/interps.al
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/lsearch.al
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/pTk/extralibs.ld
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/tabFocus.al
+file path=usr/perl5/vendor_perl/$(PERLVER)/$(PERL_ARCH)/auto/Tk/updateWidgets.al
+license tk.license license=Artistic
+# force a dependency on the Perl runtime
+depend type=require fmri=__TBD pkg.debug.depend.file=perl \
+    pkg.debug.depend.path=usr/perl5/$(PERLVER)/bin
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/components/perl_modules/perl-tk/tk.license	Tue Feb 11 21:34:55 2014 -0800
@@ -0,0 +1,104 @@
+Where applicable, Oracle elects to license this component under the Artistic 
+License. This program contains third-party code from the Comprehensive Perl 
+Archive Network (“CPAN”).  Under the terms of the CPAN license, Oracle is 
+required to provide the following notices.  Note, however, that the Oracle 
+program license that accompanied this product determines your right to use
+the Oracle program, including the CPAN software, and the terms contained in
+the following notices do not change those rights. 
+
+Copyright (c) 1995-2003 Nick Ing-Simmons. All rights reserved.
+This package is free software; you can redistribute it and/or
+modify it under the same terms as Perl itself, with the exception
+of the files in the pTk sub-directory which have separate terms
+derived from those of the orignal Tk4.0 sources and/or Tix.
+
+IN NO EVENT SHALL THE AUTHORS OR DISTRIBUTORS BE LIABLE TO ANY PARTY
+FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
+ARISING OUT OF THE USE OF THIS SOFTWARE, ITS DOCUMENTATION, OR ANY
+DERIVATIVES THEREOF, EVEN IF THE AUTHORS HAVE BEEN ADVISED OF THE
+POSSIBILITY OF SUCH DAMAGE.
+
+THE AUTHORS AND DISTRIBUTORS SPECIFICALLY DISCLAIM ANY WARRANTIES,
+INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT.  THIS SOFTWARE
+IS PROVIDED ON AN "AS IS" BASIS, AND THE AUTHORS AND DISTRIBUTORS HAVE
+NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR
+MODIFICATIONS.
+
+See pTk/license.terms for details of this Tk license,
+and pTk/Tix.license for the Tix license.
+
+pTk/license.terms are:
+his software is copyrighted by the Regents of the University of
+California, Sun Microsystems, Inc., and other parties.  The following
+terms apply to all files associated with the software unless explicitly
+disclaimed in individual files.
+
+The authors hereby grant permission to use, copy, modify, distribute,
+and license this software and its documentation for any purpose, provided
+that existing copyright notices are retained in all copies and that this
+notice is included verbatim in any distributions. No written agreement,
+license, or royalty fee is required for any of the authorized uses.
+Modifications to this software may be copyrighted by their authors
+and need not follow the licensing terms described here, provided that
+the new terms are clearly indicated on the first page of each file where
+they apply.
+
+IN NO EVENT SHALL THE AUTHORS OR DISTRIBUTORS BE LIABLE TO ANY PARTY
+FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
+ARISING OUT OF THE USE OF THIS SOFTWARE, ITS DOCUMENTATION, OR ANY
+DERIVATIVES THEREOF, EVEN IF THE AUTHORS HAVE BEEN ADVISED OF THE
+POSSIBILITY OF SUCH DAMAGE.
+
+THE AUTHORS AND DISTRIBUTORS SPECIFICALLY DISCLAIM ANY WARRANTIES,
+INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT.  THIS SOFTWARE
+IS PROVIDED ON AN "AS IS" BASIS, AND THE AUTHORS AND DISTRIBUTORS HAVE
+NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR
+MODIFICATIONS.
+
+GOVERNMENT USE: If you are acquiring this software on behalf of the
+U.S. government, the Government shall have only "Restricted Rights"
+in the software and related documentation as defined in the Federal
+Acquisition Regulations (FARs) in Clause 52.227.19 (c) (2).  If you
+are acquiring the software on behalf of the Department of Defense, the
+software shall be classified as "Commercial Computer Software" and the
+Government shall have only "Restricted Rights" as defined in Clause
+252.227-7013 (c) (1) of DFARs.  Notwithstanding the foregoing, the
+authors grant the U.S. Government and others acting in its behalf
+permission to use and distribute the software in accordance with the
+terms specified in this license.
+
+pTk/Tix license terms are:
+Copyright (c) 1993-95 Ioi Kim Lam.
+Copyright (c) 1996 Expert Interface Technologies.
+
+Permission is hereby granted, without written agreement and without
+license or royalty fees, to use, copy, modify, and distribute this
+software and its documentation for any purpose, provided that the
+above copyright notice and the following two paragraphs appear in all
+copies of this software.
+
+IN NO EVENT SHALL THE AUTHORS OF THIS SOFTWARE BE LIABLE TO ANY PARTY
+FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
+ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF
+THE AUTHORS OF THIS SOFTWARE HAVE BEEN ADVISED OF THE POSSIBILITY OF
+SUCH DAMAGE.
+
+THE AUTHORS OF THIS SOFTWARE SPECIFICALLY DISCLAIM ANY WARRANTIES,
+INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS ON
+AN "AS IS" BASIS, AND THE AUTHORS OF THIS SOFTWARE HAVE NO OBLIGATION TO
+PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
+
+----------------------------------------------------------------------
+
+Parts of this software are based on the Tcl/Tk software copyrighted by
+the Regents of the University of California, Sun Microsystems, Inc.,
+and other parties. The original license terms of the Tcl/Tk software
+distribution is included in the file docs/license.tcltk.
+
+Parts of this software are based on the HTML Library software
+copyrighted by Sun Microsystems, Inc. The original license terms of
+the HTML Library software distribution is included in the file
+docs/license.html_lib.