summaryrefslogtreecommitdiff
path: root/support/dvispell/Win9x-ME
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 /support/dvispell/Win9x-ME
Initial commit
Diffstat (limited to 'support/dvispell/Win9x-ME')
-rw-r--r--support/dvispell/Win9x-ME/install.dvispell50
-rw-r--r--support/dvispell/Win9x-ME/install.dvistats36
-rw-r--r--support/dvispell/Win9x-ME/ortograd.bat10
-rw-r--r--support/dvispell/Win9x-ME/ortograe.bat10
-rw-r--r--support/dvispell/Win9x-ME/ortograf.bat10
-rw-r--r--support/dvispell/Win9x-ME/ortograi.bat10
-rw-r--r--support/dvispell/Win9x-ME/ortogras.bat10
-rw-r--r--support/dvispell/Win9x-ME/ortonull.bat3
8 files changed, 139 insertions, 0 deletions
diff --git a/support/dvispell/Win9x-ME/install.dvispell b/support/dvispell/Win9x-ME/install.dvispell
new file mode 100644
index 0000000000..9a96785b7b
--- /dev/null
+++ b/support/dvispell/Win9x-ME/install.dvispell
@@ -0,0 +1,50 @@
+Additional comments by Daniel TAUPIN
+taupin@lps.u-psud.fr (February 2001)
+
+Compiling DVISPELL/DVISPREP on Linux
+-----------------------------------
+ 1. "gunzip" the distribution
+ 2. tar -xf dvispell.tar
+ 3. cd dvispell # (root directory of distribution)
+ 4. ./configure
+ 5. If "configure" does not find "kpse*" items, then
+ install the kpathsea library and restart ./configure
+ 6. make
+
+ "make install" does not seem to work, then you have just to put the
+dvispell executable in the common path, such as /usr/local/bin
+
+Compiling DVISPELL/DVISPREP on MSDOS/DJGPP
+-----------------------------------------
+ 1. "gunzip" the distribution
+ 2. tar -xf dvispell.tar
+ 3. cd dvispell # (root directory of distribution)
+ 4. EDIT Makefile.in
+ 48c48
+ < $(CC) $(LDFLAGS) ext.o dvisprep.o $(LIBS) -o $@
+ ---
+ > $(CC) $(LDFLAGS) ext.o dvisprep.o -o $@
+ Enter "bash" if not already done.
+ 5. ./configure
+ 6. If "configure" does not find "kpse*" install the kpathsea library
+which can be found in
+ ftp.simtel.net/pub/simtelnet/gnu/djgpp/v2apps/tex/kpse32b.zip (binary)
+ ftp.simtel.net/pub/simtelnet/gnu/djgpp/v2apps/tex/kpse32s.zip (source)
+
+ Then perform ./configure again.
+ 7. If "configure" does not find "getopt.h" use unzip or pkunzip to extract
+getopt.h from kpse42s.zip (the source of kpatsea library)
+ 8. make
+
+
+Comments
+--------
+ DVISPELL is able to find required TFM files, either in emTeX
+distribution provided that the EMTEXDIR environment file is defined, or
+using the "kpathsea" algorithms as in teTeX/Linux distributions.
+
+ Two output conversion codes are available: pc850.dsb (source *.dsi) or
+latin1.dsb (source *.dsi). Depending on the system (UNIX or MSDOS),
+either latin1.dsb or pc850.dsb should be copied as plain.dsb, the
+default database for DVISPELL.
+
diff --git a/support/dvispell/Win9x-ME/install.dvistats b/support/dvispell/Win9x-ME/install.dvistats
new file mode 100644
index 0000000000..5949e66fcc
--- /dev/null
+++ b/support/dvispell/Win9x-ME/install.dvistats
@@ -0,0 +1,36 @@
+Comments by Daniel TAUPIN
+taupin@lps.u-psud.fr (October 2001)
+
+Compiling DVISTATS on Linux
+-----------------------------------
+ 1. "gunzip" the distribution
+ 2. tar -xf dvispell.tar
+ 3. cd dvispell # (root directory of distribution)
+ 4. ./configure
+ 5. If "configure" does not find "kpse*" items, then
+ install the kpathsea library and restart ./configure
+ 6. make
+
+ "make install" does not seem to work, then you have just to put the
+dvispell executable in the common path, such as /usr/local/bin
+
+Compiling DVISTATS on MSDOS/DJGPP
+-----------------------------------------
+ 1. "gunzip" the distribution
+ 2. tar -xf dvistats.tar
+ 3. cd dvistats # (root directory of distribution)
+ 4. make
+
+Installing DVISTATS on MSDOS/DJGPP
+-----------------------------------------
+ 1. Copy dvistats.exe somewhere in your PATH
+ 2. Choose a root directory for the dictionaries (e.g. d:\emtex\dvispell) and
+ set current directory to it.
+ 3. "unzip" (or "pkunzip -d") the various dictionaries (french.zip, english.zip,
+ deutsch.zip, italian.zip and spanish.zip).
+ 4. Edit/rename the batch procedures ortogra*.bat to specify the convenient
+ paths to parameter files.
+
+ Then, for example, "ortograf texte.dvi" will generate the list of
+unknown french words in "texte.dvi".
+
diff --git a/support/dvispell/Win9x-ME/ortograd.bat b/support/dvispell/Win9x-ME/ortograd.bat
new file mode 100644
index 0000000000..5e58b32e24
--- /dev/null
+++ b/support/dvispell/Win9x-ME/ortograd.bat
@@ -0,0 +1,10 @@
+dvispell -c hyphen -l -d d:/emtex/data/pc850.dsb -n -v %1.dvi %1.txt
+dvistatc -v -ldeutsch -dd:/emtex/dvispell -fdeutsch.dic -aabbrev.dic %1.txt %2 %3 %4 %5 %6 %7 %8 %9
+if exist c:\c\bin\prt.exe goto prt
+echo Result is in %1.wls
+goto end
+:prt
+ pause
+ prt.exe %1.wls
+ del %1.wls
+:end
diff --git a/support/dvispell/Win9x-ME/ortograe.bat b/support/dvispell/Win9x-ME/ortograe.bat
new file mode 100644
index 0000000000..0d671f324c
--- /dev/null
+++ b/support/dvispell/Win9x-ME/ortograe.bat
@@ -0,0 +1,10 @@
+dvispell -c hyphen -l -d d:/emtex/data/pc850.dsb -n -v %1.dvi %1.txt
+dvistatc -v -lenglish -dd:/emtex/dvispell -fenglish.dic -aabbrev.dic %1.txt %2 %3 %4 %5 %6 %7 %8 %9
+if exist c:\c\bin\prt.exe goto prt
+echo Result is in %1.wls
+goto end
+:prt
+ pause
+ prt.exe %1.wls
+ del %1.wls
+:end
diff --git a/support/dvispell/Win9x-ME/ortograf.bat b/support/dvispell/Win9x-ME/ortograf.bat
new file mode 100644
index 0000000000..0e578bf639
--- /dev/null
+++ b/support/dvispell/Win9x-ME/ortograf.bat
@@ -0,0 +1,10 @@
+dvispell -c hyphen -l -d d:/emtex/data/pc850.dsb -n -v %1.dvi %1.txt
+dvistatc -v -lfrench -dd:/emtex/dvispell -ffrench.dic -aabbrev.dic %1.txt %2 %3 %4 %5 %6 %7 %8 %9
+if exist c:\c\bin\prt.exe goto prt
+echo Result is in %1.wls
+goto end
+:prt
+ pause
+ prt.exe %1.wls
+ del %1.wls
+:end
diff --git a/support/dvispell/Win9x-ME/ortograi.bat b/support/dvispell/Win9x-ME/ortograi.bat
new file mode 100644
index 0000000000..68f5b52ae4
--- /dev/null
+++ b/support/dvispell/Win9x-ME/ortograi.bat
@@ -0,0 +1,10 @@
+dvispell -c hyphen -l -d d:/emtex/data/pc850.dsb -n -v %1.dvi %1.txt
+dvistatc -v -litalian -dd:/emtex/dvispell -fitalian.dic -aabbrev.dic %1.txt %2 %3 %4 %5 %6 %7 %8 %9
+if exist c:\c\bin\prt.exe goto prt
+echo Result is in %1.wls
+goto end
+:prt
+ pause
+ prt.exe %1.wls
+ del %1.wls
+:end
diff --git a/support/dvispell/Win9x-ME/ortogras.bat b/support/dvispell/Win9x-ME/ortogras.bat
new file mode 100644
index 0000000000..a1c23c9c38
--- /dev/null
+++ b/support/dvispell/Win9x-ME/ortogras.bat
@@ -0,0 +1,10 @@
+dvispell -c hyphen -l -d d:/emtex/data/pc850.dsb -n -v %1.dvi %1.txt
+dvistatc -v -lspanish -dd:/emtex/dvispell -fspanish.dic -aabbrev.dic %1.txt %2 %3 %4 %5 %6 %7 %8 %9
+if exist c:\c\bin\prt.exe goto prt
+echo Result is in %1.wls
+goto end
+:prt
+ pause
+ prt.exe %1.wls
+ del %1.wls
+:end
diff --git a/support/dvispell/Win9x-ME/ortonull.bat b/support/dvispell/Win9x-ME/ortonull.bat
new file mode 100644
index 0000000000..522360b00e
--- /dev/null
+++ b/support/dvispell/Win9x-ME/ortonull.bat
@@ -0,0 +1,3 @@
+dvispell -c hyphen -l -d d:/emtex/data/pc850.dsb -n -v %1.dvi %1.txt
+dvistatc -lempty -dd:\emtex\dvispell -fempty.dic %1.txt %2 %3 %4 %5 %6 %7 %8 %9
+