home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 5 / FreshFish_July-August1994.bin / gnu / contents < prev    next >
Text File  |  1994-07-16  |  36KB  |  913 lines

  1. This file is generated automatically from the product info files
  2. included in this tree.
  3.  
  4. ==========
  5.  
  6. APlusPlus    1.01    C++ class library for AmigaDOS functions
  7.  
  8. The A++ Library is a library written in C++ that consists of classes
  9. assigned to the task of encapsulating the Amiga® system software.  Its
  10. aim is to provide a stable and effective method of programming the
  11. Amiga®. That should include Exec, Dos, Intuition, ARexx, ..just
  12. everything that makes sense being encapsulated with a proper C++ class
  13. interface.
  14.  
  15. The A++ Library collects the hundreds of system functions, groups them
  16. into classes that 'know' about the specialities of each function and
  17. thus shields the programmer from using them incorrectly.  The C++
  18. programming language provides the object oriented paradigm that holds
  19. no limitations to evolution of existing solutions.
  20.  
  21. The contents of this archive do not represent a complete and ready to
  22. use tool but the expression of an idea showing promise. It gives only
  23. a slight impression of what is possible. But much more can be done.
  24.  
  25. Author: Armin Vogt
  26. Path: src/amiga/APlusPlus-1.01/
  27.  
  28. ==========
  29.  
  30. autoconf    1.11    GNU automatic configuration generator.
  31.  
  32. Autoconf is an extensible package of m4 macros that produce shell
  33. scripts to automatically configure software source code packages.
  34. These scripts can adapt the packages to many kinds of UNIX-like
  35. systems without manual user intervention.  Autoconf creates a
  36. configuration script for a package from a template file that lists the
  37. operating system features that the package can use, in the form of m4
  38. macro calls.
  39.  
  40. Autoconf requires GNU m4.  The configuration scripts produced by
  41. Autoconf are independent of Autoconf when they are run, so their users
  42. do not need to have Autoconf (or GNU m4).
  43.  
  44. Author: Free Software Foundation
  45. Path: src/amiga/autoconf-1.11/
  46.  
  47. ==========
  48.  
  49. bc    1.02    GNU arbitrary precision calculator lang.
  50.  
  51. A language that supports arbitrary precision numbers with interactive
  52. execution of statements.  There are some similarities in the syntax to
  53. the C programming language.
  54.  
  55. A standard math library is available by command line option.  If
  56. requested, the math library is defined before processing any files.
  57. bc starts by processing code from all the files listed on the command
  58. line in the order listed.  After all files have been processed, bc
  59. reads from the standard input.  All code is executed as it is read.
  60. (If a file contains a command to halt the processor, bc will never
  61. read from the standard input.)
  62.  
  63. This version of bc contains several extensions beyond traditional bc
  64. implementations and the POSIX draft standard.  Command line options
  65. can cause these extensions to print a warning or to be rejected.  This
  66. document describes the language accepted by this processor.
  67. Extensions will be identified as such.
  68.  
  69. Author: Philip A. Nelson
  70. Path: src/amiga/bc-1.02/
  71.  
  72. ==========
  73.  
  74. binutils    1.8.x    GNU binary file utilities.
  75.  
  76. Various tools for operating on object and executable files.  Includes "ld",
  77. "size", "nm", "strip", "ar", "objdump", and "ranlib".
  78.  
  79. Author: Free Software Foundation
  80. Path: src/amiga/binutils-1.8.x/
  81.  
  82. ==========
  83.  
  84. bison    1.22    GNU parser generator yacc replacement
  85.  
  86. Bison is a parser generator in the style of yacc (1).  It should be
  87. upwardly compatible with input files designed for yacc.  Input files
  88. should follow the yacc convention of ending in ".y".  Unlike yacc, the
  89. generated files do not have fixed names, but instead use the prefix of
  90. the input file.  For instance, a grammar description file named
  91. parse.y would produce the generated parser in a file named
  92. parse.tab.c, instead of yacc 's y.tab.c.
  93.  
  94. Author: Free Software Foundation
  95. Path: src/amiga/bison-1.22/
  96.  
  97. ==========
  98.  
  99. cpio    2.3    GNU utility to copy to/from archives.
  100.  
  101. Cpio copies files into or out of a cpio or tar archive, which is a
  102. file that contains other files plus information about them, such as
  103. their pathname, owner, timestamps, and access permissions.  The
  104. archive can be another file on the disk, a magnetic tape, or a pipe.
  105. Cpio has three operating modes.  In copy-out mode, cpio copies files
  106. into an archive.  It reads a list of filenames, one per line, on the
  107. standard input, and writes the archive onto the standard output.  A
  108. typical way to generate the list of filenames is with the find
  109. command; you should give find the -depth option to minimize problems
  110. with permissions on directories that are unwritable or not searchable.
  111.  
  112. In copy-in mode, cpio copies files out of an archive or lists the
  113. archive contents.  It reads the archive from the standard input.  Any
  114. non-option command line arguments are shell globbing patterns; only
  115. files in the archive whose names match one or more of those patterns
  116. are copied from the archive.  Unlike in the shell, an initial `.' in a
  117. filename does match a wildcard at the start of a pattern, and a `/' in
  118. a filename can match wildcards.  If no patterns are given, all files
  119. are extracted.
  120.  
  121. In copy-pass mode, cpio copies files from one directory tree to
  122. another, combining the copy-out and copy-in steps without actually
  123. using an archive.  It reads the list of files to copy from the
  124. standard input; the directory into which it will copy them is given as
  125. a non-option argument.
  126.  
  127. Cpio supports the following archive formats: binary, old ASCII, new
  128. ASCII, crc, HPUX binary, HPUX old ASCII, old tar, and POSIX.1 tar.
  129. The binary format is obsolete because it encodes information about the
  130. files in a way that is not portable between different machine
  131. architectures.  The old ASCII format is portable between different
  132. machine architectures, but should not be used on file systems with
  133. more than 65536 i-nodes.  The new ASCII format is portable between
  134. different machine architectures and can be used on any size file
  135. system, but is not supported by all versions of cpio; currently, it is
  136. only supported by GNU and Unix System V R4.  The crc format is like
  137. the new ASCII format, but also contains a checksum for each file which
  138. cpio calculates when creating an archive and verifies when the file is
  139. extracted from the archive.  The HPUX formats are provided for
  140. compatibility with HPUX's cpio which stores device files differently.
  141.  
  142. The tar format is provided for compatability with the tar program.  It
  143. can not be used to archive files with names longer than 100
  144. characters, and can not be used to archive "special" (block or
  145. character devices) files.  The POSIX.1 tar format can not be used to
  146. archive files with names longer than 255 characters (less unless they
  147. have a "/" in just the right place).
  148.  
  149. By default, cpio creates binary format archives, for compatibility
  150. with older cpio programs.  When extracting from archives, cpio
  151. automatically recognizes which kind of archive it is reading and can
  152. read archives created on machines with a different byte-order.
  153.  
  154. Some of the options to cpio apply only to certain operating modes; see
  155. the SYNOPSIS section for a list of which options are allowed in which
  156. modes.
  157.  
  158. Author: Phil Nelson
  159. David MacKenzie
  160. John Oleynick
  161. Path: src/amiga/cpio-2.3/
  162.  
  163. ==========
  164.  
  165. dc    0.2    GNU reverse-polish (RPN) desk calculator
  166.  
  167. DC is a reverse-polish desk calculator which supports unlimited
  168. precision arithmetic.  It also allows you to define and call macros.
  169. Normally DC reads from the standard input; if any command arguments
  170. are given to it, they are filenames, and DC reads and executes the
  171. contents of the files before reading from standard input.  All output
  172. is to standard output.
  173.  
  174. Author: Free Software Foundation
  175. Path: src/amiga/dc-0.2/
  176.  
  177. ==========
  178.  
  179. diffutils    2.6    GNU diff, diff3, sdiff and cmp utilities
  180.  
  181. This directory contains the GNU diff, diff3, sdiff, and cmp utilities.
  182. Their features are a superset of the Unix features and they are
  183. significantly faster.  cmp has been moved here from the GNU textutils.
  184.  
  185. Computer users often find occasion to ask how two files differ.
  186. Perhaps one file is a newer version of the other file.  Or maybe the
  187. two files started out as identical copies but were changed by
  188. different people.
  189.  
  190. You can use the diff command to show differences between two files, or
  191. each corresponding file in two directories.  diff outputs differences
  192. between files line by lin