Return to BSD News archive
Newsgroups: comp.unix.bsd Path: sserve!manuel!munnari.oz.au!mips!mips!zaphod.mps.ohio-state.edu!uunet.ca!geac!alias!mark From: mark@alias.com (Mark Andrews) Subject: Re: BSD program - Window Message-ID: <1992Jul2.202824.18520@alias.com> Sender: news@alias.com (News Owner) Organization: Alias Research, Inc., Toronto ON Canada References: <l4vqm5INNd6k@west.west.sun.com> Date: Thu, 2 Jul 1992 20:28:24 GMT Lines: 52 On the question of how to format the window(1) man page, the majority (all?) of the man pages sent out with the NET/2 release have been written using a new macro package called tmac.andoc. It is on the NET/2 tape in the directory /usr/src/share/tmac and also available for anonymous ftp at ftp.uu.net in packages/bsd-sources/usr/src/share/tmac. See the README in that directory for details. In case this doesn't make sense, I also include a previous message from this group which discusses the same sort of situation: From: bostic@hermes.Berkeley.EDU (Keith Bostic) Subject: Re: tmac.doc not in BSD-net2 Message-ID: <1992Mar21.044706.6192@pasteur.Berkeley.EDU> Keywords: tmac.doc bsd net2 man pages Sender: nntp@pasteur.Berkeley.EDU (NNTP Poster) Nntp-Posting-Host: hermes.berkeley.edu Organization: University of California at Berkeley References: <1133@lysator.liu.se> Date: Sat, 21 Mar 1992 04:47:06 GMT In article <1133@lysator.liu.se> pen@lysator.liu.se (Peter Eriksson) writes: >Sigh. Anyone know when/if the "tmac.doc" nroff macro file (which should >have been in the "/usr/share/tmac" directory) will be released (or if >anyone has it)? I'm talking about the "2nd networking release" version of >the tmac.doc file... It is _very_ frustrating to build all these new nice' >programs and utilities (like the new and very much improved telnet/telnetd >pair) and _not_ being able to look/install the man pages... If you make the following change to the Makefile: vangogh:tmac [64] diff -c /nbsd/usr/src/share/tmac/Makefile Makefile *** /nbsd/usr/src/share/tmac/Makefile Tue May 7 22:02:24 1991 --- Makefile Fri Mar 20 20:29:20 1992 *************** *** 1,6 **** # @(#)Makefile 6.13 (Berkeley) 3/20/91 ! FILES= tmac.an.old tmac.r tmac.andoc tmac.doc.old MSRCS= doc doc-ditroff doc-common doc-nroff doc-syms LINKS= ${BINDIR}/tmac/tmac.andoc ${BINDIR}/tmac/tmac.an NOOBJ= noobj --- 1,7 ---- # @(#)Makefile 6.13 (Berkeley) 3/20/91 ! BINDIR=/usr/share ! FILES= tmac.andoc tmac.doc.old MSRCS= doc doc-ditroff doc-common doc-nroff doc-syms LINKS= ${BINDIR}/tmac/tmac.andoc ${BINDIR}/tmac/tmac.an NOOBJ= noobj doing a "make install" should create the tmac.doc file for you. --keith