summaryrefslogtreecommitdiff
path: root/Master
diff options
context:
space:
mode:
authorNorbert Preining <preining@logic.at>2008-01-09 17:14:02 +0000
committerNorbert Preining <preining@logic.at>2008-01-09 17:14:02 +0000
commit9bb0a075a019fc48e095cd6dc64225ff9b93a8eb (patch)
tree1e71c65a0ed20c1fc6259419c369c085ce4046bb /Master
parent4c5acf01576b01eff73c27e0512f0cc10ecd74d7 (diff)
add more options
git-svn-id: svn://tug.org/texlive/trunk@6168 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master')
-rw-r--r--Master/tlpkg/TeXLive/install-menu-perltk.pl11
1 files changed, 11 insertions, 0 deletions
diff --git a/Master/tlpkg/TeXLive/install-menu-perltk.pl b/Master/tlpkg/TeXLive/install-menu-perltk.pl
index 529d2c7a052..47e26fbbf1a 100644
--- a/Master/tlpkg/TeXLive/install-menu-perltk.pl
+++ b/Master/tlpkg/TeXLive/install-menu-perltk.pl
@@ -8,6 +8,12 @@
#
# This file WILL implements the text based menu system for the TeX Live installer.
#
+#
+# MISSING SUPPORT FOR:
+# - symlinks settings
+# - update systems from net
+# - language specific documentation
+# - TEXMFHOME ???
our %vars;
our $tlpdb;
@@ -72,6 +78,11 @@ sub run_menu {
$texdirtext->pack;
$texmflocaltext->pack;
$texmfsysvartext->pack;
+ $mw->Checkbutton(-variable => \$vars{'option_letter'}, -text => "use letter size instead of A4 by default")->pack;
+ $mw->Checkbutton(-variable => \$vars{'option_fmt'}, -text => "create all format files")->pack;
+ $mw->Checkbutton(-variable => \$vars{'option_doc'}, -text => "install font/macro doc tree")->pack;
+ $mw->Checkbutton(-variable => \$vars{'option_src'}, -text => "install font/macro source tree")->pack;
+
$mw->Button(
-text => 'Go!',
-command => sub { $return = $MENU_INSTALL; $mw->destroy },