diff options
-rwxr-xr-x | Master/texmf/scripts/texlive/tlmgrgui/tlmgrgui-real.pl | 2 | ||||
-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 |