README.man
上传用户:xk288cn
上传日期:2007-05-28
资源大小:4876k
文件大小:3k
源码类别:

GIS编程

开发平台:

Visual C++

  1. Since GLUT 3.2, GLUT includes complete API man pages.  These man pages
  2. use the standard Unix man macros, so to be useful, they must be
  3. formatted with nroff (or psroff or groff or ditroff or troff, depending
  4. on what your system provides).  You can find the raw nroff source for
  5. the GLUT API man pages in the "man/glut subdirectory".
  6. Below are instructions that should help the SGI and non-SGI GLUT user
  7. get these man pages installed.
  8. SILICON GRAPHICS USERS
  9. -----------------------
  10. The easiest way to install the GLUT man pages on your Silicon Graphics
  11. system is to install the "glut_dev.man.glut" subsystem on your SGI
  12. workstation.  This subsystem contains pre-formatted man pages which
  13. are placed in the /usr/share/catman/p_man/cat3/GLUT subirectory.  Once
  14. installed, simply type "man glutInit" (or any other GLUT routine) to
  15. view the man pages.
  16. You _can_ build the man pages from the supplied nroff source files,
  17. but this *requires* that you have the Documenter's WorkBench (dwb)
  18. images installed or have GNU groff available.  This is why I strongly
  19. recommend saving your time and simply installing the man pages from
  20. the pre-built SGI images that accompany this GLUT source code
  21. distribution.
  22. If you must build the man pages yourself...  As supplied, the SGI
  23. Makefiles will not descend into nor build the Makefiles.  You'll need
  24. to do the following by hand:
  25.   cd man/glut
  26.   make
  27. Then, install the man pages into /usr/share/catman/p_man/cat3/GLUT by
  28. executing (assuming your have write permission):
  29.   make install
  30. Again, I strongly recommend simply installing the pre-built man pages
  31. from the "glut_dev" images.
  32. NON-SILIGON GRAPHICS USERS
  33. ---------------------------
  34. If you are not using a Silicon Graphics system, you *must* use
  35. Documeter's WorkBench or GNU groff to format the man pages.
  36. Unfortunately, man pages are formatted and installed in different ways
  37. depending on your system.  If you don't have a Silicon Graphics
  38. system, you are going to need to use imake (the X11 Makefile
  39. configuration system) to build a Makefile that should format and
  40. install the man pages appropriately.  Assuming everything is
  41. configured appropriately, things should just work.  If not, you'll
  42. need to figure out what went wrong (I won't be able to help you).
  43. To format and install (this is a single step unfortunately), run the
  44. following commands in GLUT's toplevel directory:
  45.   make SUBDIRS=man Makefiles
  46.   make SUBDIRS=man
  47.   cd man/glut
  48.   make install.man
  49. The installation assumes that you have permission to install the man
  50. pages in the appropriate destination.  If you don't want them
  51. installed in the standard location or don't have permission, try to
  52. set your DESTDIR environment variable to some directory where you want
  53. the man pages installed.  For example:
  54.   setenv DESTDIR ~/fakeroot
  55. TUBING AND EXTRUSION LIBRARY (GLE) MAN PAGES
  56. ---------------------------------------------
  57. GLUT 3.6 includes man pages (derived from Linas Vepstas's HTML
  58. documentation for GLE).  The man page source is found in the "man/gle"
  59. directory.
  60. To build the GLE man pages, follow the instuctions above, but
  61. substitute "gle" for "glut" in the commands above.
  62. - Mark Kilgard