  NLS support for other DJGPP ports.
  ==================================

  This package contains all needed files to get NLS support for the following
  DJGPP ports:
    bison-1.28 (bsn128s.zip)
    enscript-1.5.0 (ens150s.zip)
    enscript-1.6.1 (ens161s.zip)
    enscript-1.6.2 (ens162s.zip)
    fileutils-3.16 (fil316s.zip)
    fileutils-4.0 (fil40s-beta1.zip from http://www.phekda.freeserve.co.uk/richdawe/djgpp/fileutils/)
    grep-2.4 (grep24s.zip)
    id-utils-3.2 (idu32s.zip)
    make-3.79.1 (mak3791s.zip)
    recode-3.5 (rcode35s.zip)
    sed-3.02.80 (sed-3.02.80.tar.gz from ftp://alpha.gnu.org/pub/gnu/sed)
    sharutils-4.2c (shar42cs.zip)
    sh-utils-2.0i (shl20is.zip)
    sh-utils-2.0j (shl20js.zip)
    tar-1.12a (tar112as.zip)
    texinfo-4.0 (txi40s.zip)
    textutils-2.0 (txt20s.zip)

  The files needed are placed in the NLS_for_djgpp_packages tree located in the
  djgpp directory. The configuration batch files and the sed scripts of every
  package have the same name as the original ones that this ones will replace.
  If you are familiar with the original package you shall have no difficulties
  in reconfigure the package for NLS support.
  Please inspect the tree NLS_for_djgpp_packages to see what files will be
  replaced.

  To reconfigure and recompile a source package with NLS support you will need
  the following packages:
    gtxt037b.zip (binaries of GNU Gettext 0.10.37)
    licv161b.zip (binaries of GNU libiconv 1.6.1)
    fil316b.zip  (binaries of GNU Fileutils 3.16 Timestamp: 2000-05-30)
    shl112b.zip  (binaries of GNU Sh-utils 1.12  Timestamp: 2000-08-11)
    bsh204b.zip  (binaries of GNU Bash 2.04)
    djdev203.zip, gcc2953b.zip, bnu210b.zip, mak3791b.zip,
    txt20b.zip, txi40b.zip, grep24b.zip, sed302b.zip, m4-14b.zip,
    perl552b.zip and dif272b.zip

  All this packages can be found in the v2gnu directory of any Simtel.NET mirror.
  To reconfigure and recompile a source package with NLS support you **MUST**
  install the gtxt037b.zip and licv161b.zip packages **BEFORE** you reconfigure
  and recompile the packages. If the configure shell script can not find the
  libintl.a and the linintl.h files it will **REFUSE** to enable NLS support.
  NLS support will **NOT** work with any prior version of the gettext and recode
  packages. Before installing gtxt037b.zip and licv161b.zip you **MUST** deinstall
  the old packages if you ever have installed them. For this purpose use the
  provided manifest files from the old packages. Old packages means previous
  beta releases of gtxt037b.zip and licv161b.zip **AND** also previous versions
  of libiconv and gettext like libiconv 1.6 and gettext 0.10.32, etc.

  You should take care that the LANGUAGE and LANG environment variables in your
  djgpp.env file is commented out or the testsuits of the different packages 
  may not work as expected.
  When you have finished to compile, test and install the new binaries you will
  have to edit your djgpp.env file, located in the top directory of your DJGPP
  installation, adding to the global part the following line:

+LANG=xx
+LANGUAGE=xx:yy:zz

  where xx, yy and zz stand for the language code of the catalogs you want to
  use. Please note the plus sign at the beginning of the line and that the line
  must be completely flushed to the left margin. Do **NOT** omit the leading
  plus sign or a lot of shell scripts that try to reset this value will stop
  working.


  Instruccions for configuring, compiling, testing and installing of the supported packages.
  ==========================================================================================

  For all instruccion the following is valid:
  %DJDIR% stands for the top directory of your DJGPP installation.
  The source package is decompressed into the c:\src directory. Of course,
  this directory choose is completely arbitrary and can be changed by the user.


1: Bison-1.28.
   -----------
  Decompress the source package: bsn128s.zip preserving the directory structure
  running the command:
    unzip32 bsn128s.zip
  Cd into the top srcdir (bison-1.28).
  Now xcopy the needed files from the
  %DJDIR%/gnu/gtxt-010.36/djgpp/NLS_for_djgpp_packages/bison-1.28 directory
  into the top srcdir running the command:
    xcopy %DJDIR%\gnu\gxt-010.36\djgpp\NLS_for_djgpp_packages\bison-1.28 /v/s/e

  Before the package can be reconfigured, the old configuration must be cleared.
  Run the command:
    make distclean
  This step is *NOT* optional and the "distclean" option must be used. If you
  do not use the "distclean" option the config.cache file will not be deleted.
  In this case you are *NOT* reconfiguring because the configuration informa-
  tions are read from the cache file instead of being newly computed.

  Now the package can be configured running the command:
    djconfig
  This will configure the sources for NLS support.
  If you prefer to build the products in a different directory or drive than
  where the sources are located you will have to specify the srcdir path:
    c:\src\bison-1.28\djconfig c:/src/bison-1.28

  Now the package can be compiled and checked by running the commands:
    make
    make check

  Now the products can be installed by running the command:
    make install CATALOGS="xx.gmo yy.gmo"
  Replace xx and yy by the appropiate language codeof the catalogs you want to
  install. If you omit CATALOGS then all catalogs will be installed.
  You can install into a different directory if you want by specifying a prefix:
    make install prefix=z:/some/other/dir CATALOGS="xx.gmo yy.gmo zz.gmo"

  Now you must set the LANG and LANGUAGE environment variables.


2: Enscript-1.5.
   -------------
  Decompress the source package: ens150s.zip preserving the directory structure
  running the command:
    unzip32 ens150s.zip
  Cd into the top srcdir (enscript.150).
  Now xcopy the needed files from the
  %DJDIR%/gnu/gtxt-010.36/djgpp/NLS_for_djgpp_packages/enscript.150 directory
  into the top srcdir running the command:
    xcopy %DJDIR%\gnu\gxt-010.36\djgpp\NLS_for_djgpp_packages\enscript.150 /v/s/e

  Before the package can be reconfigured, the old configuration must be cleared.
  Run the command:
    make distclean
  This step is *NOT* optional and the "distclean" option must be used. If you
  do not use the "distclean" option the config.cache file will not be deleted.
  In this case you are *NOT* reconfiguring because the configuration informa-
  tions are read from the cache file instead of being newly computed.

  Now the package can be configured running the command:
    compat\configdj
  This will configure the sources for NLS support.
  If you prefer to build the products in a different directory or drive than
  where the sources are located you will have to specify the srcdir path:
    c:\src\enscript.150\compat\configdj c:/src/enscript.150

  Now the package can be compiled and checked by running the commands:
    make
    make check

  Now the products can be installed by running the command:
    make install CATALOGS="xx.gmo yy.gmo"
  Replace xx and yy by the appropiate language codeof the catalogs you want to
  install. If you omit CATALOGS then all catalogs will be installed.
  You can install into a different directory if you want by specifying a prefix:
    make install prefix=z:/some/other/dir CATALOGS="xx.gmo yy.gmo zz.gmo"

  Now you must set the LANG and LANGUAGE environment variables.


3: Enscript-1.6.1.
   -------------
  Decompress the source package: ens161s.zip preserving the directory structure
  running the command:
    unzip32 ens161s.zip
  Cd into the top srcdir (enscript.161).
  Now xcopy the needed files from the
  %DJDIR%/gnu/gtxt-010.36/djgpp/NLS_for_djgpp_packages/enscript.161 directory
  into the top srcdir running the command:
    xcopy %DJDIR%\gnu\gxt-010.36\djgpp\NLS_for_djgpp_packages\enscript.161 /v/s/e

  Before the package can be reconfigured, the old configuration must be cleared.
  Run the command:
    make distclean
  This step is *NOT* optional and the "distclean" option must be used. If you
  do not use the "distclean" option the config.cache file will not be deleted.
  In this case you are *NOT* reconfiguring because the configuration informa-
  tions are read from the cache file instead of being newly computed.

  Now the package can be configured running the command:
    djgpp\config
  This will configure the sources for NLS support.
  If you prefer to build the products in a different directory or drive than
  where the sources are located you will have to specify the srcdir path:
    c:\src\enscript.161\djgpp\config c:/src/enscript.161

  Now the package can be compiled and checked by running the commands:
    make
    make check

  Now the products can be installed by running the command:
    make install CATALOGS="xx.gmo yy.gmo"
  Replace xx and yy by the appropiate language codeof the catalogs you want to
  install. If you omit CATALOGS then all catalogs will be installed.
  You can install into a different directory if you want by specifying a prefix:
    make install prefix=z:/some/other/dir CATALOGS="xx.gmo yy.gmo zz.gmo"

  Now you must set the LANG and LANGUAGE environment variables.


4: Enscript-1.6.2.
   -------------
  Decompress the source package: ens162s.zip preserving the directory structure
  running the command:
    unzip32 ens162s.zip
  Cd into the top srcdir (enscript.162).
  Now xcopy the needed files from the
  %DJDIR%/gnu/gtxt-010.36/djgpp/NLS_for_djgpp_packages/enscript.162 directory
  into the top srcdir running the command:
    xcopy %DJDIR%\gnu\gxt-010.36\djgpp\NLS_for_djgpp_packages\enscript.162 /v/s/e

  Before the package can be reconfigured, the old configuration must be cleared.
  Run the command:
    make distclean
  This step is *NOT* optional and the "distclean" option must be used. If you
  do not use the "distclean" option the config.cache file will not be deleted.
  In this case you are *NOT* reconfiguring because the configuration informa-
  tions are read from the cache file instead of being newly computed.

  Now the package can be configured running the command:
    djgpp\config
  This will configure the sources for NLS support.
  If you prefer to build the products in a different directory or drive than
  where the sources are located you will have to specify the srcdir path:
    c:\src\enscript.162\djgpp\config c:/src/enscript.162

  Before you run the testsuite you must rename or remove the
  %DJDIR%/etc/enscript.cfg file or most of the tests will fail.
  Now the package can be compiled and checked by running the commands:
    make
    make check

  Now the products can be installed by running the command:
    make install CATALOGS="xx.gmo yy.gmo"
  Replace xx and yy by the appropiate language codeof the catalogs you want to
  install. If you omit CATALOGS then all catalogs will be installed.
  You can install into a different directory if you want by specifying a prefix:
    make install prefix=z:/some/other/dir CATALOGS="xx.gmo yy.gmo zz.gmo"

  Now you must set the LANG and LANGUAGE environment variables.


5: Fileutils-3.16.
   ---------------
  Decompress the source package: fil316s.zip preserving the directory structure
  running the command:
    unzip32 fil316s.zip
  Cd into the top srcdir (filutil3.16).
  Now xcopy the needed files from the
  %DJDIR%/gnu/gtxt-010.36/djgpp/NLS_for_djgpp_packages/filutil3.16 directory
  into the top srcdir running the command:
    xcopy %DJDIR%\gnu\gxt-010.36\djgpp\NLS_for_djgpp_packages\filutil3.16 /v/s/e

  Before the package can be reconfigured, the old configuration must be cleared.
  Run the command:
    make distclean
  This step is *NOT* optional and the "distclean" option must be used. If you
  do not use the "distclean" option the config.cache file will not be deleted.
  In this case you are *NOT* reconfiguring because the configuration informa-
  tions are read from the cache file instead of being newly computed.

  Now the package can be configured running the command:
    djgpp\config
  This will configure the sources for NLS support.
  If you prefer to build the products in a different directory or drive than
  where the sources are located you will have to specify the srcdir path:
    c:\src\filutil3.16\djgpp\config c:/src/filutil3.16

  Now the package can be compiled and checked by running the commands:
    make
    make check

  Now the products can be installed by running the command:
    make install CATALOGS="xx.gmo yy.gmo"
  Replace xx and yy by the appropiate language codeof the catalogs you want to
  install. If you omit CATALOGS then all catalogs will be installed.
  You can install into a different directory if you want by specifying a prefix:
    make install prefix=z:/some/other/dir CATALOGS="xx.gmo yy.gmo zz.gmo"

  Now you must set the LANG and LANGUAGE environment variables.


6: Fileutils-4.0.
   ---------------
  Decompress the source package: fil40s-beta1.zip preserving the directory structure
  running the command:
    unzip32 fil40s-beta1.zip
  Cd into the top srcdir (filutil4.0).
  Now xcopy the needed files from the
  %DJDIR%/gnu/gtxt-010.36/djgpp/NLS_for_djgpp_packages/filutil4.0 directory
  into the top srcdir running the command:
    xcopy %DJDIR%\gnu\gxt-010.36\djgpp\NLS_for_djgpp_packages\filutil4.0 /v/s/e

  Before the package can be reconfigured, the old configuration must be cleared.
  Run the command:
    make distclean
  This step is *NOT* optional and the "distclean" option must be used. If you
  do not use the "distclean" option the config.cache file will not be deleted.
  In this case you are *NOT* reconfiguring because the configuration informa-
  tions are read from the cache file instead of being newly computed.

  Now the package can be configured running the command:
    djgpp\config
  This will configure the sources for NLS support.
  If you prefer to build the products in a different directory or drive than
  where the sources are located you will have to specify the srcdir path:
    c:\src\filutil4.0\djgpp\config c:/src/filutil4.0

  Now the package can be compiled and checked by running the commands:
    make
    make check
  Some tests will fail. This is **NOT** a concequence of using NLS. Please
  read carefully the files djgpp/readme.dos and djgpp/readme.beta1 to understand
  why some of the tests fail.
  Now the products can be installed by running the command:
    make install CATALOGS="xx.gmo yy.gmo"
  Replace xx and yy by the appropiate language codeof the catalogs you want to
  install. If you omit CATALOGS then all catalogs will be installed.
  You can install into a different directory if you want by specifying a prefix:
    make install prefix=z:/some/other/dir CATALOGS="xx.gmo yy.gmo zz.gmo"

  Now you must set the LANG and LANGUAGE environment variables.


7: Grep-2.4.
   ---------
  Decompress the source package: grep24s.zip preserving the directory structure
  running the command:
    unzip32 grep24s.zip
  Cd into the top srcdir (grep-2.4).
  Now xcopy the needed files from the
  %DJDIR%/gnu/gtxt-010.36/djgpp/NLS_for_djgpp_packages/grep-2.4 directory
  into the top srcdir running the command:
    xcopy %DJDIR%\gnu\gxt-010.36\djgpp\NLS_for_djgpp_packages\grep-2.4 /v/s/e

  Before the package can be reconfigured, the old configuration must be cleared.
  Run the command:
    make distclean
  This step is *NOT* optional and the "distclean" option must be used. If you
  do not use the "distclean" option the config.cache file will not be deleted.
  In this case you are *NOT* reconfiguring because the configuration informa-
  tions are read from the cache file instead of being newly computed.

  Now the package can be configured running the command:
    djgpp\config
  This will configure the sources for NLS support.
  If you prefer to build the products in a different directory or drive than
  where the sources are located you will have to specify the srcdir path:
    c:\src\grep-2.4\djgpp\config c:/src/grep-2.4

  Now the package can be compiled and checked by running the commands:
    make
    make check

  Now the products can be installed by running the command:
    make install CATALOGS="xx.gmo yy.gmo"
  Replace xx and yy by the appropiate language codeof the catalogs you want to
  install. If you omit CATALOGS then all catalogs will be installed.
  You can install into a different directory if you want by specifying a prefix:
    make install prefix=z:/some/other/dir CATALOGS="xx.gmo yy.gmo zz.gmo"

  Now you must set the LANG and LANGUAGE environment variables.


8: ID-utils-3.2.
   -------------
  Decompress the source package: idu32s.zip preserving the directory structure
  running the command:
    unzip32 idu32s.zip
  Cd into the top srcdir (id-utils.32).
  Now xcopy the needed files from the
  %DJDIR%/gnu/gtxt-010.36/djgpp/NLS_for_djgpp_packages/id-utils.32 directory
  into the top srcdir running the command:
    xcopy %DJDIR%\gnu\gxt-010.36\djgpp\NLS_for_djgpp_packages\id-utils.32 /v/s/e

  Before the package can be reconfigured, the old configuration must be cleared.
  Run the command:
    make distclean
  This step is *NOT* optional and the "distclean" option must be used. If you
  do not use the "distclean" option the config.cache file will not be deleted.
  In this case you are *NOT* reconfiguring because the configuration informa-
  tions are read from the cache file instead of being newly computed.

  Now the package can be configured running the command:
    djgpp\config
  This will configure the sources for NLS support.
  If you prefer to build the products in a different directory or drive than
  where the sources are located you will have to specify the srcdir path:
    c:\src\id-utils.32\djgpp\config c:/src/id-utils.32

  Now the package can be compiled and checked by running the commands:
    make
    make check

  Now the products can be installed by running the command:
    make install CATALOGS="xx.gmo yy.gmo"
  Replace xx and yy by the appropiate language codeof the catalogs you want to
  install. If you omit CATALOGS then all catalogs will be installed.
  You can install into a different directory if you want by specifying a prefix:
    make install prefix=z:/some/other/dir CATALOGS="xx.gmo yy.gmo zz.gmo"

  Now you must set the LANG and LANGUAGE environment variables.


9: Make-3.79.1.
   ------------
  Decompress the source package: mak3791s.zip preserving the directory structure
  running the command:
    unzip32 mak3791s.zip
  Cd into the top srcdir (make-3.791).
  Now xcopy the needed files from the
  %DJDIR%/gnu/gtxt-010.36/djgpp/NLS_for_djgpp_packages/make-3.791 directory
  into the top srcdir running the command:
    xcopy %DJDIR%\gnu\gxt-010.36\djgpp\NLS_for_djgpp_packages\make-3.791 /v/s/e

  Before the package can be reconfigured, the old configuration must be cleared.
  Run the command:
    make distclean
  This step is *NOT* optional and the "distclean" option must be used. If you
  do not use the "distclean" option the config.cache file will not be deleted.
  In this case you are *NOT* reconfiguring because the configuration informa-
  tions are read from the cache file instead of being newly computed.

  Now the package can be configured running the command:
    configure
  This will configure the sources for NLS support.
  If you prefer to build the products in a different directory or drive than
  where the sources are located you will have to specify the srcdir path:
    c:\src\make-3.791\configure c:/src/make-3.791

  Now the package can be compiled and checked by running the commands:
    make
    make check

  Now the products can be installed by running the command:
    make install CATALOGS="xx.gmo yy.gmo"
  Replace xx and yy by the appropiate language codeof the catalogs you want to
  install. If you omit CATALOGS then all catalogs will be installed.
  You can install into a different directory if you want by specifying a prefix:
    make install prefix=z:/some/other/dir CATALOGS="xx.gmo yy.gmo zz.gmo"

  Now you must set the LANG and LANGUAGE environment variables.


10: Recode-3.5.
   -----------
  Decompress the source package: rcode35s.zip preserving the directory structure
  running the command:
    unzip32 rcode35s.zip
  Cd into the top srcdir (recode-3.5).
  Now xcopy the needed files from the
  %DJDIR%/gnu/gtxt-010.36/djgpp/NLS_for_djgpp_packages/recode-3.5 directory
  into the top srcdir running the command:
    xcopy %DJDIR%\gnu\gxt-010.36\djgpp\NLS_for_djgpp_packages\recode-3.5 /v/s/e

  Before the package can be reconfigured, the old configuration must be cleared.
  Run the command:
    make distclean
  This step is *NOT* optional and the "distclean" option must be used. If you
  do not use the "distclean" option the config.cache file will not be deleted.
  In this case you are *NOT* reconfiguring because the configuration informa-
  tions are read from the cache file instead of being newly computed.

  Now the package can be configured running the command:
    contrib\configdj
  This will configure the sources for NLS support.
  If you prefer to build the products in a different directory or drive than
  where the sources are located you will have to specify the srcdir path:
    c:\src\recode-3.5\contrib\configdj c:/src/recode-3.5

  Now the package can be compiled and checked by running the commands:
    make
    make check

  Now the products can be installed by running the command:
    make install CATALOGS="xx.gmo yy.gmo"
  Replace xx and yy by the appropiate language codeof the catalogs you want to
  install. If you omit CATALOGS then all catalogs will be installed.
  You can install into a different directory if you want by specifying a prefix:
    make install prefix=z:/some/other/dir CATALOGS="xx.gmo yy.gmo zz.gmo"

  Now you must set the LANG and LANGUAGE environment variables.


11: Sed-3.02.80.
    ------------
  Decompress the source package: sed-3.02.80.tar.gz preserving the directory structure
  running the command:
    djtarx sed-3.02.80.tar.gz
  Cd into the top srcdir (sed-3.02-80).
  Now xcopy the needed files from the
  %DJDIR%/gnu/gtxt-010.36/djgpp/NLS_for_djgpp_packages/sed-3.02-80 directory
  into the top srcdir running the command:
    xcopy %DJDIR%\gnu\gxt-010.36\djgpp\NLS_for_djgpp_packages\sed-3.02-80 /v/s/e

  Before the package can be reconfigured, the old configuration must be cleared.
  Run the command:
    make distclean
  This step is *NOT* optional and the "distclean" option must be used. If you
  do not use the "distclean" option the config.cache file will not be deleted.
  In this case you are *NOT* reconfiguring because the configuration informa-
  tions are read from the cache file instead of being newly computed.

  Now the package can be configured running the command:
    djgpp\config
  This will configure the sources for NLS support.
  If you prefer to build the products in a different directory or drive than
  where the sources are located you will have to specify the srcdir path:
    c:\src\sed-3.02-80\djgpp\config c:/src/sed-3.02-80

  Now the package can be compiled and checked by running the commands:
    make
    make check

  Now the products can be installed by running the command:
    make install CATALOGS="xx.gmo yy.gmo"
  Replace xx and yy by the appropiate language codeof the catalogs you want to
  install. If you omit CATALOGS then all catalogs will be installed.
  You can install into a different directory if you want by specifying a prefix:
    make install prefix=z:/some/other/dir CATALOGS="xx.gmo yy.gmo zz.gmo"

  Now you must set the LANG and LANGUAGE environment variables.


12: Sharutils-4.2c.
    ---------------
  Decompress the source package: shar42cs.zip preserving the directory structure
  running the command:
    unzip32 shar42cs.zip
  Cd into the top srcdir (sharutil.42c).
  Now xcopy the needed files from the
  %DJDIR%/gnu/gtxt-010.36/djgpp/NLS_for_djgpp_packages/sharutil.42c directory
  into the top srcdir running the command:
    xcopy %DJDIR%\gnu\gxt-010.36\djgpp\NLS_for_djgpp_packages\sharutil.42c /v/s/e

  Before the package can be reconfigured, the old configuration must be cleared.
  Run the command:
    make distclean
  This step is *NOT* optional and the "distclean" option must be used. If you
  do not use the "distclean" option the config.cache file will not be deleted.
  In this case you are *NOT* reconfiguring because the configuration informa-
  tions are read from the cache file instead of being newly computed.

  Now the package can be configured running the command:
    djgpp\config
  This will configure the sources for NLS support.
  If you prefer to build the products in a different directory or drive than
  where the sources are located you will have to specify the srcdir path:
    c:\src\sharutil.42c\djgpp\config c:/src/sharutil.42c

  Now the package can be compiled and checked by running the commands:
    make
    make check

  Now the products can be installed by running the command:
    make install CATALOGS="xx.gmo yy.gmo"
  Replace xx and yy by the appropiate language codeof the catalogs you want to
  install. If you omit CATALOGS then all catalogs will be installed.
  You can install into a different directory if you want by specifying a prefix:
    make install prefix=z:/some/other/dir CATALOGS="xx.gmo yy.gmo zz.gmo"

  Now you must set the LANG and LANGUAGE environment variables.


13: Sh-utils-2.0i.
    --------------
  Decompress the source package: shl20is.zip preserving the directory structure
  running the command:
    unzip32 shl20is.zip
  Cd into the top srcdir (sh-util2.0i).
  Now xcopy the needed files from the
  %DJDIR%/gnu/gtxt-010.36/djgpp/NLS_for_djgpp_packages/sh-util2.0i directory
  into the top srcdir running the command:
    xcopy %DJDIR%\gnu\gxt-010.36\djgpp\NLS_for_djgpp_packages\sh-util2.0i /v/s/e

  Before the package can be reconfigured, the old configuration must be cleared.
  Run the command:
    make distclean
  This step is *NOT* optional and the "distclean" option must be used. If you
  do not use the "distclean" option the config.cache file will not be deleted.
  In this case you are *NOT* reconfiguring because the configuration informa-
  tions are read from the cache file instead of being newly computed.

  Now the package can be configured running the command:
    djgpp\config
  This will configure the sources for NLS support.
  If you prefer to build the products in a different directory or drive than
  where the sources are located you will have to specify the srcdir path:
    c:\src\sh-util2.0i\djgpp\config c:/src/sh-util2.0i

  Now the package can be compiled and checked by running the commands:
    make
    make check

  Now the products can be installed by running the command:
    make install CATALOGS="xx.gmo yy.gmo"
  Replace xx and yy by the appropiate language codeof the catalogs you want to
  install. If you omit CATALOGS then all catalogs will be installed.
  You can install into a different directory if you want by specifying a prefix:
    make install prefix=z:/some/other/dir CATALOGS="xx.gmo yy.gmo zz.gmo"

  Now you must set the LANG and LANGUAGE environment variables.


14: Sh-utils-2.0j.
    --------------
  Decompress the source package: shl20is.zip preserving the directory structure
  running the command:
    unzip32 shl20is.zip
  Cd into the top srcdir (sh-util2.0j).
  Now xcopy the needed files from the
  %DJDIR%/gnu/gtxt-010.36/djgpp/NLS_for_djgpp_packages/sh-util2.0j directory
  into the top srcdir running the command:
    xcopy %DJDIR%\gnu\gxt-010.36\djgpp\NLS_for_djgpp_packages\sh-util2.0j /v/s/e

  Before the package can be reconfigured, the old configuration must be cleared.
  Run the command:
    make distclean
  This step is *NOT* optional and the "distclean" option must be used. If you
  do not use the "distclean" option the config.cache file will not be deleted.
  In this case you are *NOT* reconfiguring because the configuration informa-
  tions are read from the cache file instead of being newly computed.

  Now the package can be configured running the command:
    djgpp\config
  This will configure the sources for NLS support.
  If you prefer to build the products in a different directory or drive than
  where the sources are located you will have to specify the srcdir path:
    c:\src\sh-util2.0j\djgpp\config c:/src/sh-util2.0j

  Now the package can be compiled and checked by running the commands:
    make
    make check

  Now the products can be installed by running the command:
    make install CATALOGS="xx.gmo yy.gmo"
  Replace xx and yy by the appropiate language codeof the catalogs you want to
  install. If you omit CATALOGS then all catalogs will be installed.
  You can install into a different directory if you want by specifying a prefix:
    make install prefix=z:/some/other/dir CATALOGS="xx.gmo yy.gmo zz.gmo"

  Now you must set the LANG and LANGUAGE environment variables.


15: Tar-1.12a.
    ----------
  Decompress the source package: tar112a.zip preserving the directory structure
  running the command:
    unzip32 tar112a.zip
  Cd into the top srcdir (tar-1.12a).
  Now xcopy the needed files from the
  %DJDIR%/gnu/gtxt-010.36/djgpp/NLS_for_djgpp_packages/tar-1.12a directory
  into the top srcdir running the command:
    xcopy %DJDIR%\gnu\gxt-010.36\djgpp\NLS_for_djgpp_packages\tar-1.12a /v/s/e

  Before the package can be reconfigured, the old configuration must be cleared.
  Run the command:
    make distclean
  This step is *NOT* optional and the "distclean" option must be used. If you
  do not use the "distclean" option the config.cache file will not be deleted.
  In this case you are *NOT* reconfiguring because the configuration informa-
  tions are read from the cache file instead of being newly computed.

  Now the package can be configured running the command:
    config
  This will configure the sources for NLS support.
  If you prefer to build the products in a different directory or drive than
  where the sources are located you will have to specify the srcdir path:
    c:\src\tar-1.12a\config c:/src/tar-1.12a

  Now the package can be compiled and checked by running the commands:
    make
    make check

  Now the products can be installed by running the command:
    make install CATALOGS="xx.gmo yy.gmo"
  Replace xx and yy by the appropiate language codeof the catalogs you want to
  install. If you omit CATALOGS then all catalogs will be installed.
  You can install into a different directory if you want by specifying a prefix:
    make install prefix=z:/some/other/dir CATALOGS="xx.gmo yy.gmo zz.gmo"

  Now you must set the LANG and LANGUAGE environment variables.


16: Texinfo-4.0.
    ------------
  Decompress the source package: txi40s.zip preserving the directory structure
  running the command:
    unzip32 txi40s.zip
  Cd into the top srcdir (texinfo4.0).
  Now xcopy the needed files from the
  %DJDIR%/gnu/gtxt-010.36/djgpp/NLS_for_djgpp_packages/texinfo4.0 directory
  into the top srcdir running the command:
    xcopy %DJDIR%\gnu\gxt-010.36\djgpp\NLS_for_djgpp_packages\texinfo4.0 /v/s/e

  Before the package can be reconfigured, the old configuration must be cleared.
  Run the command:
    make distclean
  This step is *NOT* optional and the "distclean" option must be used. If you
  do not use the "distclean" option the config.cache file will not be deleted.
  In this case you are *NOT* reconfiguring because the configuration informa-
  tions are read from the cache file instead of being newly computed.

  Now the package can be configured running the command:
    djgpp\config
  This will configure the sources for NLS support.
  If you prefer to build the products in a different directory or drive than
  where the sources are located you will have to specify the srcdir path:
    c:\src\texinfo4.0\djgpp\config c:/src/texinfo4.0

  Now the package can be compiled and checked by running the commands:
    make
    make check

  Now the products can be installed by running the command:
    make install CATALOGS="xx.gmo yy.gmo"
  Replace xx and yy by the appropiate language codeof the catalogs you want to
  install. If you omit CATALOGS then all catalogs will be installed.
  You can install into a different directory if you want by specifying a prefix:
    make install prefix=z:/some/other/dir CATALOGS="xx.gmo yy.gmo zz.gmo"

  Now you must set the LANG and LANGUAGE environment variables.


17: Textutils-2.0.
    --------------
  Decompress the source package: txt20s.zip preserving the directory structure
  running the command:
    unzip32 txt20s.zip
  Cd into the top srcdir (txtutil2.0).
  Now xcopy the needed files from the
  %DJDIR%/gnu/gtxt-010.36/djgpp/NLS_for_djgpp_packages/txtutil2.0 directory
  into the top srcdir running the command:
    xcopy %DJDIR%\gnu\gxt-010.36\djgpp\NLS_for_djgpp_packages\txtutil2.0 /v/s/e

  Before the package can be reconfigured, the old configuration must be cleared.
  Run the command:
    make distclean
  This step is *NOT* optional and the "distclean" option must be used. If you
  do not use the "distclean" option the config.cache file will not be deleted.
  In this case you are *NOT* reconfiguring because the configuration informa-
  tions are read from the cache file instead of being newly computed.

  Now the package can be configured running the command:
    djgpp\config
  This will configure the sources for NLS support.
  If you prefer to build the products in a different directory or drive than
  where the sources are located you will have to specify the srcdir path:
    c:\src\txtutil2.0\djgpp\config c:/src/txtutil2.0

  Now the package can be compiled and checked by running the commands:
    make
    make check

  Now the products can be installed by running the command:
    make install CATALOGS="xx.gmo yy.gmo"
  Replace xx and yy by the appropiate language codeof the catalogs you want to
  install. If you omit CATALOGS then all catalogs will be installed.
  You can install into a different directory if you want by specifying a prefix:
    make install prefix=z:/some/other/dir CATALOGS="xx.gmo yy.gmo zz.gmo"

  Now you must set the LANG and LANGUAGE environment variables.
