From d3f1d6f9d3eb5f0d43efbe7c3214290084861d87 Mon Sep 17 00:00:00 2001 From: "Bruce A. Mah" Date: Sun, 17 Feb 2002 07:34:06 +0000 Subject: [PATCH] The French Handbook build appears to overflow limits in pdftex, at least when we build using the OpenJade toolchain. Commit the same workaround as was done for the English handbook (roughly the same change as en_US.ISO8859-1/books/handbook/Makefile 1.30->1.31). --- fr_FR.ISO8859-1/books/handbook/Makefile | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/fr_FR.ISO8859-1/books/handbook/Makefile b/fr_FR.ISO8859-1/books/handbook/Makefile index ab8e6ab827..d66906ca2c 100644 --- a/fr_FR.ISO8859-1/books/handbook/Makefile +++ b/fr_FR.ISO8859-1/books/handbook/Makefile @@ -4,7 +4,7 @@ # # Compilation du Manuel de Reference de FreeBSD # -# $FreeBSD: doc/fr_FR.ISO8859-1/books/handbook/Makefile,v 1.3 2001/06/21 03:38:28 chris Exp $ +# $FreeBSD$ # Original revision: 1.25 # @@ -61,5 +61,17 @@ SRCS+= ports/chapter.sgml # Entities SRCS+= chapters.ent +# XXX The Handbook build currently overflows some internal, hardcoded +# limits in pdftex. Until we split the Handbook up, build the PDF +# version using ps2pdf instead of pdftex. + +PS2PDF?= ${PREFIX}/bin/ps2pdf + +book.tex-pdf: + ${TOUCH} book.tex-pdf + +book.pdf: book.ps + ${PS2PDF} book.ps book.pdf + DOC_PREFIX?= ${.CURDIR}/../../.. .include "${DOC_PREFIX}/share/mk/doc.project.mk"