/offlineimap/head: changeset 469
Added from rev 5
This commit is contained in:
		
							
								
								
									
										187
									
								
								offlineimap/head/docs/sgml-common/Makefile.common
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										187
									
								
								offlineimap/head/docs/sgml-common/Makefile.common
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,187 @@
 | 
				
			|||||||
 | 
					# -*- Mode: makefile; -*-
 | 
				
			||||||
 | 
					# 
 | 
				
			||||||
 | 
					# Common Makefile for SGML documents
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					# Copyright (C) 2002, 2003 John Goerzen
 | 
				
			||||||
 | 
					# <jgoerzen@complete.org>
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					#    This program is free software; you can redistribute it and/or modify
 | 
				
			||||||
 | 
					#    it under the terms of the GNU General Public License as published by
 | 
				
			||||||
 | 
					#    the Free Software Foundation; either version 2 of the License, or
 | 
				
			||||||
 | 
					#    (at your option) any later version.
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					#    This program is distributed in the hope that it will be useful,
 | 
				
			||||||
 | 
					#    but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
				
			||||||
 | 
					#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | 
				
			||||||
 | 
					#    GNU General Public License for more details.
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					#    You should have received a copy of the GNU General Public License
 | 
				
			||||||
 | 
					#    along with this program; if not, write to the Free Software
 | 
				
			||||||
 | 
					#    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					# The following variables should be set:
 | 
				
			||||||
 | 
					# MASTERBASE -- basename of master file -- example: linux-guide
 | 
				
			||||||
 | 
					# BASICDEPS -- various dependencies of the master file.  For instance,
 | 
				
			||||||
 | 
					#   this might include files included in the SGML.  It could also be empty.
 | 
				
			||||||
 | 
					# TOPNODE -- Basename of top id for HTML link.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					MASTER := $(MASTERBASE).sgml
 | 
				
			||||||
 | 
					FIGUREDIRS := $(wildcard figures/*)
 | 
				
			||||||
 | 
					DOINDEX ?= yes
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					######################################################################
 | 
				
			||||||
 | 
					# Index generation
 | 
				
			||||||
 | 
					######################################################################
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					ifeq ($(DOINDEX), yes)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					INDEXSGMLFILE := index/index.sgml
 | 
				
			||||||
 | 
					INDEXDATAFILE := index/HTML.index
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					$(INDEXSGMLFILE): $(INDEXDATAFILE)
 | 
				
			||||||
 | 
						@echo " *** Generating SGML index from index list"
 | 
				
			||||||
 | 
						collateindex.pl -i ch.index -g -o index/index.sgml index/HTML.index
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					$(INDEXDATAFILE): $(MASTER) $(BASICDEPS)
 | 
				
			||||||
 | 
					#	jade -t sgml -d docbook.dsl -V html-index $(MASTER)
 | 
				
			||||||
 | 
					#	jade -t sgml -V html-index $(MASTER)
 | 
				
			||||||
 | 
						@echo " *** Generating index list from document"
 | 
				
			||||||
 | 
						-rm -r index
 | 
				
			||||||
 | 
						mkdir index
 | 
				
			||||||
 | 
						collateindex.pl -i ch.index -N -o index/index.sgml
 | 
				
			||||||
 | 
						#mkdir html-temp
 | 
				
			||||||
 | 
						#docbook2html --output html-temp -V html-index $(MASTER)
 | 
				
			||||||
 | 
						docbook-2-html -O -V -O html-index $(HTMLARGS) $(MASTER)
 | 
				
			||||||
 | 
						mv $(MASTERBASE)-html/HTML.index index/
 | 
				
			||||||
 | 
						rm -r $(MASTERBASE)-html
 | 
				
			||||||
 | 
					endif # DOINDEX
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					######################################################################
 | 
				
			||||||
 | 
					# PostScript generation
 | 
				
			||||||
 | 
					######################################################################
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					$(MASTERBASE).ps: $(MASTER) $(BASICDEPS) $(INDEXSGMLFILE) $(EPSFILES)
 | 
				
			||||||
 | 
						@echo " *** Generating PostScript output"
 | 
				
			||||||
 | 
					# This works too: docbook2ps -V paper-size=Letter $(MASTER)
 | 
				
			||||||
 | 
						docbook-2-ps -q -O -V -O paper-size=Letter $(PSARGS) $(MASTER)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					######################################################################
 | 
				
			||||||
 | 
					# Figure generation
 | 
				
			||||||
 | 
					######################################################################
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					%_1.epi: %.ps
 | 
				
			||||||
 | 
						$(get-epi)
 | 
				
			||||||
 | 
					%_2.epi: %.ps
 | 
				
			||||||
 | 
						$(get-epi)
 | 
				
			||||||
 | 
					%_3.epi: %.ps
 | 
				
			||||||
 | 
						$(get-epi)
 | 
				
			||||||
 | 
					%_4.epi: %.ps
 | 
				
			||||||
 | 
						$(get-epi)
 | 
				
			||||||
 | 
					%_5.epi: %.ps
 | 
				
			||||||
 | 
						$(get-epi)
 | 
				
			||||||
 | 
					%_6.epi: %.ps
 | 
				
			||||||
 | 
						$(get-epi)
 | 
				
			||||||
 | 
					%_7.epi: %.ps
 | 
				
			||||||
 | 
						$(get-epi)
 | 
				
			||||||
 | 
					%_8.epi: %.ps
 | 
				
			||||||
 | 
						$(get-epi)
 | 
				
			||||||
 | 
					%_9.epi: %.ps
 | 
				
			||||||
 | 
						$(get-epi)
 | 
				
			||||||
 | 
					%_10.epi: %.ps
 | 
				
			||||||
 | 
						$(get-epi)
 | 
				
			||||||
 | 
					%_11.epi: %.ps
 | 
				
			||||||
 | 
						$(get-epi)
 | 
				
			||||||
 | 
					%_12.epi: %.ps
 | 
				
			||||||
 | 
						$(get-epi)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					%.png: %.epi
 | 
				
			||||||
 | 
						@echo " *** Generating PNG image for $<"
 | 
				
			||||||
 | 
						gs -q -dTextAlphaBits=4 -dGraphicsAlphaBits=4 -r90 -dBATCH -dNOPAUSE \
 | 
				
			||||||
 | 
							-dSAFER -sOutputFile=$@ -sDEVICE=png16m $< -c showpage
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					%.ps: %.pdf
 | 
				
			||||||
 | 
						pdftops $<
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					######################################################################
 | 
				
			||||||
 | 
					# HTML generation
 | 
				
			||||||
 | 
					######################################################################
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					define copy-figures-worker
 | 
				
			||||||
 | 
					mkdir html/figures
 | 
				
			||||||
 | 
					for DIRECTORY in $(FIGUREDIRS); do mkdir html/$$DIRECTORY; cp -v $$DIRECTORY/*.png html/$$DIRECTORY/; done
 | 
				
			||||||
 | 
					endef
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					define copy-figures
 | 
				
			||||||
 | 
					$(if $(FIGUREDIRS),$(copy-figures-worker))
 | 
				
			||||||
 | 
					endef
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					html/index.html: $(MASTER) $(BASICDEPS) $(INDEXSGMLFILE) $(PNGFILES)
 | 
				
			||||||
 | 
						@echo " *** Generating HTML output"
 | 
				
			||||||
 | 
						-rm -r html
 | 
				
			||||||
 | 
						mkdir html
 | 
				
			||||||
 | 
						#docbook2html --output html $(MASTER)
 | 
				
			||||||
 | 
						docbook-2-html $(HTMLARGS) $(MASTER)
 | 
				
			||||||
 | 
						mv $(MASTERBASE)-html/* html/
 | 
				
			||||||
 | 
						rmdir $(MASTERBASE)-html
 | 
				
			||||||
 | 
						$(copy-figures)
 | 
				
			||||||
 | 
					#	tidy -m html/*.html
 | 
				
			||||||
 | 
						ln -s $(TOPNODE).html html/index.html
 | 
				
			||||||
 | 
						-cp -v /usr/share/gtk-doc/*.png html/
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					######################################################################
 | 
				
			||||||
 | 
					# Cleaning
 | 
				
			||||||
 | 
					######################################################################
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					clean:
 | 
				
			||||||
 | 
						-rm -f `find . -name "*~"` `find . -name "*.png"` `find . -name "*.epi"`
 | 
				
			||||||
 | 
						-rm -r html-temp linux-guide-html html index
 | 
				
			||||||
 | 
						-rm *.aux *.log *.dvi *.tex *.jtex *.ps *.html *.log *.out jadetex.cfg
 | 
				
			||||||
 | 
						-rm *.ps html/*.html figures/topology/*.epi figures/topology/*.png
 | 
				
			||||||
 | 
						-rm *.log *.pdb
 | 
				
			||||||
 | 
						-rm `find . -name ".ps"` `find . -name "*.epi"` *.pdf
 | 
				
			||||||
 | 
						-rm `find . -name "*.png"`
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					######################################################################
 | 
				
			||||||
 | 
					# Utility functions
 | 
				
			||||||
 | 
					######################################################################
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					GETPAGE=$(shell echo $(1) | sed -e "s/^.*_\([0-9]*\).epi/\\1/g")
 | 
				
			||||||
 | 
					define get-epi
 | 
				
			||||||
 | 
					@echo " *** Generating EPI image for $<"
 | 
				
			||||||
 | 
					psselect -q $(call GETPAGE,$@) $< temp.ps
 | 
				
			||||||
 | 
					psresize -w 6.375in -h 8.25in temp.ps temp2.ps
 | 
				
			||||||
 | 
					../sgml-common/ps2epsi temp2.ps $@
 | 
				
			||||||
 | 
					rm temp.ps temp2.ps
 | 
				
			||||||
 | 
					endef
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					pdf: $(MASTERBASE).pdf
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					$(MASTERBASE).pdf: $(MASTERBASE).ps
 | 
				
			||||||
 | 
						ps2pdf14 $(MASTERBASE).ps
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					plucker: $(MASTERBASE).pdb
 | 
				
			||||||
 | 
					$(MASTERBASE).pdb: html
 | 
				
			||||||
 | 
						plucker-build --bpp=4 --compression=zlib --doc-name="$(MASTERBASE)" \
 | 
				
			||||||
 | 
						-H file:`pwd`/html/index.html -M 5 \
 | 
				
			||||||
 | 
						--maxheight=320 --maxwidth=310 \
 | 
				
			||||||
 | 
						--staybelow=file:`pwd`/html --title="$(MASTERBASE)" -p . \
 | 
				
			||||||
 | 
						-f $(MASTERBASE)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					###########################################################################
 | 
				
			||||||
 | 
					# These are obsolete but should still work.
 | 
				
			||||||
 | 
					###########################################################################
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					$(MASTERBASE).dvi: $(MASTERBASE).tex
 | 
				
			||||||
 | 
						@echo " *** Generating DVI file."
 | 
				
			||||||
 | 
						jadetex unix-guide.tex
 | 
				
			||||||
 | 
						jadetex unix-guide.tex
 | 
				
			||||||
 | 
						jadetex unix-guide.tex
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					$(MASTERBASE).tex: $(MASTER) $(BASICDEPS) $(INDEXSGMLFILE)
 | 
				
			||||||
 | 
						@echo " *** Generating TeX files."
 | 
				
			||||||
 | 
						docbook2tex -V paper-size=Letter $(MASTER)
 | 
				
			||||||
 | 
					#	jade -t tex -V tex-backend -d \
 | 
				
			||||||
 | 
					#		/usr/share/sgml/docbook/stylesheet/dsssl/modular/print/docbook.dsl \
 | 
				
			||||||
 | 
					#		$(MASTER)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
							
								
								
									
										76
									
								
								offlineimap/head/docs/sgml-common/ps2epsi
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										76
									
								
								offlineimap/head/docs/sgml-common/ps2epsi
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,76 @@
 | 
				
			|||||||
 | 
					#!/bin/sh
 | 
				
			||||||
 | 
					# $RCSfile: ps2epsi,v $ $Revision: 1.4.2.2 $
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					tmpfile=/tmp/ps2epsi$$
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					export outfile
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					if [ $# -lt 1 -o $# -gt 2 ]; then
 | 
				
			||||||
 | 
						echo "Usage: `basename $0` file.ps [file.epsi]" 1>&2
 | 
				
			||||||
 | 
						exit 1
 | 
				
			||||||
 | 
					fi
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					infile=$1;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					if [ $# -eq 1 ]
 | 
				
			||||||
 | 
					then
 | 
				
			||||||
 | 
						case "${infile}" in
 | 
				
			||||||
 | 
						  *.ps)		base=`basename ${infile} .ps` ;;
 | 
				
			||||||
 | 
						  *.cps)	base=`basename ${infile} .cps` ;;
 | 
				
			||||||
 | 
						  *.eps)	base=`basename ${infile} .eps` ;;
 | 
				
			||||||
 | 
						  *.epsf)	base=`basename ${infile} .epsf` ;;
 | 
				
			||||||
 | 
						  *)		base=`basename ${infile}` ;;
 | 
				
			||||||
 | 
						esac
 | 
				
			||||||
 | 
						outfile=${base}.epsi
 | 
				
			||||||
 | 
					else
 | 
				
			||||||
 | 
						outfile=$2
 | 
				
			||||||
 | 
					fi
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					ls -l ${infile} |
 | 
				
			||||||
 | 
					awk 'F==1	{
 | 
				
			||||||
 | 
							cd="%%CreationDate: " $6 " " $7 " " $8;
 | 
				
			||||||
 | 
							t="%%Title: " $9;
 | 
				
			||||||
 | 
							f="%%For:" U " " $3;
 | 
				
			||||||
 | 
							c="%%Creator: Ghostscript ps2epsi from " $9;
 | 
				
			||||||
 | 
							next;
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
 | 
						/^%!/	{next;}
 | 
				
			||||||
 | 
						/^%%Title:/	{t=$0; next;}
 | 
				
			||||||
 | 
						/^%%Creator:/	{c=$0; next;}
 | 
				
			||||||
 | 
						/^%%CreationDate:/	{cd=$0; next;}
 | 
				
			||||||
 | 
						/^%%For:/	{f=$0; next;}
 | 
				
			||||||
 | 
						!/^%/	{
 | 
				
			||||||
 | 
							print "/ps2edict 30 dict def";
 | 
				
			||||||
 | 
							print "ps2edict begin";
 | 
				
			||||||
 | 
							print "/epsititle (" t "\\n) def";
 | 
				
			||||||
 | 
							print "/epsicreator (" c "\\n) def";
 | 
				
			||||||
 | 
							print "/epsicrdt (" cd "\\n) def";
 | 
				
			||||||
 | 
							print "/epsifor (" f "\\n) def";
 | 
				
			||||||
 | 
							print "end";
 | 
				
			||||||
 | 
							exit(0);
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
 | 
						' U="$USERNAME$LOGNAME"  F=1 - F=2 ${infile} >$tmpfile
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					gs -q -dNOPAUSE -dSAFER -dDELAYSAFER -r72 -sDEVICE=bit -sOutputFile=/dev/null $tmpfile ps2epsi.ps $tmpfile <${infile} 1>&2
 | 
				
			||||||
 | 
					rm -f $tmpfile
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					(
 | 
				
			||||||
 | 
					cat << BEGINEPS
 | 
				
			||||||
 | 
					save countdictstack mark newpath /showpage {} def /setpagedevice {pop} def
 | 
				
			||||||
 | 
					%%EndProlog
 | 
				
			||||||
 | 
					%%Page 1 1
 | 
				
			||||||
 | 
					BEGINEPS
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					cat ${infile} |
 | 
				
			||||||
 | 
					sed -e '/^%%BeginPreview:/,/^%%EndPreview[^!-~]*$/d' -e '/^%!PS-Adobe/d'\
 | 
				
			||||||
 | 
					    -e '/^%%[A-Za-z][A-Za-z]*[^!-~]*$/d' -e '/^%%[A-Za-z][A-Za-z]*: /d'
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					cat << ENDEPS
 | 
				
			||||||
 | 
					%%Trailer
 | 
				
			||||||
 | 
					cleartomark countdictstack exch sub { end } repeat restore
 | 
				
			||||||
 | 
					%%EOF
 | 
				
			||||||
 | 
					ENDEPS
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					) >> ${outfile}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					exit 0
 | 
				
			||||||
		Reference in New Issue
	
	Block a user