summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNorbert Preining <preining@logic.at>2008-06-22 14:23:07 +0000
committerNorbert Preining <preining@logic.at>2008-06-22 14:23:07 +0000
commit09732e2a06a89da7cdf68ad773d8db5122687379 (patch)
tree0b0ee6248fd6122a0b6f9abaafad5dc3138888c9
parent3e9505749cf61218e1f9583e94600df3795e7001 (diff)
make Splashscreen and waitVariableX available for all platforms, and remove
the windows specific one. ALso change the incantation in tlmgrgui git-svn-id: svn://tug.org/texlive/trunk@8934 c570f23f-e606-0410-a88d-b1316a301751
-rwxr-xr-xMaster/texmf/scripts/texlive/tlmgrgui/tlmgrgui-real.pl2
-rw-r--r--Master/tlpkg/TeXLive/Splashscreen.pm (renamed from Master/tlpkg/tlperl/lib/Tk/Splashscreen.pm)11
-rw-r--r--Master/tlpkg/TeXLive/waitVariableX.pm (renamed from Master/tlpkg/tlperl/lib/Tk/waitVariableX.pm)7
3 files changed, 12 insertions, 8 deletions
diff --git a/Master/texmf/scripts/texlive/tlmgrgui/tlmgrgui-real.pl b/Master/texmf/scripts/texlive/tlmgrgui/tlmgrgui-real.pl
index 24a7c963673..7f9bd426920 100755
--- a/Master/texmf/scripts/texlive/tlmgrgui/tlmgrgui-real.pl
+++ b/Master/texmf/scripts/texlive/tlmgrgui/tlmgrgui-real.pl
@@ -35,7 +35,7 @@ use Tk::NoteBook;
use Tk::BrowseEntry;
use Tk::ROText;
use Tk::Balloon;
-use Tk::Splashscreen;
+use TeXLive::Splashscreen;
diff --git a/Master/tlpkg/tlperl/lib/Tk/Splashscreen.pm b/Master/tlpkg/TeXLive/Splashscreen.pm
index 3148c6b1131..b04802d772e 100644
--- a/Master/tlpkg/tlperl/lib/Tk/Splashscreen.pm
+++ b/Master/tlpkg/TeXLive/Splashscreen.pm
@@ -1,10 +1,10 @@
-$Tk::Splashscreen::VERSION = '1.0';
+$TeXLive::Splashscreen::VERSION = '1.0';
-package Tk::Splashscreen;
+package TeXLive::Splashscreen;
use Tk qw/Ev/;
use Tk qw/:eventtypes/;
-use Tk::waitVariableX;
+use TeXLive::waitVariableX;
use Tk::widgets qw/Toplevel/;
use base qw/Tk::Toplevel/;
@@ -88,7 +88,7 @@ __END__
=head1 NAME
-Tk::Splashscreen - display a Splashscreen during program initialization.
+TeXLive::Splashscreen - display a Splashscreen during program initialization.
=head1 SYNOPSIS
@@ -178,6 +178,9 @@ Copyright (C) 2001 - 2002, Steve Lidie. All rights reserved.
This program is free software; you can redistribute it and/or
modify it under the same terms as Perl itself.
+This package is a literal copy of the Splashscreen.pm code only changing
+the package name.
+
=head1 KEYWORDS
Splashscreen, Toplevel
diff --git a/Master/tlpkg/tlperl/lib/Tk/waitVariableX.pm b/Master/tlpkg/TeXLive/waitVariableX.pm
index 29dbae9cea5..b6404c5350b 100644
--- a/Master/tlpkg/tlperl/lib/Tk/waitVariableX.pm
+++ b/Master/tlpkg/TeXLive/waitVariableX.pm
@@ -1,6 +1,6 @@
-$Tk::waitVariableX::VERSION = '1.0';
+$TeXLive::waitVariableX::VERSION = '1.0';
-package Tk::waitVariableX;
+package TeXLive::waitVariableX;
use Carp;
use Exporter;
@@ -45,7 +45,7 @@ __END__
=head1 NAME
-Tk::waitVariableX - a waitVariable with extensions.
+TeXLive::waitVariableX - a waitVariable with extensions.
=head1 SYNOPSIS
@@ -77,4 +77,5 @@ Copyright (C) 2000 - 2002 Stephen O. Lidie. All rights reserved.
This program is free software; you can redistribute it and/or modify it under
the same terms as Perl itself.
+This package is a literal copy of the original package only changing its name.
=cut