From owner-svn-doc-projects@FreeBSD.ORG Fri Feb 1 19:51:59 2013 Return-Path: Delivered-To: svn-doc-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 7DA35DB8; Fri, 1 Feb 2013 19:51:59 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 71A29B71; Fri, 1 Feb 2013 19:51:59 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id r11JpxCF042811; Fri, 1 Feb 2013 19:51:59 GMT (envelope-from gabor@svn.freebsd.org) Received: (from gabor@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id r11Jpx2A042809; Fri, 1 Feb 2013 19:51:59 GMT (envelope-from gabor@svn.freebsd.org) Message-Id: <201302011951.r11Jpx2A042809@svn.freebsd.org> From: Gabor Kovesdan Date: Fri, 1 Feb 2013 19:51:59 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-projects@freebsd.org Subject: svn commit: r40863 - projects/xml-tools/share/mk X-SVN-Group: doc-projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-doc-projects@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for doc projects trees List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 01 Feb 2013 19:51:59 -0000 Author: gabor Date: Fri Feb 1 19:51:58 2013 New Revision: 40863 URL: http://svnweb.freebsd.org/changeset/doc/40863 Log: - Remove some rarely used and badly supported features Modified: projects/xml-tools/share/mk/doc.docbook.mk Modified: projects/xml-tools/share/mk/doc.docbook.mk ============================================================================== --- projects/xml-tools/share/mk/doc.docbook.mk Fri Feb 1 19:50:33 2013 (r40862) +++ projects/xml-tools/share/mk/doc.docbook.mk Fri Feb 1 19:51:58 2013 (r40863) @@ -57,45 +57,6 @@ # spellchecker. For example, PGP keys and filenames # will be omitted from this output. # -# Print-output options : -# -# NICE_HEADERS If defined, customized chapter headers will be created -# that you may find more aesthetically pleasing. Note -# that this option only effects print output formats for -# English language books. -# -# MIN_SECT_LABELS If defined, do not display the section number for 4th -# and 5th level section titles. This would change -# "N.N.N.N Section title" into "Section Title" while -# higher level sections are still printed with numbers. -# -# TRACE={1,2} Trace TeX's memory usage. Set this to 1 for minimal -# tracing or 2 for maximum tracing. TeX memory -# statistics will be written out to .log. -# For more information see the TeXbook, p301. -# -# TWO_SIDE If defined, two sided output will be created. This -# means that new chapters will only start on odd -# numbered (aka right side, aka recto) pages and the -# headers and footers will be aligned appropriately -# for double sided paper. Blank pages may be added as -# needed. -# -# JUSTIFY If defined, text will be right justified so that the -# right edge is smooth. Words may be hyphenated using -# the default TeX hyphenation rules for this purpose. -# -# BOOK_OUTPUT A collection of options are set suitable for printing -# a book. This option may be an order of magnitude more -# CPU intensive than the default build. -# -# RLE Use Run-Length Encoding for EPS files, this will -# result in significantly smaller PostScript files, -# but may take longer for a printer to process. -# -# GREYSCALE_IMAGES Convert the screenshots to greyscale before -# embedding them into the PostScript output. -# # Package building options: # # BZIP2_PACKAGE Use bzip2(1) utility to compress package tarball @@ -157,38 +118,9 @@ PDFTEX_DEF?= ${DOC_PREFIX}/share/web2c/p PRINTOPTS?= -ioutput.print -d ${DSLPRINT} ${PRINTFLAGS} -.if defined(BOOK_OUTPUT) -NICE_HEADERS=1 -MIN_SECT_LABELS=1 -TWO_SIDE=1 -JUSTIFY=1 -#WITH_FOOTNOTES=1 -#GEN_INDEX=1 -.endif -.if defined(JUSTIFY) -TEX_CMDSEQ+= \RequirePackage{url} -PRINTOPTS+= -ioutput.print.justify -.endif -.if defined(TWO_SIDE) -PRINTOPTS+= -V %two-side% -ioutput.print.twoside -TEX_CMDSEQ+= \def\PageTwoSide{1} -.endif -.if defined(NICE_HEADERS) -PRINTOPTS+= -ioutput.print.niceheaders -.endif -.if defined(MIN_SECT_LABELS) -PRINTOPTS+= -V minimal-section-labels -.endif -.if defined(TRACE) -TEX_CMDSEQ+= \tracingstats=${TRACE} -.endif -.if defined(RLE) -PNMTOPSFLAGS+= -rle -.endif .if defined(WWWFREEBSDORG) HTMLFLAGS+= -V %html-header-script% .endif - .if !defined(WITH_INLINE_LEGALNOTICE) || empty(WITH_INLINE_LEGALNOTICE) HTMLFLAGS+= -V %generate-legalnotice-link% .endif