30590: Work around problem turning intro.ms into PDF

This commit is contained in:
Peter Stephenson 2012-07-27 18:43:17 +00:00
parent 977d812b47
commit 494444b90a
3 changed files with 14 additions and 5 deletions

View file

@ -1,5 +1,8 @@
2012-07-27 Peter Stephenson <p.w.stephenson@ntlworld.com>
* 30590: Doc/Makefile.in, Doc/.distfiles: work around problem
turning intro.ms into PDF.
* unposted: relabel as 5.0.0-dev-0.
2012-07-23 Geoff Wing <gcw@zsh.org>
@ -16464,5 +16467,5 @@
*****************************************************
* This is used by the shell to define $ZSH_PATCHLEVEL
* $Revision: 1.5683 $
* $Revision: 1.5684 $
*****************************************************

View file

@ -18,5 +18,5 @@ DISTFILES_DOC='
*.html
zsh.dvi
zsh.pdf
intro.pdf
intro.a4.pdf intro.us.pdf
'

View file

@ -94,7 +94,7 @@ dvi: zsh.dvi
zsh.dvi: $(sdir)/zsh.texi
$(TEXI2DVI) $(sdir)/zsh.texi
pdf: zsh.pdf intro.pdf
pdf: zsh.pdf intro.a4.pdf intro.us.pdf
.PHONY: pdf
zsh.pdf: $(sdir)/zsh.texi
@ -104,8 +104,14 @@ zsh.pdf: $(sdir)/zsh.texi
PDFTEX=$(PDFETEX) $(TEXI2DVI) --pdf $(sdir)/zsh.texi; \
fi
intro.pdf: $(sdir)/intro.ms
pdfroff -ms $(sdir)/intro.ms >intro.pdf
# Use roff2ps / ps2pdf because pdfroff produces doubled output.
intro.a4.pdf: $(sdir)/intro.ms
roff2ps -ms -P-pa4 < $(sdir)/intro.ms > intro.a4.ps
ps2pdf intro.a4.ps
intro.us.pdf: $(sdir)/intro.ms
roff2ps -ms -P-pletter < $(sdir)/intro.ms > intro.us.ps
ps2pdf intro.us.ps
texi: $(sdir)/zsh.texi
.PHONY: texi