]> git.lyx.org Git - lyx.git/blob - lib/configure.py
3525588976342084da47936b67a2b861577b2acd
[lyx.git] / lib / configure.py
1 #! /usr/bin/env python
2 # -*- coding: utf-8 -*-
3 #
4 # file configure.py
5 # This file is part of LyX, the document processor.
6 # Licence details can be found in the file COPYING.
7
8 # \author Bo Peng
9 # Full author contact details are available in file CREDITS.
10
11 import sys, os, re, shutil, glob
12
13
14 class Tee:
15     ''' Writing to a Tee object will write to all file objects it keeps.
16         That is to say, writing to Tee(sys.stdout, open(logfile, 'w')) will
17         write to sys.stdout as well as a log file.
18     '''
19     def __init__(self, *args):
20         self.files = args
21
22     def write(self, data):
23         for f in self.files:
24             result = f.write(data)
25         return result
26
27     def writelines(self, seq):
28         for i in seq:
29             self.write(i)
30
31
32 def writeToFile(filename, lines, append = False):
33     " utility function: write or append lines to filename "
34     if append:
35         file = open(filename, 'a')
36     else:
37         file = open(filename, 'w')
38     file.write(lines)
39     file.close()
40
41
42 def addToRC(lines):
43     ''' utility function: shortcut for appending lines to outfile
44         add newline at the end of lines.
45     '''
46     if lines.strip() != '':
47         writeToFile(outfile, lines + '\n', append = True)
48
49
50 def removeFiles(filenames):
51     '''utility function: 'rm -f'
52         ignore errors when file does not exist, or is a directory.
53     '''
54     for file in filenames:
55         try:
56             os.remove(file)
57         except:
58             pass
59
60
61 def cmdOutput(cmd):
62     '''utility function: run a command and get its output as a string
63         cmd: command to run
64     '''
65     fout = os.popen(cmd)
66     output = fout.read()
67     fout.close()
68     return output.strip()
69
70
71 def setEnviron():
72     ''' I do not really know why this is useful, but we might as well keep it.
73         NLS nuisances.
74         Only set these to C if already set.  These must not be set unconditionally
75         because not all systems understand e.g. LANG=C (notably SCO).
76         Fixing LC_MESSAGES prevents Solaris sh from translating var values in set!
77         Non-C LC_CTYPE values break the ctype check.
78     '''
79     os.environ['LANG'] = os.getenv('LANG', 'C')
80     os.environ['LC'] = os.getenv('LC_ALL', 'C')
81     os.environ['LC_MESSAGE'] = os.getenv('LC_MESSAGE', 'C')
82     os.environ['LC_CTYPE'] = os.getenv('LC_CTYPE', 'C')
83
84
85 def createDirectories():
86     ''' Create the build directories if necessary '''
87     for dir in ['bind', 'clipart', 'doc', 'examples', 'images', 'kbd', \
88         'layouts', 'scripts', 'templates', 'ui' ]:
89         if not os.path.isdir( dir ):
90             try:
91                 os.mkdir( dir)
92             except:
93                 print "Failed to create directory ", dir
94                 sys.exit(1)
95
96
97 def checkTeXPaths():
98     ''' Determine the path-style needed by the TeX engine on Win32 (Cygwin) '''
99     windows_style_tex_paths = ''
100     if os.name == 'nt' or sys.platform == 'cygwin':
101         from tempfile import mkstemp
102         fd, tmpfname = mkstemp(suffix='.ltx')
103         if os.name == 'nt':
104             inpname = tmpfname.replace('\\', '/')
105         else:
106             inpname = cmdOutput('cygpath -m ' + tmpfname)
107         logname = os.path.basename(inpname.replace('.ltx', '.log'))
108         inpname = inpname.replace('~', '\\string~')
109         os.write(fd, r'\relax')
110         os.close(fd)
111         latex_out = cmdOutput(r'latex "\nonstopmode\input{%s}"' % inpname)
112         if 'Error' in latex_out:
113             print "configure: TeX engine needs posix-style paths in latex files"
114             windows_style_tex_paths = 'false'
115         else:
116             print "configure: TeX engine needs windows-style paths in latex files"
117             windows_style_tex_paths = 'true'
118         removeFiles([tmpfname, logname, 'texput.log'])
119     return windows_style_tex_paths
120
121
122 ## Searching some useful programs
123 def checkProg(description, progs, rc_entry = [], path = [], not_found = ''):
124     '''
125         This function will search a program in $PATH plus given path
126         If found, return directory and program name (not the options).
127
128         description: description of the program
129
130         progs: check programs, for each prog, the first word is used
131             for searching but the whole string is used to replace
132             %% for a rc_entry. So, feel free to add '$$i' etc for programs.
133
134         path: additional pathes
135
136         rc_entry: entry to outfile, can be
137             1. emtpy: no rc entry will be added
138             2. one pattern: %% will be replaced by the first found program,
139                 or '' if no program is found.
140             3. several patterns for each prog and not_found. This is used 
141                 when different programs have different usages. If you do not 
142                 want not_found entry to be added to the RC file, you can specify 
143                 an entry for each prog and use '' for the not_found entry.
144
145         not_found: the value that should be used instead of '' if no program
146             was found
147
148     '''
149     # one rc entry for each progs plus not_found entry
150     if len(rc_entry) > 1 and len(rc_entry) != len(progs) + 1:
151         print "rc entry should have one item or item for each prog and not_found."
152         sys.exit(2)
153     print 'checking for ' + description + '...'
154     ## print '(' + ','.join(progs) + ')',
155     for idx in range(len(progs)):
156         # ac_prog may have options, ac_word is the command name
157         ac_prog = progs[idx]
158         ac_word = ac_prog.split(' ')[0]
159         print '+checking for "' + ac_word + '"... ',
160         path = os.environ["PATH"].split(os.pathsep) + path
161         extlist = ['']
162         if os.environ.has_key("PATHEXT"):
163             extlist = extlist + os.environ["PATHEXT"].split(os.pathsep)
164         for ac_dir in path:
165             for ext in extlist:
166                 if os.path.isfile( os.path.join(ac_dir, ac_word + ext) ):
167                     print ' yes'
168                     # write rc entries for this command
169                     if len(rc_entry) == 1:
170                         addToRC(rc_entry[0].replace('%%', ac_prog))
171                     elif len(rc_entry) > 1:
172                         addToRC(rc_entry[idx].replace('%%', ac_prog))
173                     return [ac_dir, ac_word]
174         # if not successful
175         print ' no'
176     # write rc entries for 'not found'
177     if len(rc_entry) > 0:  # the last one.
178         addToRC(rc_entry[-1].replace('%%', not_found))
179     return ['', not_found]
180
181
182 def checkViewer(description, progs, rc_entry = [], path = []):
183     ''' The same as checkProg, but for viewers and editors '''
184     return checkProg(description, progs, rc_entry, path, not_found = 'auto')
185
186
187 def checkDTLtools():
188     ''' Check whether DTL tools are available (Windows only) '''
189     # Find programs! Returned path is not used now
190     if ((os.name == 'nt' or sys.platform == 'cygwin') and
191             checkProg('DVI to DTL converter', ['dv2dt']) != ['', ''] and
192             checkProg('DTL to DVI converter', ['dt2dv']) != ['', '']):
193         dtl_tools = True
194     else:
195         dtl_tools = False
196     return dtl_tools
197
198
199 def checkLatex(dtl_tools):
200     ''' Check latex, return lyx_check_config '''
201     path, LATEX = checkProg('a Latex2e program', ['latex $$i', 'platex $$i', 'latex2e $$i'])
202     path, PPLATEX = checkProg('a DVI postprocessing program', ['pplatex $$i'])
203     #-----------------------------------------------------------------
204     path, PLATEX = checkProg('pLaTeX, the Japanese LaTeX', ['platex $$i'])
205     if PLATEX != '':
206         # check if PLATEX is pLaTeX2e
207         writeToFile('chklatex.ltx', '''
208 \\nonstopmode
209 \\@@end
210 ''')
211         # run platex on chklatex.ltx and check result
212         if cmdOutput(PLATEX + ' chklatex.ltx').find('pLaTeX2e') != -1:
213             # We have the Japanese pLaTeX2e
214             addToRC(r'\converter platex   dvi       "%s"   "latex"' % PLATEX)
215             LATEX = PLATEX
216         else:
217             PLATEX = ''
218             removeFiles(['chklatex.ltx', 'chklatex.log'])
219     #-----------------------------------------------------------------
220     # use LATEX to convert from latex to dvi if PPLATEX is not available    
221     if PPLATEX == '':
222         PPLATEX = LATEX
223     if dtl_tools:
224         # Windows only: DraftDVI
225         addToRC(r'''\converter latex      dvi2       "%s"       "latex"
226 \converter dvi2       dvi        "python -tt $$s/scripts/clean_dvi.py $$i $$o"  ""''' % PPLATEX)
227     else:
228         addToRC(r'\converter latex      dvi        "%s" "latex"' % PPLATEX)
229     # no latex
230     if LATEX != '':
231         # Check if latex is usable
232         writeToFile('chklatex.ltx', '''
233 \\nonstopmode\\makeatletter
234 \\ifx\\undefined\\documentclass\\else
235   \\message{ThisIsLaTeX2e}
236 \\fi
237 \\@@end
238 ''')
239         # run latex on chklatex.ltx and check result
240         if cmdOutput(LATEX + ' chklatex.ltx').find('ThisIsLaTeX2e') != -1:
241             # valid latex2e
242             return LATEX
243         else:
244             print "Latex not usable (not LaTeX2e) "
245         # remove temporary files
246         removeFiles(['chklatex.ltx', 'chklatex.log'])
247     return ''
248
249
250 def checkFormatEntries(dtl_tools):  
251     ''' Check all formats (\Format entries) '''
252     checkViewer('a Tgif viewer and editor', ['tgif'],
253         rc_entry = [r'\Format tgif       obj     Tgif                   "" "%%" "%%"    "vector"'])
254     #
255     checkViewer('a FIG viewer and editor', ['xfig', 'jfig3-itext.jar', 'jfig3.jar'],
256         rc_entry = [r'\Format fig        fig     FIG                    "" "%%" "%%"    "vector"'])
257     #
258     checkViewer('a Grace viewer and editor', ['xmgrace'],
259         rc_entry = [r'\Format agr        agr     Grace                  "" "%%" "%%"    "vector"'])
260     #
261     checkViewer('a FEN viewer and editor', ['xboard -lpf $$i -mode EditPosition'],
262         rc_entry = [r'\Format fen        fen     FEN                    "" "%%" "%%"    ""'])
263     #
264     path, iv = checkViewer('a raster image viewer', ['xv', 'kview', 'gimp-remote', 'gimp'])
265     path, ie = checkViewer('a raster image editor', ['gimp-remote', 'gimp'])
266     addToRC(r'''\Format bmp        bmp     BMP                    "" "%s"       "%s"    ""
267 \Format gif        gif     GIF                    "" "%s"       "%s"    ""
268 \Format jpg        jpg     JPEG                   "" "%s"       "%s"    ""
269 \Format pbm        pbm     PBM                    "" "%s"       "%s"    ""
270 \Format pgm        pgm     PGM                    "" "%s"       "%s"    ""
271 \Format png        png     PNG                    "" "%s"       "%s"    ""
272 \Format ppm        ppm     PPM                    "" "%s"       "%s"    ""
273 \Format tiff       tif     TIFF                   "" "%s"       "%s"    ""
274 \Format xbm        xbm     XBM                    "" "%s"       "%s"    ""
275 \Format xpm        xpm     XPM                    "" "%s"       "%s"    ""''' % \
276         (iv, ie, iv, ie, iv, ie, iv, ie, iv, ie, iv, ie, iv, ie, iv, ie, iv, ie, iv, ie) )
277     #
278     checkViewer('a text editor', ['sensible-editor', 'xemacs', 'gvim', 'kedit', 'kwrite', 'kate', \
279         'nedit', 'gedit', 'notepad'],
280         rc_entry = [r'''\Format asciichess asc    "Plain text (chess output)"  "" ""    "%%"    ""
281 \Format asciiimage asc    "Plain text (image)"         "" ""    "%%"    ""
282 \Format asciixfig  asc    "Plain text (Xfig output)"   "" ""    "%%"    ""
283 \Format dateout    tmp    "date (output)"         "" "" "%%"    ""
284 \Format docbook    sgml    DocBook                B  "" "%%"    "document"
285 \Format docbook-xml xml   "Docbook (XML)"         "" "" "%%"    "document"
286 \Format dot        dot    "Graphviz Dot"          "" "" "%%"    "vector"
287 \Format platex     tex    "LaTeX (pLaTeX)"        "" "" "%%"    "document"
288 \Format literate   nw      NoWeb                  N  "" "%%"    "document"
289 \Format lilypond   ly     "LilyPond music"        "" "" "%%"    "vector"
290 \Format latex      tex    "LaTeX (plain)"         L  "" "%%"    "document"
291 \Format pdflatex   tex    "LaTeX (pdflatex)"      "" "" "%%"    "document"
292 \Format text       txt    "Plain text"            a  "" "%%"    "document"
293 \Format text2      txt    "Plain text (pstotext)" "" "" "%%"    "document"
294 \Format text3      txt    "Plain text (ps2ascii)" "" "" "%%"    "document"
295 \Format text4      txt    "Plain text (catdvi)"   "" "" "%%"    "document"
296 \Format textparagraph txt "Plain Text, Join Lines" "" ""        "%%"    "document"''' ])
297  #
298     checkViewer('a BibTeX editor', ['sensible-editor', 'jabref', 'JabRef', \
299         'pybliographic', 'bibdesk', 'gbib', 'kbib', \
300         'kbibtex', 'sixpack', 'bibedit', 'tkbibtex' \
301         'xemacs', 'gvim', 'kedit', 'kwrite', 'kate', \
302         'nedit', 'gedit', 'notepad'],
303         rc_entry = [r'''\Format bibtex bib    "BibTeX"         "" ""    "%%"    ""''' ])
304     #
305     #checkProg('a Postscript interpreter', ['gs'],
306     #  rc_entry = [ r'\ps_command "%%"' ])
307     checkViewer('a Postscript previewer', ['kghostview', 'evince', 'gv', 'ghostview -swap'],
308         rc_entry = [r'''\Format eps        eps     EPS                    "" "%%"       ""      "vector"
309 \Format ps         ps      Postscript             t  "%%"       ""      "document,vector"'''])
310     #
311     checkViewer('a PDF previewer', ['kpdf', 'evince', 'kghostview', 'xpdf', 'acrobat', 'acroread', \
312                     'gv', 'ghostview'],
313         rc_entry = [r'''\Format pdf        pdf    "PDF (ps2pdf)"          P  "%%"       ""      "document,vector"
314 \Format pdf2       pdf    "PDF (pdflatex)"        F  "%%"       ""      "document,vector"
315 \Format pdf3       pdf    "PDF (dvipdfm)"         m  "%%"       ""      "document,vector"'''])
316     #
317     checkViewer('a DVI previewer', ['xdvi', 'kdvi'],
318         rc_entry = [r'\Format dvi        dvi     DVI                    D  "%%" ""      "document,vector"'])
319     if dtl_tools:
320         # Windows only: DraftDVI
321         addToRC(r'\Format dvi2       dvi     DraftDVI               ""  ""      ""      "vector"')
322     #
323     checkViewer('an HTML previewer', ['firefox', 'mozilla file://$$p$$i', 'netscape'],
324         rc_entry = [r'\Format html       html    HTML                   H  "%%" ""      "document"'])
325     #
326     checkViewer('Noteedit', ['noteedit'],
327         rc_entry = [r'\Format noteedit   not     Noteedit               "" "%%" "%%"    "vector"'])
328     #
329     checkViewer('an OpenDocument viewer', ['swriter', 'oowriter'],
330         rc_entry = [r'\Format odt        odt     OpenDocument           "" "%%" "%%"    "document,vector"'])
331     #
332     # entried that do not need checkProg
333     addToRC(r'''\Format date       ""     "date command"          "" "" ""      ""
334 \Format csv        csv    "Table (CSV)"  "" ""  ""      "document"
335 \Format fax        ""      Fax                    "" "" ""      "document"
336 \Format lyx        lyx     LyX                    "" "" ""      ""
337 \Format lyx13x     lyx13  "LyX 1.3.x"             "" "" ""      "document"
338 \Format lyx14x     lyx14  "LyX 1.4.x"             "" "" ""      "document"
339 \Format lyx15x     lyx15  "LyX 1.5.x"             "" "" ""      "document"
340 \Format clyx       cjklyx "CJK LyX 1.4.x (big5)"  "" "" ""      "document"
341 \Format jlyx       cjklyx "CJK LyX 1.4.x (euc-jp)" "" ""        ""      "document"
342 \Format klyx       cjklyx "CJK LyX 1.4.x (euc-kr)" "" ""        ""      "document"
343 \Format lyxpreview lyxpreview "LyX Preview"       "" "" ""      ""
344 \Format lyxpreview-platex lyxpreview-platex "LyX Preview (pLaTeX)"       "" ""  ""      ""
345 \Format pdftex     pdftex_t PDFTEX                "" "" ""      ""
346 \Format program    ""      Program                "" "" ""      ""
347 \Format pstex      pstex_t PSTEX                  "" "" ""      ""
348 \Format rtf        rtf    "Rich Text Format"      "" "" ""      "document,vector"
349 \Format sxw        sxw    "OpenOffice.Org (sxw)"  ""  ""        ""      "document,vector"
350 \Format wmf        wmf    "Windows Metafile"      "" "" ""      "vector"
351 \Format emf        emf    "Enhanced Metafile"     "" "" ""      "vector"
352 \Format word       doc    "MS Word"               W  "" ""      "document,vector"
353 \Format wordhtml   html   "HTML (MS Word)"        "" ""        ""       "document"
354 ''')
355
356
357 def checkConverterEntries():
358     ''' Check all converters (\converter entries) '''
359     checkProg('the pdflatex program', ['pdflatex $$i'],
360         rc_entry = [ r'\converter pdflatex   pdf2       "%%"    "latex"' ])
361     
362     ''' If we're running LyX in-place then tex2lyx will be found in
363             ../src/tex2lyx. Add this directory to the PATH temporarily and
364             search for tex2lyx.
365             Use PATH to avoid any problems with paths-with-spaces.
366     '''
367     path_orig = os.environ["PATH"]
368     os.environ["PATH"] = os.path.join('..', 'src', 'tex2lyx') + \
369         os.pathsep + path_orig
370
371     checkProg('a LaTeX/Noweb -> LyX converter', ['tex2lyx', 'tex2lyx' + version_suffix],
372         rc_entry = [r'''\converter latex      lyx        "%% -f $$i $$o"        ""
373 \converter literate   lyx        "%% -n -f $$i $$o"     ""'''])
374
375     os.environ["PATH"] = path_orig
376
377     #
378     checkProg('a Noweb -> LaTeX converter', ['noweave -delay -index $$i > $$o'],
379         rc_entry = [r'''\converter literate   latex      "%%"   ""
380 \converter literate   pdflatex      "%%"        ""'''])
381     #
382     checkProg('an HTML -> LaTeX converter', ['html2latex $$i', 'gnuhtml2latex $$i', \
383         'htmltolatex -input $$i -output $$o', 'java -jar htmltolatex.jar -input $$i -output $$o'],
384         rc_entry = [ r'\converter html       latex      "%%"    ""' ])
385     #
386     checkProg('an MS Word -> LaTeX converter', ['wvCleanLatex $$i $$o'],
387         rc_entry = [ r'\converter word       latex      "%%"    ""' ])
388     # On SuSE the scripts have a .sh suffix, and on debian they are in /usr/share/tex4ht/
389     path, htmlconv = checkProg('a LaTeX -> HTML converter', ['htlatex $$i', 'htlatex.sh $$i', \
390         '/usr/share/tex4ht/htlatex $$i', 'tth  -t -e2 -L$$b < $$i > $$o', \
391         'latex2html -no_subdir -split 0 -show_section_numbers $$i', 'hevea -s $$i'],
392         rc_entry = [ r'\converter latex      html       "%%"    "needaux"' ])
393     if htmlconv.find('htlatex') >= 0 or htmlconv == 'latex2html':
394       addToRC(r'''\copier    html       "python -tt $$s/scripts/ext_copy.py -e html,png,css $$i $$o"''')
395     else:
396       addToRC(r'''\copier    html       "python -tt $$s/scripts/ext_copy.py $$i $$o"''')
397
398     # On SuSE the scripts have a .sh suffix, and on debian they are in /usr/share/tex4ht/
399     path, htmlconv = checkProg('a LaTeX -> MS Word converter', ["htlatex $$i 'html,word' 'symbol/!' '-cvalidate'", \
400         "htlatex.sh $$i 'html,word' 'symbol/!' '-cvalidate'", \
401         "/usr/share/tex4ht/htlatex $$i 'html,word' 'symbol/!' '-cvalidate'"],
402         rc_entry = [ r'\converter latex      wordhtml   "%%"    "needaux"' ])
403     if htmlconv.find('htlatex') >= 0:
404       addToRC(r'''\copier    wordhtml       "python -tt $$s/scripts/ext_copy.py -e html,png,css $$i $$o"''')
405     #
406     checkProg('an OpenOffice.org -> LaTeX converter', ['w2l -clean $$i'],
407         rc_entry = [ r'\converter sxw        latex      "%%"    ""' ])
408     #
409     checkProg('an OpenDocument -> LaTeX converter', ['w2l -clean $$i'],
410         rc_entry = [ r'\converter odt        latex      "%%"    ""' ])
411     # According to http://www.tug.org/applications/tex4ht/mn-commands.html
412     # the command mk4ht oolatex $$i has to be used as default,
413     # but as this would require to have Perl installed, in MiKTeX oolatex is
414     # directly available as application.
415     # On SuSE the scripts have a .sh suffix, and on debian they are in /usr/share/tex4ht/
416     # Both SuSE and debian have oolatex
417     checkProg('a LaTeX -> Open Document converter', [
418         'oolatex $$i', 'mk4ht oolatex $$i', 'oolatex.sh $$i', '/usr/share/tex4ht/oolatex $$i',
419         'htlatex $$i \'xhtml,ooffice\' \'ooffice/! -cmozhtf\' \'-coo\' \'-cvalidate\''],
420         rc_entry = [ r'\converter latex      odt        "%%"    "needaux"' ])
421     # On windows it is called latex2rt.exe
422     checkProg('a LaTeX -> RTF converter', ['latex2rtf -p -S -o $$o $$i', 'latex2rt -p -S -o $$o $$i'],
423         rc_entry = [ r'\converter latex      rtf        "%%"    "needaux"' ])
424     #
425     checkProg('a RTF -> HTML converter', ['unrtf --html  $$i > $$o'],
426         rc_entry = [ r'\converter rtf      html        "%%"     ""' ])
427     #
428     checkProg('a PS to PDF converter', ['ps2pdf13 $$i $$o'],
429         rc_entry = [ r'\converter ps         pdf        "%%"    ""' ])
430     #
431     checkProg('a PS to TXT converter', ['pstotext $$i > $$o'],
432         rc_entry = [ r'\converter ps         text2      "%%"    ""' ])
433     #
434     checkProg('a PS to TXT converter', ['ps2ascii $$i $$o'],
435         rc_entry = [ r'\converter ps         text3      "%%"    ""' ])
436     #
437     checkProg('a PS to EPS converter', ['ps2eps $$i'],
438         rc_entry = [ r'\converter ps         eps      "%%"      ""' ])
439     #
440     checkProg('a PDF to PS converter', ['pdf2ps $$i $$o', 'pdftops $$i $$o'],
441         rc_entry = [ r'\converter pdf         ps        "%%"    ""' ])
442     #
443     checkProg('a PDF to EPS converter', ['pdftops -eps -f 1 -l 1 $$i $$o'],
444         rc_entry = [ r'\converter pdf         eps        "%%"   ""' ])
445     #
446     checkProg('a DVI to TXT converter', ['catdvi $$i > $$o'],
447         rc_entry = [ r'\converter dvi        text4      "%%"    ""' ])
448     #
449     checkProg('a DVI to PS converter', ['dvips -o $$o $$i'],
450         rc_entry = [ r'\converter dvi        ps         "%%"    ""' ])
451     #
452     checkProg('a DVI to PDF converter', ['dvipdfmx -o $$o $$i', 'dvipdfm -o $$o $$i'],
453         rc_entry = [ r'\converter dvi        pdf3       "%%"    ""' ])
454     #
455     path, dvipng = checkProg('dvipng', ['dvipng'])
456     if dvipng == "dvipng":
457         addToRC(r'\converter lyxpreview png        "python -tt $$s/scripts/lyxpreview2bitmap.py"        ""')
458     else:
459         addToRC(r'\converter lyxpreview png        ""   ""')
460     #  
461     checkProg('a fax program', ['kdeprintfax $$i', 'ksendfax $$i'],
462         rc_entry = [ r'\converter ps         fax        "%%"    ""'])
463     #
464     checkProg('a FIG -> EPS/PPM converter', ['fig2dev'],
465         rc_entry = [
466             r'''\converter fig        eps        "fig2dev -L eps $$i $$o"       ""
467 \converter fig        ppm        "fig2dev -L ppm $$i $$o"       ""
468 \converter fig        png        "fig2dev -L png $$i $$o"       ""''',
469             ''])
470     #
471     checkProg('a TIFF -> PS converter', ['tiff2ps $$i > $$o'],
472         rc_entry = [ r'\converter tiff       eps        "%%"    ""', ''])
473     #
474     checkProg('a TGIF -> EPS/PPM converter', ['tgif'],
475         rc_entry = [
476             r'''\converter tgif       eps        "tgif -stdout -print -color -eps $$i > $$o"    ""
477 \converter tgif       ppm        "tgif -stdout -print -color -ppm $$i > $$o"    ""
478 \converter tgif       png        "tgif -stdout -print -color -png $$i > $$o"    ""
479 \converter tgif       pdf        "tgif -stdout -print -color -pdf $$i > $$o"    ""''',
480             ''])
481     #
482     checkProg('a WMF -> EPS converter', ['metafile2eps $$i $$o', 'wmf2eps -o $$o $$i'],
483         rc_entry = [ r'\converter wmf        eps        "%%"    ""'])
484     #
485     checkProg('an EMF -> EPS converter', ['metafile2eps $$i $$o', 'wmf2eps -o $$o $$i'],
486         rc_entry = [ r'\converter emf        eps        "%%"    ""'])
487     #
488     checkProg('an EPS -> PDF converter', ['epstopdf'],
489         rc_entry = [ r'\converter eps        pdf        "epstopdf --outfile=$$o $$i"    ""', ''])
490     #
491     # no agr -> pdf converter, since the pdf library used by gracebat is not
492     # free software and therefore not compiled in in many installations.
493     # Fortunately, this is not a big problem, because we will use epstopdf to
494     # convert from agr to pdf via eps without loss of quality.
495     checkProg('a Grace -> Image converter', ['gracebat'],
496         rc_entry = [
497             r'''\converter agr        eps        "gracebat -hardcopy -printfile $$o -hdevice EPS $$i 2>/dev/null"       ""
498 \converter agr        png        "gracebat -hardcopy -printfile $$o -hdevice PNG $$i 2>/dev/null"       ""
499 \converter agr        jpg        "gracebat -hardcopy -printfile $$o -hdevice JPEG $$i 2>/dev/null"      ""
500 \converter agr        ppm        "gracebat -hardcopy -printfile $$o -hdevice PNM $$i 2>/dev/null"       ""''',
501             ''])
502     #
503     checkProg('a Dot -> PDF converter', ['dot -Tpdf $$i -o $$o'],
504         rc_entry = [ r'\converter dot        pdf        "%%"    ""'])
505     #
506     #
507     path, lilypond = checkProg('a LilyPond -> EPS/PDF/PNG converter', ['lilypond'])
508     if (lilypond != ''):
509         version_string = cmdOutput("lilypond --version")
510         match = re.match('GNU LilyPond (\S+)', version_string)
511         if match:
512             version_number = match.groups()[0]
513             version = version_number.split('.')
514             if int(version[0]) > 2 or (len(version) > 1 and int(version[0]) == 2 and int(version[1]) >= 6):
515                 addToRC(r'''\converter lilypond   eps        "lilypond -b eps --ps $$i" ""
516 \converter lilypond   png        "lilypond -b eps --png $$i"    ""''')
517                 if int(version[0]) > 2 or (len(version) > 1 and int(version[0]) == 2 and int(version[1]) >= 9):
518                     addToRC(r'\converter lilypond   pdf        "lilypond -b eps --pdf $$i"      ""')
519                 print '+  found LilyPond version %s.' % version_number
520             else:
521                 print '+  found LilyPond, but version %s is too old.' % version_number
522         else:
523             print '+  found LilyPond, but could not extract version number.'
524     #
525     checkProg('a Noteedit -> LilyPond converter', ['noteedit --export-lilypond $$i'],
526         rc_entry = [ r'\converter noteedit   lilypond   "%%"    ""', ''])
527     #
528     # FIXME: no rc_entry? comment it out
529     # checkProg('Image converter', ['convert $$i $$o'])
530     #
531     # Entries that do not need checkProg
532     addToRC(r'''\converter lyxpreview ppm        "python -tt $$s/scripts/lyxpreview2bitmap.py"  ""
533 \converter lyxpreview-platex ppm        "python -tt $$s/scripts/lyxpreview-platex2bitmap.py"    ""
534 \converter csv        lyx        "python -tt $$s/scripts/csv2lyx.py $$i $$o"    ""
535 \converter date       dateout    "python -tt $$s/scripts/date.py %d-%m-%Y > $$o"        ""
536 \converter docbook    docbook-xml "cp $$i $$o"  "xml"
537 \converter fen        asciichess "python -tt $$s/scripts/fen2ascii.py $$i $$o"  ""
538 \converter fig        pdftex     "python -tt $$s/scripts/fig2pdftex.py $$i $$o" ""
539 \converter fig        pstex      "python -tt $$s/scripts/fig2pstex.py $$i $$o"  ""
540 \converter lyx        lyx13x     "python -tt $$s/lyx2lyx/lyx2lyx -t 221 $$i > $$o"      ""
541 \converter lyx        lyx14x     "python -tt $$s/lyx2lyx/lyx2lyx -t 245 $$i > $$o"      ""
542 \converter lyx        lyx15x     "python -tt $$s/lyx2lyx/lyx2lyx -t 276 $$i > $$o"      ""
543 \converter lyx        clyx       "python -tt $$s/lyx2lyx/lyx2lyx -c big5 -t 245 $$i > $$o"      ""
544 \converter lyx        jlyx       "python -tt $$s/lyx2lyx/lyx2lyx -c euc_jp -t 245 $$i > $$o"    ""
545 \converter lyx        klyx       "python -tt $$s/lyx2lyx/lyx2lyx -c euc_kr -t 245 $$i > $$o"    ""
546 \converter clyx       lyx        "python -tt $$s/lyx2lyx/lyx2lyx -c big5 $$i > $$o"     ""
547 \converter jlyx       lyx        "python -tt $$s/lyx2lyx/lyx2lyx -c euc_jp $$i > $$o"   ""
548 \converter klyx       lyx        "python -tt $$s/lyx2lyx/lyx2lyx -c euc_kr $$i > $$o"   ""
549 ''')
550
551
552 def checkDocBook():
553     ''' Check docbook '''
554     path, DOCBOOK = checkProg('SGML-tools 2.x (DocBook), db2x scripts or xsltproc', ['sgmltools', 'db2dvi', 'xsltproc'],
555         rc_entry = [
556             r'''\converter docbook    dvi        "sgmltools -b dvi $$i" ""
557 \converter docbook    html       "sgmltools -b html $$i"        ""''',
558             r'''\converter docbook    dvi        "db2dvi $$i"   ""
559 \converter docbook    html       "db2html $$i"  ""''',
560             r'''\converter docbook    dvi        ""     ""
561 \converter docbook    html       "" ""''',
562             r'''\converter docbook    dvi        ""     ""
563 \converter docbook    html       ""     ""'''])
564     #
565     if DOCBOOK != '':
566         return ('yes', 'true', '\\def\\hasdocbook{yes}')
567     else:
568         return ('no', 'false', '')
569
570
571 def checkOtherEntries():
572     ''' entries other than Format and Converter '''
573     checkProg('a *roff formatter', ['groff', 'nroff'],
574         rc_entry = [
575             r'\plaintext_roff_command "groff -t -Tlatin1 $$FName"',
576             r'\plaintext_roff_command "tbl $$FName | nroff"',
577             r'\plaintext_roff_command ""' ])
578     checkProg('ChkTeX', ['chktex -n1 -n3 -n6 -n9 -n22 -n25 -n30 -n38'],
579         rc_entry = [ r'\chktex_command "%%"' ])
580     checkProg('BibTeX', ['jbibtex', 'bibtex'],
581         rc_entry = [ r'\bibtex_command "%%"' ])
582     checkProg('an index processor', ['texindy', 'makeindex -c -q'],
583         rc_entry = [ r'\index_command "%%"' ])
584     checkProg('a nomenclature processor', ['makeindex'],
585         rc_entry = [ r'\nomencl_command "makeindex -s nomencl.ist"' ])
586     checkProg('a spellchecker', ['ispell'],
587         rc_entry = [ r'\spell_command "%%"' ])
588     ## FIXME: OCTAVE is not used anywhere
589     # path, OCTAVE = checkProg('Octave', ['octave'])
590     ## FIXME: MAPLE is not used anywhere
591     # path, MAPLE = checkProg('Maple', ['maple'])
592     checkProg('a spool command', ['lp', 'lpr'],
593         rc_entry = [
594             r'''\print_spool_printerprefix "-d "
595 \print_spool_command "lp"''',
596             r'''\print_spool_printerprefix "-P",
597 \print_spool_command "lpr"''',
598             ''])
599     # Add the rest of the entries (no checkProg is required)
600     addToRC(r'''\copier    fig        "python -tt $$s/scripts/fig_copy.py $$i $$o"
601 \copier    pstex      "python -tt $$s/scripts/tex_copy.py $$i $$o $$l"
602 \copier    pdftex     "python -tt $$s/scripts/tex_copy.py $$i $$o $$l"
603 \copier    program    "python -tt $$s/scripts/ext_copy.py $$i $$o"
604 ''')
605
606
607 def processLayoutFile(file, bool_docbook):
608     ''' process layout file and get a line of result
609         
610         Declare lines look like this: (article.layout, scrbook.layout, svjog.layout)
611         
612         \DeclareLaTeXClass{article}
613         \DeclareLaTeXClass[scrbook]{book (koma-script)}
614         \DeclareLaTeXClass[svjour,svjog.clo]{article (Springer - svjour/jog)}
615
616         we expect output:
617         
618         "article" "article" "article" "false"
619         "scrbook" "scrbook" "book (koma-script)" "false"
620         "svjog" "svjour" "article (Springer - svjour/jog)" "false"
621     '''
622     classname = file.split(os.sep)[-1].split('.')[0]
623     # return ('LaTeX', '[a,b]', 'a', ',b,c', 'article') for \DeclareLaTeXClass[a,b,c]{article}
624     p = re.compile(r'\Declare(LaTeX|DocBook)Class\s*(\[([^,]*)(,.*)*\])*\s*{(.*)}')
625     for line in open(file).readlines():
626         res = p.search(line)
627         if res != None:
628             (classtype, optAll, opt, opt1, desc) = res.groups()
629             avai = {'LaTeX':'false', 'DocBook':bool_docbook}[classtype]
630             if opt == None:
631                 opt = classname
632             return '"%s" "%s" "%s" "%s"\n' % (classname, opt, desc, avai)
633     print "Layout file " + file + " has no \DeclareXXClass line. "
634     return ""
635
636
637 def checkLatexConfig(check_config, bool_docbook):
638     ''' Explore the LaTeX configuration 
639         Return None (will be passed to sys.exit()) for success.
640     '''
641     print 'checking LaTeX configuration... ',
642     # if --without-latex-config is forced, or if there is no previous 
643     # version of textclass.lst, re-generate a default file.
644     if not os.path.isfile('textclass.lst') or not check_config:
645         # remove the files only if we want to regenerate
646         removeFiles(['textclass.lst', 'packages.lst'])
647         #
648         # Then, generate a default textclass.lst. In case configure.py
649         # fails, we still have something to start lyx.
650         print ' default values'
651         print '+checking list of textclasses... '
652         tx = open('textclass.lst', 'w')
653         tx.write('''
654 # This file declares layouts and their associated definition files
655 # (include dir. relative to the place where this file is).
656 # It contains only default values, since chkconfig.ltx could not be run
657 # for some reason. Run ./configure.py if you need to update it after a
658 # configuration change.
659 ''')
660         # build the list of available layout files and convert it to commands
661         # for chkconfig.ltx
662         foundClasses = []
663         for file in glob.glob( os.path.join('layouts', '*.layout') ) + \
664             glob.glob( os.path.join(srcdir, 'layouts', '*.layout' ) ) :
665             # valid file?
666             if not os.path.isfile(file): 
667                 continue
668             # get stuff between /xxxx.layout .
669             classname = file.split(os.sep)[-1].split('.')[0]
670             #  tr ' -' '__'`
671             cleanclass = classname.replace(' ', '_')
672             cleanclass = cleanclass.replace('-', '_')
673             # make sure the same class is not considered twice
674             if foundClasses.count(cleanclass) == 0: # not found before
675                 foundClasses.append(cleanclass)
676                 retval = processLayoutFile(file, bool_docbook)
677                 if retval != "":
678                     tx.write(retval)
679         tx.close()
680         print '\tdone'
681     if not check_config:
682         return None
683     # the following will generate textclass.lst.tmp, and packages.lst.tmp
684     else:
685         print '\tauto'
686         removeFiles(['wrap_chkconfig.ltx', 'chkconfig.vars', \
687             'chkconfig.classes', 'chklayouts.tex'])
688         rmcopy = False
689         if not os.path.isfile( 'chkconfig.ltx' ):
690             shutil.copyfile( os.path.join(srcdir, 'chkconfig.ltx'), 'chkconfig.ltx' )
691             rmcopy = True
692         writeToFile('wrap_chkconfig.ltx', '%s\n\\input{chkconfig.ltx}\n' % docbook_cmd)
693         # Construct the list of classes to test for.
694         # build the list of available layout files and convert it to commands
695         # for chkconfig.ltx
696         p1 = re.compile(r'\Declare(LaTeX|DocBook)Class')
697         testclasses = list()
698         for file in glob.glob( os.path.join('layouts', '*.layout') ) + \
699             glob.glob( os.path.join(srcdir, 'layouts', '*.layout' ) ) :
700             if not os.path.isfile(file):
701                 continue
702             classname = file.split(os.sep)[-1].split('.')[0]
703             for line in open(file).readlines():
704                 if p1.search(line) == None:
705                     continue
706                 if line[0] != '#':
707                     print "Wrong input layout file with line '" + line
708                     sys.exit(3)
709                 testclasses.append("\\TestDocClass{%s}{%s}" % (classname, line[1:].strip()))
710                 break
711         testclasses.sort()
712         cl = open('chklayouts.tex', 'w')
713         for line in testclasses:
714             cl.write(line + '\n')
715         cl.close()
716         #
717         # we have chklayouts.tex, then process it
718         fout = os.popen(LATEX + ' wrap_chkconfig.ltx')
719         while True:
720             line = fout.readline()
721             if not line:
722                 break;
723             if re.match('^\+', line):
724                 print line,
725         # if the command succeeds, None will be returned
726         ret = fout.close()
727         #
728         # currently, values in chhkconfig are only used to set
729         # \font_encoding
730         values = {}
731         for line in open('chkconfig.vars').readlines():
732             key, val = re.sub('-', '_', line).split('=')
733             val = val.strip()
734             values[key] = val.strip("'")
735         # chk_fontenc may not exist 
736         try:
737             addToRC(r'\font_encoding "%s"' % values["chk_fontenc"])
738         except:
739             pass
740         if rmcopy:   # remove the copied file
741             removeFiles( [ 'chkconfig.ltx' ] )
742         # if configure successed, move textclass.lst.tmp to textclass.lst
743         # and packages.lst.tmp to packages.lst
744         if os.path.isfile('textclass.lst.tmp') and len(open('textclass.lst.tmp').read()) > 0 \
745             and os.path.isfile('packages.lst.tmp') and len(open('packages.lst.tmp').read()) > 0:
746             shutil.move('textclass.lst.tmp', 'textclass.lst')
747             shutil.move('packages.lst.tmp', 'packages.lst')
748         return ret
749
750
751 def checkModulesConfig():
752   removeFiles(['lyxmodules.lst'])
753
754   print '+checking list of modules... '
755   tx = open('lyxmodules.lst', 'w')
756   tx.write('''## This file declares modules and their associated definition files.
757 ## It has been automatically generated by configure
758 ## Use "Options/Reconfigure" if you need to update it after a
759 ## configuration change. 
760 ''')
761   # build the list of available modules
762   foundClasses = []
763   for file in glob.glob( os.path.join('layouts', '*.module') ) + \
764       glob.glob( os.path.join(srcdir, 'layouts', '*.module' ) ) :
765       # valid file?
766       print file
767       if not os.path.isfile(file): 
768           continue
769       retval = processModuleFile(file, bool_docbook)
770       if retval != "":
771           tx.write(retval)
772   tx.close()
773   print '\tdone'
774
775
776 def processModuleFile(file, bool_docbook):
777     ''' process module file and get a line of result
778
779         The top of a module file should look like this:
780           #\DeclareLyXModule[LaTeX Packages]{ModuleName}
781           #BeginDescription
782           #...body of description...
783           #EndDescription
784           #Requires: [list of required modules]
785           #Excludes: [list of excluded modules]
786         The last two lines are optional
787         We expect output:
788           "ModuleName" "filename" "Description" "Packages" "Requires" "Excludes"
789     '''
790     p = re.compile(r'\DeclareLyXModule\s*(?:\[([^]]*?)\])?{(.*)}')
791     r = re.compile(r'#+\s*Requires: (.*)')
792     x = re.compile(r'#+\s*Excludes: (.*)')
793     b = re.compile(r'#+\s*DescriptionBegin\s*$')
794     e = re.compile(r'#+\s*DescriptionEnd\s*$')
795
796     modname = desc = pkgs = req = excl = ""
797     readingDescription = False
798     descLines = []
799     filename = file.split(os.sep)[-1]
800     filename = filename[:-7]
801
802     for line in open(file).readlines():
803       if readingDescription:
804         res = e.search(line)
805         if res != None:
806           readingDescription = False
807           desc = " ".join(descLines)
808           continue
809         descLines.append(line[1:].strip())
810         continue
811       res = b.search(line)
812       if res != None:
813         readingDescription = True
814         continue
815       res = p.search(line)
816       if res != None:
817           (pkgs, modname) = res.groups()
818           if pkgs == None:
819             pkgs = ""
820           else:
821             tmp = [s.strip() for s in pkgs.split(",")]
822             pkgs = ",".join(tmp)
823           continue
824       res = r.search(line)
825       if res != None:
826         req = res.group(1)
827         tmp = [s.strip() for s in req.split("|")]
828         req = "|".join(tmp)
829         continue
830       res = x.search(line)
831       if res != None:
832         excl = res.group(1)
833         tmp = [s.strip() for s in excl.split("|")]
834         excl = "|".join(tmp)
835         continue
836     if modname != "":
837         return '"%s" "%s" "%s" "%s" "%s" "%s"\n' % (modname, filename, desc, pkgs, req, excl)
838     print "Module file without \DeclareLyXModule line. "
839     return ""
840
841
842 def checkTeXAllowSpaces():
843     ''' Let's check whether spaces are allowed in TeX file names '''
844     tex_allows_spaces = 'false'
845     if lyx_check_config:
846         print "Checking whether TeX allows spaces in file names... ",
847         writeToFile('a b.tex', r'\message{working^^J}' )
848         if os.name == 'nt':
849             latex_out = cmdOutput(LATEX + r""" "\nonstopmode\input{\"a b\"}" """)
850         else:
851             latex_out = cmdOutput(LATEX + r""" '\nonstopmode\input{"a b"}' """)
852         if 'working' in latex_out:
853             print 'yes'
854             tex_allows_spaces = 'true'
855         else:
856             print 'no'
857             tex_allows_spaces = 'false'
858         addToRC(r'\tex_allows_spaces ' + tex_allows_spaces)
859         removeFiles( [ 'a b.tex', 'a b.log', 'texput.log' ])
860
861
862 def removeTempFiles():
863     # Final clean-up
864     if not lyx_keep_temps:
865         removeFiles(['chkconfig.vars',  \
866             'wrap_chkconfig.ltx', 'wrap_chkconfig.log', \
867             'chklayouts.tex', 'missfont.log', 
868             'chklatex.ltx', 'chklatex.log'])
869
870
871 if __name__ == '__main__':
872     lyx_check_config = True
873     outfile = 'lyxrc.defaults'
874     rc_entries = ''
875     lyx_keep_temps = False
876     version_suffix = ''
877     logfile = 'configure.log'
878     ## Parse the command line
879     for op in sys.argv[1:]:   # default shell/for list is $*, the options
880         if op in [ '-help', '--help', '-h' ]:
881             print '''Usage: configure [options]
882 Options:
883     --help                   show this help lines
884     --keep-temps             keep temporary files (for debug. purposes)
885     --without-latex-config   do not run LaTeX to determine configuration
886     --with-version-suffix=suffix suffix of binary installed files
887 '''
888             sys.exit(0)
889         elif op == '--without-latex-config':
890             lyx_check_config = False
891         elif op == '--keep-temps':
892             lyx_keep_temps = True
893         elif op[0:22] == '--with-version-suffix=':  # never mind if op is not long enough
894             version_suffix = op[22:]
895         else:
896             print "Unknown option", op
897             sys.exit(1)
898     #
899     # set up log file for stdout and stderr
900     log = open(logfile, 'w')
901     sys.stdout = Tee(sys.stdout, log)
902     sys.stderr = Tee(sys.stderr, log)
903     # check if we run from the right directory
904     srcdir = os.path.dirname(sys.argv[0])
905     if srcdir == '':
906         srcdir = '.'
907     if not os.path.isfile( os.path.join(srcdir, 'chkconfig.ltx') ):
908         print "configure: error: cannot find chkconfig.ltx script"
909         sys.exit(1)
910     setEnviron()
911     createDirectories()
912     windows_style_tex_paths = checkTeXPaths()
913     dtl_tools = checkDTLtools()
914     ## Write the first part of outfile
915     writeToFile(outfile, '''# This file has been automatically generated by LyX' lib/configure.py
916 # script. It contains default settings that have been determined by
917 # examining your system. PLEASE DO NOT MODIFY ANYTHING HERE! If you
918 # want to customize LyX, use LyX' Preferences dialog or modify directly 
919 # the "preferences" file instead. Any setting in that file will
920 # override the values given here.
921 ''')
922     # check latex
923     LATEX = checkLatex(dtl_tools)
924     checkFormatEntries(dtl_tools)
925     checkConverterEntries()
926     (chk_docbook, bool_docbook, docbook_cmd) = checkDocBook()
927     checkTeXAllowSpaces()
928     if windows_style_tex_paths != '':
929         addToRC(r'\tex_expects_windows_paths %s' % windows_style_tex_paths)
930     checkOtherEntries()
931     # --without-latex-config can disable lyx_check_config
932     ret = checkLatexConfig(lyx_check_config and LATEX != '', bool_docbook)
933     checkModulesConfig() #lyx_check_config and LATEX != '')
934     removeTempFiles()
935     # The return error code can be 256. Because most systems expect an error code
936     # in the range 0-127, 256 can be interpretted as 'success'. Because we expect
937     # a None for success, 'ret is not None' is used to exit.
938     sys.exit(ret is not None)