summaryrefslogtreecommitdiff
path: root/Master/tlpkg/installer/install-menu-perltk.pl.old
blob: d9b96e2575b47032e13a2e58230a59486beece30 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
#!/usr/bin/env perl
#
# $Id$
#
# Copyright 2008 Norbert Preining, Reinhard Kotucha
# This file is licensed under the GNU General Public License version 2
# or any later version.
#
#
# MISSING SUPPORT FOR:
# - TEXMFHOME ???
#
# TODO:
# - 'cancel' in the collections/scheme dialogs is not really a cancel because
#   the checkboxes are tied to the %vars hash, which make cancel == return!!!
# - does the DoOneEvent *NEVER* hang???

our %vars;
our $tlpdb;
our @collections_std;
our @collections_lang;
our @collections_lang_doc;
our $texlive_release;
our $trynet;
our $max_bins_on_CD;

our $MENU_INSTALL = 0;
our $MENU_ABORT   = 1;
our $MENU_QUIT    = 2;
our $MENU_ALREADYDONE = 3;

my $return = $MENU_INSTALL;

require Tk;
require Tk::Dialog;

my $mw;

my $bintextbutton;
my $schemebutton;
my $collectionstext;
my $texmflocaltext;
my $texmfsysvartext;
my $texdirtext;
my $symlinktext;

push @::start_install_hook, sub { update_statusbar("Starting Installation");
  Tk::DoOneEvent(Tk::Event::DONT_WAIT); Tk::DoOneEvent(Tk::Event::DONT_WAIT); };
push @::start_postinst_hook, sub { update_statusbar("Starting Post Installation Jobs");
  Tk::DoOneEvent(Tk::Event::DONT_WAIT); Tk::DoOneEvent(Tk::Event::DONT_WAIT); };
push @::end_install_hook, sub { update_statusbar("Installation finished");
  Tk::DoOneEvent(Tk::Event::DONT_WAIT); Tk::DoOneEvent(Tk::Event::DONT_WAIT); };


push @::install_packages_hook, \&update_statusbar;
# no idea how many of those are necessary, 1 is definitely not enough!
push @::install_packages_hook, sub { Tk::DoOneEvent(Tk::Event::DONT_WAIT); };
push @::install_packages_hook, sub { Tk::DoOneEvent(Tk::Event::DONT_WAIT); };
push @::install_packages_hook, sub { Tk::DoOneEvent(Tk::Event::DONT_WAIT); };
push @::install_packages_hook, sub { Tk::DoOneEvent(Tk::Event::DONT_WAIT); };
push @::install_packages_hook, sub { Tk::DoOneEvent(Tk::Event::DONT_WAIT); };
push @::install_packages_hook, sub { Tk::DoOneEvent(Tk::Event::DONT_WAIT); };
push @::install_packages_hook, sub { Tk::DoOneEvent(Tk::Event::DONT_WAIT); };
push @::install_packages_hook, sub { Tk::DoOneEvent(Tk::Event::DONT_WAIT); };
push @::install_packages_hook, sub { Tk::DoOneEvent(Tk::Event::DONT_WAIT); };
push @::install_packages_hook, sub { Tk::DoOneEvent(Tk::Event::DONT_WAIT); };
push @::install_packages_hook, sub { Tk::DoOneEvent(Tk::Event::DONT_WAIT); };
push @::install_packages_hook, sub { Tk::DoOneEvent(Tk::Event::DONT_WAIT); };
push @::install_packages_hook, sub { Tk::DoOneEvent(Tk::Event::DONT_WAIT); };
push @::install_packages_hook, sub { Tk::DoOneEvent(Tk::Event::DONT_WAIT); };
push @::install_packages_hook, sub { Tk::DoOneEvent(Tk::Event::DONT_WAIT); };
push @::install_packages_hook, sub { Tk::DoOneEvent(Tk::Event::DONT_WAIT); };

sub update_statusbar {
  my $p = shift;
  $::statusbar->configure(-text => "$p");
}

sub run_menu {
  calc_depends;
  $mw = MainWindow->new;
  my $f0 = $mw->Frame;
  my $fl = $f0->Frame;
  my $fr = $f0->Frame;
  $f0->pack;
  $fl->pack(-side => 'left');
  $fr->pack(-side => 'right');
  my $img = $fl->Pixmap(-file => "install-tl.xpm");
  $fl->Label(-image => $img)->pack;
  $fr->Label(-text => 'TeX Live 2008 Installation')->pack;
  $bintextbutton = $fr->Button(
    -command => sub { menu_select_binsystems(); }
  );
  $bintextbutton->pack;
  $schemebutton = $fr->Button(
    -command => sub { menu_select_scheme(); }
  );
  $schemebutton->pack;
  $fr->Label(-text => 'Customizing installation scheme')->pack;
  $fr->Button(
    -text    => "Standard Collections",
    -command => sub { menu_select_standard_collections(); }
  )->pack;
  $fr->Button(
    -text    => "Language Collections",
    -command => sub { menu_select_lang_collections(); }
  )->pack;
  $collectionstext = $fr->Label();
  $collectionstext->pack;
  #$fr->Button(
  #  -text    => "Directories' setup",
  #  -command => sub { notimpl(); }
  #)->pack;
  $fr->Label(-text    => "Directories' setup")->pack;
  $texdirtext = $fr->Button(
    -command => sub { menu_edit_vars_value("TEXDIR"); } );
  $texmflocaltext = $fr->Button(
    -command => sub { menu_edit_vars_value("TEXMFLOCAL"); } );
  $texmfsysvartext = $fr->Button(
    -command => sub { menu_edit_vars_value("TEXMFSYSVAR"); } );
  $texdirtext->pack;
  $texmflocaltext->pack;
  $texmfsysvartext->pack;
  $fr->Checkbutton(-variable => \$vars{'option_letter'}, -text => "use letter size instead of A4 by default")->pack;
  $fr->Checkbutton(-variable => \$vars{'option_fmt'}, -text => "create all format files")->pack;
  $fr->Checkbutton(-variable => \$vars{'option_doc'}, -text => "install font/macro doc tree")->pack;
  $fr->Checkbutton(-variable => \$vars{'option_src'}, -text => "install font/macro source tree")->pack;
  if (unix()) {
    $symlinktext = $fr->Button(-command => sub { menu_select_symlink(); })->pack;
  }
  my $f3 = $fr->Frame;
  $f3->Button(
    -text    => 'Install TeX Live',
    -command => sub { do_installation(); 
      $return = $MENU_ALREADYDONE;
      $fr->Dialog(-text => 'Installation finished', -buttons => [qw/Finish/])->Show;
      $mw->destroy },
  )->pack(-side => 'left');
  $f3->Button(
    -text    => 'Quit',
    -command => sub { exit 0; $return = $MENU_ABORT; $mw->destroy }
  )->pack(-side => 'right');
  $f3->pack(-expand => 'x');
  $::statusbar = $mw->Label(-text => 'Status output');
  $::statusbar->pack;
  menu_update_texts();
  Tk::MainLoop();
  return($return);
}

sub notimpl {
  my $errorwin = $mw->Toplevel;
  $errorwin->Button(-text => "Not implemented yet!", 
                    -command => [ $errorwin => 'destroy' ])->pack;
}

sub menu_edit_vars_value {
  my $key = shift;
  my $sw = $mw->Toplevel;
  my $val = $vars{$key};
  $sw->Label(-text => "Enter path for $key:")->pack;
  my $entry = $sw->Entry(-textvariable => $val, -width => 60);
  $entry->pack;
  my $f = $sw->Frame;
  $f->Button(-text => "Ok", 
     -command => sub { $val = $entry->get; callback_edit_directories($key,$val) ; $sw->destroy })->pack(-side => 'left');
  $f->Button(-text => "Cancel", 
     -command => sub { $sw->destroy })->pack(-side => 'right');
  $f->pack(-expand => 'x');
}
    
sub menu_select_scheme {
  my $sw = $mw->Toplevel;
  my @schemes;
  foreach my $pkg ($tlpdb->list_packages) {
    my $tlpobj = $tlpdb->{'tlps'}{$pkg};
    if ($tlpobj->category eq "Scheme") {
      push @schemes, $pkg;
      $vars{"$pkg"}=($vars{'selected_scheme'} eq $pkg)? 1:0;
    }
  }
  @schemes=sort @schemes;
  my $selected = $vars{'selected_scheme'};
  $sw->Label(-text => 'Select Scheme')->pack;
  my $f2 = $sw->Frame;
  my $f2l = $f2->Frame;
  my $f2r = $f2->Frame;
  my $nrfh = $#schemes / 2;
  my $i = 0;
  foreach my $scheme (@schemes) {
    my $tlpobj = $tlpdb->get_package("$scheme");
    if ($i < $nrfh) {
      $f2l->Radiobutton(-variable => \$selected, -value => $scheme,
        -text => $tlpobj->shortdesc)->pack(-anchor => 'w');
    } else {
      $f2r->Radiobutton(-variable => \$selected, -value => $scheme,
        -text => $tlpobj->shortdesc)->pack(-anchor => 'w');
    }
    $i++;
  }
  $f2l->pack(-side => 'left');
  $f2r->pack(-side => 'right');
  $f2->pack;
  my $f3 = $sw->Frame;
  $f3->Button(-text => "Return", 
     -command => sub { callback_select_scheme($selected) ; $sw->destroy })->pack(-side => 'left');
  $f3->Button(-text => "Cancel", 
     -command => sub { $sw->destroy })->pack(-side => 'right');
  $f3->pack(-expand => 'x');
}

sub menu_select_standard_collections {
  my $sw = $mw->Toplevel;
  my $fb = $sw->Frame;
  my $fc = $sw->Frame;
  my $fd = $sw->Frame;
  my $f1 = $fb->Frame;
  my $f2 = $fb->Frame;
  my %lvars = %vars;
  $sw->Label(-text => 'Select the collections to be installed')->pack;
  my $halfcol = $#collections_std / 2;
  my $i = 0;
  foreach my $coll (sort @collections_std) {
    my $tlpobj = $tlpdb->get_package("$coll");
    if ($i < $halfcol) {
      $f1->Checkbutton(-variable => \$lvars{$coll}, -text => $tlpobj->shortdesc)->pack(-anchor => 'w');
    } else {
      $f2->Checkbutton(-variable => \$lvars{$coll}, -text => $tlpobj->shortdesc)->pack(-anchor => 'w');
    }
    $i++;
  }
  $f1->pack(-side => 'left');
  $f2->pack(-side => 'right');
  $fb->pack;
  $fd->pack(-expand => 'x');
  $fd->Button(-text => "Select all",
    -command => sub { select_collections(\%lvars, @collections_std) })->pack(-side => 'left');
  $fd->Button(-text => "Deselect all",
    -command => sub { deselect_collections(\%lvars, @collections_std) })->pack(-side => 'right');
  $fc->pack(-expand => 'x');
  $fc->Button(-text => "Return", 
     -command => sub { %vars = %lvars; callback_select_collection() ; $sw->destroy })->pack(-side => 'left');
  $fc->Button(-text => "Cancel", 
     -command => sub { $sw->destroy })->pack(-side => 'right');
}

sub menu_select_lang_collections {
  my $sw = $mw->Toplevel;
  my $f1 = $sw->Frame;
  $f1->pack;
  my $f1lang = $f1->Frame;
  my $f1doc  = $f1->Frame;
  $f1lang->pack(-side => 'left');
  $f1doc->pack(-side => 'right');
  my $f1langT = $f1lang->Frame; $f1langT->pack;
  my $f1langL = $f1lang->Frame; $f1langL->pack;
  $f1langT->Label(-text => 'Language Selection')->pack;
  my $f1langLa = $f1langL->Frame; $f1langLa->pack(-side => 'left');
  my $f1langLb = $f1langL->Frame; $f1langLb->pack(-side => 'right');
  my $langh = $#collections_lang / 2;
  my $i = 0;
  my %lvars = %vars;
  foreach my $coll (sort @collections_lang) {
    my $tlpobj = $tlpdb->get_package("$coll");
    if ($i < $langh) {
      $f1langLa->Checkbutton(-variable => \$lvars{$coll}, -text => $tlpobj->shortdesc)->pack(-anchor => 'w');
    } else {
      $f1langLb->Checkbutton(-variable => \$lvars{$coll}, -text => $tlpobj->shortdesc)->pack(-anchor => 'w');
    }
    $i++;
  }
  my $f1langB = $f1lang->Frame;
  $f1langB->pack(-expand => 'x');
  $f1langB->Button(-text => "Select all",
    -command => sub { select_collections(\%lvars, @collections_lang) })->pack(-side => 'left');
  $f1langB->Button(-text => "Deselect all",
    -command => sub { deselect_collections(\%lvars, @collections_lang) })->pack(-side => 'right');
  
  my $f1docT = $f1doc->Frame; $f1docT->pack;
  my $f1docL = $f1doc->Frame; $f1docL->pack;
  $f1docT->Label(-text => 'Doc/Language Selection')->pack;
  my $f1docLa = $f1docL->Frame; $f1docLa->pack(-side => 'left');
  my $f1docLb = $f1docL->Frame; $f1docLb->pack(-side => 'right');
  my $doch = $#collections_lang_doc / 2;
  $i = 0;
  foreach my $coll (sort @collections_lang_doc) {
    my $tlpobj = $tlpdb->get_package("$coll");
    if ($i < $doch) {
      $f1docLa->Checkbutton(-variable => \$lvars{$coll}, -text => $tlpobj->shortdesc)->pack(-anchor => 'w');
    } else {
      $f1docLb->Checkbutton(-variable => \$lvars{$coll}, -text => $tlpobj->shortdesc)->pack(-anchor => 'w');
    }
    $i++;
  }
  my $f1docB = $f1doc->Frame;
  $f1docB->pack(-expand => 'x');
  $f1docB->Button(-text => "Select all",
    -command => sub { select_collections(\%lvars, @collections_lang_doc) })->pack(-side => 'left');
  $f1docB->Button(-text => "Deselect all",
    -command => sub { deselect_collections(\%lvars, @collections_lang_doc) })->pack(-side => 'right');
  my $f2 = $sw->Frame; $f2->pack(-expand => 'x');
  $f2->Button(-text => "Return", 
     -command => sub { %vars = %lvars; callback_select_collection() ; $sw->destroy })->pack(-side => 'left');
  $f2->Button(-text => "Cancel", 
     -command => sub { $sw->destroy })->pack(-side => 'right');
}

sub menu_select_symlink {
  our ($lbin,$lman,$linfo);
  our $osym = $vars{'option_symlinks'};
  sub set_unset_buttons {
    $lbin = ($osym ? $vars{'sys_bin'} : '');
    $linfo = ($osym ? $vars{'sys_info'} : '');
    $lman = ($osym ? $vars{'sys_man'} : '');
  }
  sub return_callback {
    if ($osym) {
      $vars{'sys_bin'} = $lbin;
      $vars{'sys_info'} = $linfo;
      $vars{'sys_man'} = $lman;
    } 
    $vars{'option_symlinks'} = $osym;
    menu_update_texts();
  }
  set_unset_buttons();
  my $sw = $mw->Toplevel;
  $sw->Checkbutton(-variable => \$osym, 
                   -text => 'create symlinks in standard directories',
		   -command => sub { set_unset_buttons(); } )->pack;
  my $fbin = $sw->Frame;
  $fbin->Label(-text => 'binaries to: ')->pack(-side => 'left');
  my $binb = $fbin->Entry(-textvariable => \$lbin, -width => 30);
  $binb->pack(-side => 'right');
  $fbin->pack(-expand => 'x');
  my $fman = $sw->Frame;
  $fman->Label(-text => 'manpages to: ')->pack(-side => 'left');
  my $manb = $fman->Entry(-textvariable => \$lman, -width => 30);
  $manb->pack(-side => 'right');
  $fman->pack(-expand => 'x');
  my $finfo = $sw->Frame;
  $finfo->Label(-text => 'info to: ')->pack(-side => 'left');
  my $infob = $finfo->Entry(-textvariable => \$linfo, -width => 30);
  $infob->pack(-side => 'right');
  $finfo->pack(-expand => 'x');
  my $f2 = $sw->Frame; $f2->pack(-expand => 'x');
  $f2->Button(-text => "Return", 
     -command => sub { return_callback(); $sw->destroy })->pack(-side => 'left');
  $f2->Button(-text => "Cancel", 
     -command => sub { $sw->destroy })->pack(-side => 'right');
}

sub menu_select_binsystems {
  our $f2r;
  our $f2;
  our @netarchs = ();
  sub update_net_archs() {
    my $oldnrnetarch = $#netarchs;
    $trynet = 1;
    set_platforms_supported();
    $trynet=0;
    @netarchs = ();
    foreach my $key (keys %vars) {
      if ($key=~/netbin_(.*)/) {
        push @netarchs, $1;
	$from_net{"$1"}=1;
      }
    }
    menu_update_texts();
    if ($#netarchs != $oldnrnetarch) {
      # we have to destroy the old $f2r frame and make a new one
      $f2r->destroy;
      do_net_frame();
    }
  }
  sub do_net_frame {
    $f2r = $f2->Frame;
    if ($#netarchs >= 0) {
      $f2r->Label(-text => 'On Net')->pack;
      foreach my $sys (sort @netarchs) {
        $f2r->Checkbutton(-variable => \$vars{"netbin_$sys"}, -text => "$sys")->pack(-anchor => 'w');
      }
      $f2r->pack(-side => 'right');
    }
    $f2->pack;
  }
  my $sw = $mw->Toplevel;
  my @diskarchs = ();
  foreach my $key (keys %vars) {
    if ($key=~/diskbin_(.*)/) {
      push @diskarchs, $1;
      $from_net{"$1"}=0;
    }
    if ($key=~/netbin_(.*)/) {
      push @netarchs, $1;
      $from_net{"$1"}=1;
    }
  }
  $sw->Label(-text => 'Select arch/os')->pack;
  $f2 = $sw->Frame;
  my $f2l = $f2->Frame;
  $f2l->Label(-text => 'On Disk')->pack;
  foreach my $sys (sort @diskarchs) {
    $f2l->Checkbutton(-variable => \$vars{"diskbin_$sys"}, -text => platform_desc($sys))->pack(-anchor => 'w');
  }
  $f2l->pack(-side => 'left');
  do_net_frame();
  my $f4 = $sw->Frame;
  $f4->pack;
  $f4->Button(-text => 'Click for net bins',
              -command => sub { update_net_archs(); })->pack;
  my $f3 = $sw->Frame;
  $f3->Button(-text => "Return", 
     -command => sub { callback_select_systems() ; $sw->destroy })->pack(-side => 'left');
  $f3->Button(-text => "Cancel", 
     -command => sub { $sw->destroy })->pack(-side => 'right');
  $f3->pack(-expand => 'x');
}


sub menu_set_text {
  my $w = shift;
  my $t = shift;
  $w->configure(-text => $t);
}

sub menu_set_symlink_text {
  menu_set_text($symlinktext, "Install symlinks: " . (($vars{'option_symlinks'})?"Yes":"No"));
}

sub menu_set_schemebutton_text {
  menu_set_text($schemebutton, "Selected Scheme: $vars{'selected_scheme'}");
}

sub menu_set_binbutton_text {
  menu_set_text($bintextbutton, "Binary Systems $vars{'n_systems_selected'} out of $vars{'n_systems_available'}");
}

sub menu_set_collections_text {
  menu_set_text($collectionstext, "$vars{'n_collections_selected'} collections out of $vars{'n_collections_available'}, disk space required: $vars{'total_size'} MB");
}

sub menu_set_pathes_text {
  menu_set_text($texdirtext, "TEXDIR (The main TeX directory): $vars{'TEXDIR'}");
  menu_set_text($texmflocaltext, "TEXMFLOCAL (Directory for local styles etc): $vars{'TEXMFLOCAL'}");
  menu_set_text($texmfsysvartext, "TEXMFSYSVAR (Directory for local config): $vars{'TEXMFSYSVAR'}");
}


sub menu_update_texts {
  menu_set_pathes_text;
  menu_set_collections_text;
  menu_set_binbutton_text;
  menu_set_schemebutton_text;
  if (unix()) { menu_set_symlink_text; };
}

sub callback_select_scheme {
  my $s = shift;
  select_scheme($s);
  menu_update_texts();
}

sub callback_select_collection {
  calc_depends();
  update_numbers();
  menu_update_texts();
}

sub callback_select_systems() {
  calc_depends();
  update_numbers();
  menu_update_texts();
}

sub callback_edit_directories {
  my ($key,$val) = @_;
  $vars{$key} = $val;
  if ($vars{'TEXDIR'}=~/^(.*)\/$texlive_release$/) {
    $vars{'TEXMFLOCAL'}="$1/texmf-local";
    $vars{'TEXMFSYSVAR'}="$1/$texlive_release/texmf-var";
  } elsif ($vars{'TEXDIR'}=~/^(.*)$/) {
    $vars{'TEXMFLOCAL'}="$1/texmf-local";
    $vars{'TEXMFSYSVAR'}="$1/texmf-var";
  }
  menu_update_texts();
}

sub  callback_edit_var() {
  my ($key,$val) = @_;
  $vars{$key} = $val;
  menu_update_texts();
}

sub dump_vars_stdout {
  foreach my $k (keys %vars) {
    print "DEBUG: vars{$k} = $vars{$k}\n";
  }
}

sub select_collections {
  my $varref = shift;
  foreach (@_) {
    $varref->{$_} = 1;
  }
}

sub deselect_collections {
  my $varref = shift;
  foreach (@_) {
    $varref->{$_} = 0;
  }
}

1;

__END__

### Local Variables:
### perl-indent-level: 2
### tab-width: 2
### indent-tabs-mode: nil
### End:
# vim:set tabstop=2 expandtab: #