Make setthetime() static per the prototype.
[dragonfly.git] / contrib / groff / MANIFEST
1 MANIFEST 
2
3 Last update: 21 Dec 2001
4
5 This file is part of groff, the GNU roff type-setting system.
6
7 Copyright (C) 2001 Free Software Foundation, Inc.
8 written by Bernd Warken <bwarken@mayn.de>
9 maintained by Werner Lemberg <wl@gnu.org>
10
11 Permission is granted to copy, distribute and/or modify this document
12 under the terms of the GNU Free Documentation License, Version 1.1 or
13 any later version published by the Free Software Foundation; with the
14 Invariant Sections being this .ig-section and AUTHORS, with no
15 Front-Cover Texts, and with no Back-Cover Texts.
16
17 A copy of the Free Documentation License is included as a file called
18 FDL in the main directory of the groff source package.
19
20 ########################################################################
21
22 This file gives an overview of the directories and the main files of
23 the groff source distribution.
24
25
26 1) The top directory.
27
28   BUG-REPORT    A template for bug-reports.
29   ChangeLog     Log of the changes in the different groff versions.
30   COPYING       The GNU General Public License (GPL).
31   FDL           The Free Documentation License (FDL).
32   INSTALL       Information on compiling and installing groff.
33   INSTALL.gen   Generic information on configuration and compiling.
34   MANIFEST      The file you are reading.
35   MORE.STUFF    Useful stuff in other packages.
36   NEWS          Recent user-visible changes in groff.
37   PROBLEMS      Tips to handle known critical situations.
38   PROJECTS      Long-term additions to groff.
39   README        Availability and contact information for groff.
40   README.WIN32  Documentation of the Win32 port of groff.
41   TODO          Things planned for future groff versions.
42
43   All other files in the top directory are related to the configuration,
44   compilation, and install processes.  
45
46
47 2) The directory structure
48
49 ./arch          Data that is special for different architectures.
50   djgpp         Data special for the 32-bit DOS compiler djgpp.
51
52 ./contrib       Part of groff, but maintained by other people.
53   groffer       A wrapper to conveniently view roff files.
54   mm            The groff mm macro package.
55   mom           The groff mom macro package.
56   pic2graph     Convert PIC diagrams into different graphical formats.
57
58 ./doc           Manuals and tutorials to groff aspects.
59
60 ./font          Device information and fonts.
61   devX100       100dpi device for X Window System.
62   devX100-12    100dpi device with narrower font (for 12pt base font).
63   devX75        75dpi device for X Window System.
64   devX75-12     75dpi device with narrower font (for 12pt base font).
65   devascii      Text device for ASCII output.
66   devcp1047     EBCDIC device.
67   devdvi        TeX DVI device.
68   devhtml       HTML device.
69   devlatin1     Text device for latin-1 (ISO 8859-1) output.
70   devlbp        Device for Canon CAPSL laser printers.
71   devlj4        Device for HP Laserjet 4, PCL 5, and compatible printers.
72   devps         PostScript device.
73   devutf8       Text device for Unicode output.
74
75 ./man           Some groff manual pages of more general character.
76
77 ./src           Everything written in programming languages.
78
79 ./src/devices   The postprocessors.
80   grodvi        TeX DVI output.
81   grohtml       HTML output.
82   grolbp        Canon printers.
83   grolj4        HP Laserjet 4, PCL 5, and compatible printers.
84   grops         PostScript output.
85   grotty        Text output.
86
87 ./src/include   The *.h C/C++ include files.
88
89 ./src/libs      C++ code common to several parts of the groff sources.
90   libbib        Library of bibliographic functions.
91   libdriver     Parser for intermediate output and postprocessor code.
92   libgroff      Library for general support functions used everywhere.
93   snprintf      An implementation of snprintf() and friends.
94
95 ./src/preproc   Preprocessors.
96   eqn           Mathematical formulae.
97   grn           Gremlin pictures.
98   html          The preprocessor part of grohtml.
99   pic           Diagram drawer.
100   refer         Bibliographic references.
101   soelim        File inclusion using tmac path.
102   tbl           Tables.
103
104 ./src/roff      Front-end programs.
105   groff         Wrapper around troff.  This is the main user program.
106   grog          Guess groff command line options.
107   nroff         Emulate classical nroff text formatter.
108   troff         Main roff formatter program.
109
110 ./src/xditview  A groff (pre)viewer for the X Window System.
111
112 ./src/utils     Utility programs around groff.
113   addftinfo     Add information to old troff font files for use with groff.
114   afmtodit      Create font description files for the PostScript device.
115   hpftodit      Create font description files for the LJ4 device.
116   indxbib       Make inverted index for bibliographic databases.
117   lkbib         Search bibliographic databases.
118   lookbib       Interactively search bibliographic databases.
119   pfbtops       Translate a PostScript font in .pfb format to ASCII.
120   tfmtodit      Create font description files for TeX DVI device.
121
122 ./tmac          Macro files.
123
124
125 3) Documentation
126
127 The groff documentation is scattered upon several places.
128
129 - The main directory contains documents related to the groff source.
130   The README file contains the information needed to get the groff
131   package, report bugs, and contact the developers.
132
133 - The man-page of each program (section 1) is kept in the source
134   directory of the program.
135
136 - The man-pages for the other sections are found in `src/man'.
137
138 - Documentation in other formats are located in the `doc' directory,
139   including the groff info file, tutorials, and manuals.
140
141
142 4) The roff parser
143
144 The parsing of the roff language is done by troff.  The input is
145 transformed into "nodes" by `src/roff/troff/node.cc'.  From these, the
146 intermediate output is generated.
147
148
149 5) Postprocessing
150
151 The parser for the intermediate output and the postprocessing is in
152 `src/libs/libdriver/input.cc'.  This is used by all postprocessors.