summaryrefslogtreecommitdiff
path: root/obsolete/systems/os2/emtex-contrib/emtexTDS/fix008
diff options
context:
space:
mode:
authorNorbert Preining <norbert@preining.info>2019-09-02 13:46:59 +0900
committerNorbert Preining <norbert@preining.info>2019-09-02 13:46:59 +0900
commite0c6872cf40896c7be36b11dcc744620f10adf1d (patch)
tree60335e10d2f4354b0674ec22d7b53f0f8abee672 /obsolete/systems/os2/emtex-contrib/emtexTDS/fix008
Initial commit
Diffstat (limited to 'obsolete/systems/os2/emtex-contrib/emtexTDS/fix008')
-rw-r--r--obsolete/systems/os2/emtex-contrib/emtexTDS/fix008/fix008.cmd72
-rw-r--r--obsolete/systems/os2/emtex-contrib/emtexTDS/fix008/readme.1st51
2 files changed, 123 insertions, 0 deletions
diff --git a/obsolete/systems/os2/emtex-contrib/emtexTDS/fix008/fix008.cmd b/obsolete/systems/os2/emtex-contrib/emtexTDS/fix008/fix008.cmd
new file mode 100644
index 0000000000..ee99b80b25
--- /dev/null
+++ b/obsolete/systems/os2/emtex-contrib/emtexTDS/fix008/fix008.cmd
@@ -0,0 +1,72 @@
+/* REXX */
+
+/* emTeX/TDS fix # 008 installation script */
+FIXNO = "008"
+FIXVER = 0.56
+
+
+/* loading the library */
+ret = RxFuncAdd("SysLoadFuncs", "REXXUTIL", "SysLoadFuncs")
+call SysLoadFuncs
+
+/* Fixpak file name */
+fixpak = "fix" || FIXNO || ".zip"
+
+/* TeX drive */
+texdrive = substr(value("EMTEXDIR", , "OS2ENVIRONMENT"),1,1)
+if texdrive = "" then do
+ say "The environment variable EMTEXDIR is undefined,"
+ say "so I don't know what to fix."
+ say "Are you sure that you have installed emTeX/TDS ?"
+ exit
+end
+
+/* checking the version*/
+version = SysIni(texdrive||":\texmf\emtex\data\EMTEXTDS.INI", "EMTEXTDS", "VERSION")
+if version <> FIXVER then do
+ say "This fix can only be applied to emTeX/TDS, version " || FIXVER || "."
+ exit
+end
+
+/* checking existence of fixpak file */
+if stream(fixpak, "C", "QUERY EXISTS") = "" then do
+ say "I cannot find the file " || fixpak || " in the current directory!"
+ exit
+end
+
+say "Fixing emTeX/TDS on drive" texdrive || ":"
+
+/* directories */
+call setlocal
+tempdir = directory()
+call directory(texdrive||":\texmf")
+
+/* unzip fixpak */
+ret=value("UNZIP", "-qqo", "OS2ENVIRONMENT")
+"unzip " || tempdir || "\" || fixpak
+
+
+/* =============================================================== */
+
+/* delete junk files */
+call SysFileDelete("fonts\source\public\cm\cmex9.mf")
+call SysFileDelete("tex\latex\base\latexbug.msg")
+call SysFileDelete("tex\latex\base\latex.log.new")
+call SysFileDelete("doc\fonts\cm\bakoma-cm.fonts")
+"erase fonts\type1\bakoma\cm\* /N"
+"rmdir fonts\type1\bakoma\cm"
+"rmdir fonts\type1\bakoma"
+
+/* =============================================================== */
+
+call endlocal
+
+say
+call makelatex
+call makeplaintex
+call makemf
+
+say
+say "Finis!"
+
+/* finis */
diff --git a/obsolete/systems/os2/emtex-contrib/emtexTDS/fix008/readme.1st b/obsolete/systems/os2/emtex-contrib/emtexTDS/fix008/readme.1st
new file mode 100644
index 0000000000..a5e3d0c7dd
--- /dev/null
+++ b/obsolete/systems/os2/emtex-contrib/emtexTDS/fix008/readme.1st
@@ -0,0 +1,51 @@
+============================================================
+ emTeX/TDS -- fix #008 (2002-02-20)
+============================================================
+
+
+Apply to version 0.56 only !
+--------
+
+Installing this package will
+
+1) replace the obsolete/defective Metafont sources of the
+ invisible SliTeX fonts;
+
+2) update the .mf sources of the Concmath fonts, which are
+ lacking the copyright information;
+
+3) update modes.mf to version 3.5
+
+4) enhance the documentation of dvips;
+
+5) replace defective BaKoMa Type1 fonts
+ with newer fonts from the Tt2001 collection;
+
+6) update the French hyphenation patterns to v2.11;
+
+7) update the Italian hyphenation patterns to v4.8d;
+
+8) add the missing KOMA-Script bug report form (file
+ komabug.tex)
+
+9) remove a few junk files.
+
+
+Special thanks to Thomas Esser for pointing me to 1) and 2).
+
+
+Installation instructions
+-------------------------
+
+Having downloaded the files
+
+ fix008.zip
+ fix008.cmd
+
+to a temporary directory, execute the REXX script fix008.cmd
+there; doing so will also generate new format files.
+
+Please, take a look at the enhanced section 7 (dvips) of the
+manual: texmf\doc\emtextds\manual.eng and .\manual.ger.
+
+== finis