File indexing completed on 2024-03-24 16:41:46

0001 #!/usr/bin/perl
0002 
0003 # tbraun 9.2.2006
0004 
0005 # first delete some groups and keys, if they exist
0006 print "# DELETEGROUP [Tool/Archive/Default]\n";
0007 print "# DELETEGROUP [Tool/LaTeXtoHTML/latex2html]\n";
0008 print "# DELETEGROUP [Tool/LaTeXtoHTML/TeX4ht]\n";
0009 print "# DELETEGROUP [Tool/LaTeXtoDocBook/Default]\n";
0010 print "# DELETE [Tools]Archive\n";
0011 print "# DELETE [Tools]LaTeXtoHTML\n";
0012 print "# DELETE [Tools]LaTeXtoDocBook\n";
0013 print "# DELETE [Tools]TeX4ht\n";
0014 print "# DELETE [ToolsGUI]Archive\n";
0015 print "# DELETE [ToolsGUI]LaTeXtoHTML\n";
0016 print "# DELETE [ToolsGUI]LaTeXtoDocBook\n";
0017 print "# DELETE [ToolsGUI]TeX\n";
0018 print "# DELETE [ToolsGUI]PDFTeX\n";
0019 
0020 # now filter the configuration file
0021 print <<EOT;
0022 [Tool/Archive/Tar]
0023 class=Archive
0024 command=tar
0025 options=cvf '%S.tar' %AFL
0026 from=kilepr
0027 to=tar
0028 type=Process
0029 
0030 [Tool/Archive/Tar + gzip]
0031 class=Archive
0032 command=tar
0033 options=zcvf '%S.tar.gz' %AFL
0034 from=kilepr
0035 to=tar.gz
0036 type=Process
0037 
0038 [Tool/Archive/Tar + bzip2]
0039 class=Archive
0040 command=tar
0041 options=jcvf '%S.tar.bz2' %AFL
0042 from=kilepr
0043 to=tar.bz2
0044 type=Process
0045 
0046 [Tool/Archive/Zip]
0047 class=Archive
0048 command=zip
0049 options='%S.zip' %AFL
0050 from=kilepr
0051 to=zip
0052 type=Process
0053 
0054 [Tool/DBLaTeX/Convert to DVI]
0055 class=Compile
0056 command=dblatex
0057 options=-tdvi '%S.xml'
0058 from=xml
0059 to=dvi
0060 type=Process
0061 
0062 [Tool/DBLaTeX/Convert to PDF]
0063 class=Compile
0064 command=dblatex
0065 from=xml
0066 to=pdf
0067 options=-tpdf '%S.xml'
0068 type=Process
0069 
0070 [Tool/DBLaTeX/Convert to LaTeX]
0071 class=Compile
0072 command=dblatex
0073 from=xml
0074 to=tex
0075 options=-ttex '%S.xml'
0076 type=Process
0077 
0078 [Tool/DBLaTeX/Convert to Postscript]
0079 class=Compile
0080 command=dblatex
0081 from=xml
0082 to=ps
0083 options=-tps '%S.xml'
0084 type=Process
0085 
0086 [Tool/DVItoPDF/Black and White]
0087 command=dvipdfm
0088 options=-c '%S.dvi'
0089 from=dvi
0090 to=pdf
0091 type=Process
0092 
0093 [Tool/DVItoPDF/Landscape]
0094 command=dvipdfm
0095 options=-l '%S.dvi'
0096 from=dvi
0097 to=pdf
0098 type=Process
0099 
0100 [Tool/LaTeX to Web/TeX4ht (LaTeX to HTML)]
0101 class=Compile
0102 command=mk4ht
0103 from=tex
0104 to=html
0105 options=htlatex '%source'
0106 type=Process
0107 
0108 [Tool/LaTeX to Web/TeX4ht (LaTeX to MathML)]
0109 class=Compile
0110 command=mk4ht
0111 from=tex
0112 to=xml
0113 options=xhmlatex '%source'
0114 type=Process
0115 
0116 [Tool/LaTeX to Web/TeX4ht (LaTeX to XML)]
0117 class=Compile
0118 command=mk4ht
0119 from=tex
0120 to=xml
0121 options=xhlatex '%source'
0122 type=Process
0123 
0124 [Tool/LaTeX to Web/latex2html]
0125 class=Compile
0126 command=latex2html
0127 options='%source'
0128 from=tex
0129 to=html
0130 type=Process
0131 
0132 [Tool/QuickBuild/LaTeX]
0133 class=Sequence
0134 type=Sequence
0135 sequence=LaTeX
0136 
0137 [Tool/ViewBib/JabRef]
0138 type=Process
0139 class=ViewBib
0140 command=jabref
0141 options='%source'
0142 from=bib
0143 to=bib
0144 
0145 [Tool/ViewBib/gbib]
0146 type=Process
0147 class=ViewBib
0148 command=gbib
0149 options='%source'
0150 from=bib
0151 to=bib
0152 
0153 [Tool/ViewBib/KBib]
0154 class=ViewBib
0155 command=kbib
0156 options='%source'
0157 from=bib
0158 to=bib
0159 type=Process
0160 
0161 [Tool/Lilypond/PDF]
0162 class=Compile
0163 command=lilypond
0164 options=--pdf '%source'
0165 from=ly
0166 to=pdf
0167 type=Process
0168 
0169 [Tool/Lilypond/DVI]
0170 class=Compile
0171 command=lilypond
0172 options=--dvi '%source'
0173 from=ly
0174 to=dvi
0175 type=Process
0176 
0177 [Tool/Lilypond/TeX]
0178 class=Compile
0179 command=lilypond
0180 options=--tex '%source'
0181 from=ly
0182 to=tex
0183 type=Process
0184 
0185 [Tool/Lilypond/PS]
0186 class=Compile
0187 command=lilypond
0188 options=--ps '%source'
0189 from=ly
0190 to=ps
0191 type=Process
0192 
0193 [Tool/Lilypond/PNG]
0194 class=Compile
0195 command=lilypond
0196 options=--png '%source'
0197 from=ly
0198 to=png
0199 type=Process
0200 
0201 [Tools]
0202 Archive=Tar + gzip
0203 DBLaTeX=Convert to LaTeX
0204 LaTeX to Web=latex2html
0205 Lilypond=PDF
0206 
0207 [ToolsGUI]
0208 Lilypond=Compile,lilypond
0209 Archive=Archive,package
0210 LaTeX to Web=Compile,l2h
0211 DBLaTeX=Compile,dblatex
0212 TeX=Compile,texcompiler
0213 PDFTeX=Compile,pdftex
0214 EOT