From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on inbox.vuxu.org X-Spam-Level: X-Spam-Status: No, score=-1.0 required=5.0 tests=MAILING_LIST_MULTI, RCVD_IN_DNSWL_NONE autolearn=ham autolearn_force=no version=3.4.2 Received: from primenet.com.au (ns1.primenet.com.au [203.24.36.2]) by inbox.vuxu.org (OpenSMTPD) with ESMTP id e8f7c202 for ; Mon, 7 Jan 2019 04:08:13 +0000 (UTC) Received: (qmail 5979 invoked by alias); 7 Jan 2019 04:07:58 -0000 Mailing-List: contact zsh-workers-help@zsh.org; run by ezmlm Precedence: bulk X-No-Archive: yes List-Id: Zsh Workers List List-Post: List-Help: List-Unsubscribe: X-Seq: 43986 Received: (qmail 13619 invoked by uid 1010); 7 Jan 2019 04:07:58 -0000 X-Qmail-Scanner-Diagnostics: from rcpt-mqugw.biglobe.ne.jp by f.primenet.com.au (envelope-from , uid 7791) with qmail-scanner-2.11 (clamdscan: 0.100.2/25112. spamassassin: 3.4.2. Clear:RC:0(133.208.100.3):SA:0(-2.6/5.0):. Processed in 3.615977 secs); 07 Jan 2019 04:07:58 -0000 X-Envelope-From: takimoto-j@kba.biglobe.ne.jp X-Qmail-Scanner-Mime-Attachments: | X-Qmail-Scanner-Zip-Files: | X-Biglobe-Sender: From: Jun T Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable Mime-Version: 1.0 (Mac OS X Mail 12.2 \(3445.102.3\)) Subject: Re: Test release: 5.6.2-test-3 Date: Mon, 7 Jan 2019 12:25:01 +0900 References: <23D0A1E5-8D90-4826-BD35-19B9286F4380@kba.biglobe.ne.jp> <20457BFF-83B5-4DF5-AB6D-A90E80DDBED9@dana.is> To: zsh-workers@zsh.org In-Reply-To: <20457BFF-83B5-4DF5-AB6D-A90E80DDBED9@dana.is> Message-Id: X-Mailer: Apple Mail (2.3445.102.3) X-Biglobe-Spnum: 53941 > 2019/01/07 1:37, dana wrote: >=20 > For the PDF, i needed TeX, which the normal Homebrew repo also doesn't = have i > guess because it's similarly complicated to build on macOS. Homebrew = Cask has > the MacTeX distribution, but the full thing is over 3 GiB, which is = silly. I > found the 'basic' distribution, though, and then i needed to manually = install > the texinfo thing for it, and after all that i thought i'd be OK, but > apparently TeX needs X11 to generate the PDF for some reason (font = stuff, i > assume). I'm using the binary distribution from http://www.tug.org/mactex/ (MacTeX.pkg, 3.2GB) and it works fine. It also includes gs (ghostscript) and ps2pdf. Of course X11 is NOT required. # I haven't tried the BasicTeX.pkg and don't know whether it works or = not. Can you create PDF from a simple LaTeX source by pdflatex command? > 2019/01/07 6:34, Daniel Tameling wrote: >=20 > I have both, TeX and X11, installed but stilled failed to build the > entire documentation because roff2ps is missing. So this might not be > the end for you if you want to try it again. I'm using /usr/bin/groff in place of roff2ps and it seems to work. Create a script like #!/bin/sh groff -T ps "$@" name it roff2ps, and put it somewhere in your PATH.=