]> git.lyx.org Git - lyx.git/blob - lib/configure.py
adjust
[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         for ac_dir in path:
162             # check both ac_word and ac_word.exe (for windows system)
163             if os.path.isfile( os.path.join(ac_dir, ac_word) ) or \
164                 os.path.isfile( os.path.join(ac_dir, ac_word + ".exe") ):
165                 print ' yes'
166                 # write rc entries for this command
167                 if len(rc_entry) == 1:
168                     addToRC(rc_entry[0].replace('%%', ac_prog))
169                 elif len(rc_entry) > 1:
170                     addToRC(rc_entry[idx].replace('%%', ac_prog))
171                 return [ac_dir, ac_word]
172         # if not successful
173         print ' no'
174     # write rc entries for 'not found'
175     if len(rc_entry) > 0:  # the last one.
176         addToRC(rc_entry[-1].replace('%%', not_found))
177     return ['', not_found]
178
179
180 def checkViewer(description, progs, rc_entry = [], path = []):
181     ''' The same as checkProg, but for viewers and editors '''
182     return checkProg(description, progs, rc_entry, path, not_found = 'auto')
183
184
185 def checkDTLtools():
186     ''' Check whether DTL tools are available (Windows only) '''
187     # Find programs! Returned path is not used now
188     if ((os.name == 'nt' or sys.platform == 'cygwin') and
189             checkProg('DVI to DTL converter', ['dv2dt']) != ['', ''] and
190             checkProg('DTL to DVI converter', ['dt2dv']) != ['', '']):
191         dtl_tools = True
192     else:
193         dtl_tools = False
194     return dtl_tools
195
196
197 def checkLatex(dtl_tools):
198     ''' Check latex, return lyx_check_config '''
199     if dtl_tools:
200         # Windows only: DraftDVI
201         converter_entry = r'''\converter latex      dvi2       "%%"     "latex"
202 \converter dvi2       dvi        "python -tt $$s/scripts/clean_dvi.py $$i $$o"  ""'''
203     else:
204         converter_entry = r'\converter latex      dvi        "%%"       "latex"'
205     path, LATEX = checkProg('a Latex2e program', ['pplatex $$i', 'latex $$i', 'latex2e $$i'],
206         rc_entry = [converter_entry])
207     # no latex
208     if LATEX != '':
209         # Check if latex is usable
210         writeToFile('chklatex.ltx', '''
211 \\nonstopmode\\makeatletter
212 \\ifx\\undefined\\documentclass\\else
213   \\message{ThisIsLaTeX2e}
214 \\fi
215 \\@@end
216 ''')
217         # run latex on chklatex.ltx and check result
218         if cmdOutput(LATEX + ' chklatex.ltx').find('ThisIsLaTeX2e') != -1:
219             # valid latex2e
220             return LATEX
221         else:
222             print "Latex not usable (not LaTeX2e) "
223         # remove temporary files
224         removeFiles(['chklatex.ltx', 'chklatex.log'])
225     return ''
226
227
228 def checkFormatEntries(dtl_tools):  
229     ''' Check all formats (\Format entries) '''
230     checkViewer('a Tgif viewer and editor', ['tgif'],
231         rc_entry = [r'\Format tgif       obj     Tgif                   "" "%%" "%%"    "vector"'])
232     #
233     checkViewer('a FIG viewer and editor', ['xfig'],
234         rc_entry = [r'\Format fig        fig     FIG                    "" "%%" "%%"    "vector"'])
235     #
236     checkViewer('a Grace viewer and editor', ['xmgrace'],
237         rc_entry = [r'\Format agr        agr     Grace                  "" "%%" "%%"    "vector"'])
238     #
239     checkViewer('a FEN viewer and editor', ['xboard -lpf $$i -mode EditPosition'],
240         rc_entry = [r'\Format fen        fen     FEN                    "" "%%" "%%"    ""'])
241     #
242     path, iv = checkViewer('a raster image viewer', ['xv', 'kview', 'gimp-remote', 'gimp'])
243     path, ie = checkViewer('a raster image editor', ['gimp-remote', 'gimp'])
244     addToRC(r'''\Format bmp        bmp     BMP                    "" "%s"       "%s"    ""
245 \Format gif        gif     GIF                    "" "%s"       "%s"    ""
246 \Format jpg        jpg     JPEG                   "" "%s"       "%s"    ""
247 \Format pbm        pbm     PBM                    "" "%s"       "%s"    ""
248 \Format pgm        pgm     PGM                    "" "%s"       "%s"    ""
249 \Format png        png     PNG                    "" "%s"       "%s"    ""
250 \Format ppm        ppm     PPM                    "" "%s"       "%s"    ""
251 \Format tiff       tif     TIFF                   "" "%s"       "%s"    ""
252 \Format xbm        xbm     XBM                    "" "%s"       "%s"    ""
253 \Format xpm        xpm     XPM                    "" "%s"       "%s"    ""''' % \
254         (iv, ie, iv, ie, iv, ie, iv, ie, iv, ie, iv, ie, iv, ie, iv, ie, iv, ie, iv, ie) )
255     #
256     checkViewer('a text editor', ['xemacs', 'gvim', 'kedit', 'kwrite', 'kate', \
257         'nedit', 'gedit', 'notepad'],
258         rc_entry = [r'''\Format asciichess asc    "Plain text (chess output)"  "" ""    "%%"    ""
259 \Format asciiimage asc    "Plain text (image)"         "" ""    "%%"    ""
260 \Format asciixfig  asc    "Plain text (Xfig output)"   "" ""    "%%"    ""
261 \Format dateout    tmp    "date (output)"         "" "" "%%"    ""
262 \Format docbook    sgml    DocBook                B  "" "%%"    "document"
263 \Format docbook-xml xml   "Docbook (XML)"         "" "" "%%"    "document"
264 \Format literate   nw      NoWeb                  N  "" "%%"    "document"
265 \Format lilypond   ly     "LilyPond music"        "" "" "%%"    "vector"
266 \Format latex      tex    "LaTeX (plain)"         L  "" "%%"    "document"
267 \Format linuxdoc   sgml    LinuxDoc               x  "" "%%"    "document"
268 \Format pdflatex   tex    "LaTeX (pdflatex)"      "" "" "%%"    "document"
269 \Format text       txt    "Plain text"            a  "" "%%"    "document"
270 \Format text2      txt    "Plain text (pstotext)" "" "" "%%"    "document"
271 \Format text3      txt    "Plain text (ps2ascii)" "" "" "%%"    "document"
272 \Format text4      txt    "Plain text (catdvi)"   "" "" "%%"    "document"
273 \Format textparagraph txt "Plain Text, Join Lines" "" ""        "%%"    "document"''' ])
274     #
275     #checkProg('a Postscript interpreter', ['gs'],
276     #  rc_entry = [ r'\ps_command "%%"' ])
277     checkViewer('a Postscript previewer', ['kghostview', 'evince', 'gv', 'ghostview -swap'],
278         rc_entry = [r'''\Format eps        eps     EPS                    "" "%%"       ""      "vector"
279 \Format ps         ps      Postscript             t  "%%"       ""      "document,vector"'''])
280     #
281     checkViewer('a PDF previewer', ['kpdf', 'evince', 'kghostview', 'xpdf', 'acrobat', 'acroread', \
282                     'gv', 'ghostview'],
283         rc_entry = [r'''\Format pdf        pdf    "PDF (ps2pdf)"          P  "%%"       ""      "document,vector"
284 \Format pdf2       pdf    "PDF (pdflatex)"        F  "%%"       ""      "document,vector"
285 \Format pdf3       pdf    "PDF (dvipdfm)"         m  "%%"       ""      "document,vector"'''])
286     #
287     checkViewer('a DVI previewer', ['xdvi', 'kdvi'],
288         rc_entry = [r'\Format dvi        dvi     DVI                    D  "%%" ""      "document,vector"'])
289     if dtl_tools:
290         # Windows only: DraftDVI
291         addToRC(r'\Format dvi2       dvi     DraftDVI               ""  ""      ""      "vector"')
292     #
293     checkViewer('an HTML previewer', ['firefox', 'mozilla file://$$p$$i', 'netscape'],
294         rc_entry = [r'\Format html       html    HTML                   H  "%%" ""      "document"'])
295     #
296     checkViewer('Noteedit', ['noteedit'],
297         rc_entry = [r'\Format noteedit   not     Noteedit               "" "%%" "%%"    "vector"'])
298     #
299     checkViewer('an OpenDocument viewer', ['oowriter'],
300         rc_entry = [r'\Format odt        odt     OpenDocument           "" "%%" "%%"    "document,vector"'])
301     #
302     # entried that do not need checkProg
303     addToRC(r'''\Format date       ""     "date command"          "" "" ""      ""
304 \Format fax        ""      Fax                    "" "" ""      "document"
305 \Format lyx        lyx     LyX                    "" "" ""      ""
306 \Format lyx13x     lyx13  "LyX 1.3.x"             "" "" ""      "document"
307 \Format lyx14x     lyx14  "LyX 1.4.x"             "" "" ""      "document"
308 \Format lyx15x     lyx15  "LyX 1.5.x"             "" "" ""      "document"
309 \Format clyx       cjklyx "CJK LyX 1.4.x (big5)"  "" "" ""      "document"
310 \Format jlyx       cjklyx "CJK LyX 1.4.x (euc-jp)" "" ""        ""      "document"
311 \Format klyx       cjklyx "CJK LyX 1.4.x (euc-kr)" "" ""        ""      "document"
312 \Format lyxpreview lyxpreview "LyX Preview"       "" "" ""      ""
313 \Format pdftex     pdftex_t PDFTEX                "" "" ""      ""
314 \Format program    ""      Program                "" "" ""      ""
315 \Format pstex      pstex_t PSTEX                  "" "" ""      ""
316 \Format rtf        rtf    "Rich Text Format"      "" "" ""      "document,vector"
317 \Format sxw        sxw    "OpenOffice.Org (sxw)"  ""  ""        ""      "document,vector"
318 \Format wmf        wmf    "Windows Metafile"      "" "" ""      "vector"
319 \Format emf        emf    "Enhanced Metafile"     "" "" ""      "vector"
320 \Format word       doc    "MS Word"               W  "" ""      "document,vector"
321 \Format wordhtml   html   "HTML (MS Word)"        "" ""        ""       "document"
322 ''')
323
324
325 def checkConverterEntries():
326     ''' Check all converters (\converter entries) '''
327     checkProg('the pdflatex program', ['pdflatex $$i'],
328         rc_entry = [ r'\converter pdflatex   pdf2       "%%"    "latex"' ])
329     
330     ''' If we're running LyX in-place then tex2lyx will be found in
331             ../src/tex2lyx. Add this directory to the PATH temporarily and
332             search for tex2lyx.
333             Use PATH to avoid any problems with paths-with-spaces.
334     '''
335     path_orig = os.environ["PATH"]
336     os.environ["PATH"] = os.path.join('..', 'src', 'tex2lyx') + \
337         os.pathsep + path_orig
338
339     checkProg('a LaTeX/Noweb -> LyX converter', ['tex2lyx', 'tex2lyx' + version_suffix],
340         rc_entry = [r'''\converter latex      lyx        "%% -f $$i $$o"        ""
341 \converter literate   lyx        "%% -n -f $$i $$o"     ""'''])
342
343     os.environ["PATH"] = path_orig
344
345     #
346     checkProg('a Noweb -> LaTeX converter', ['noweave -delay -index $$i > $$o'],
347         rc_entry = [ r'\converter literate   latex      "%%"    ""' ])
348     #
349     checkProg('an HTML -> LaTeX converter', ['html2latex $$i'],
350         rc_entry = [ r'\converter html       latex      "%%"    ""' ])
351     #
352     checkProg('an MS Word -> LaTeX converter', ['wvCleanLatex $$i $$o'],
353         rc_entry = [ r'\converter word       latex      "%%"    ""' ])
354     # On SuSE the scripts have a .sh suffix, and on debian they are in /usr/share/tex4ht/
355     path, htmlconv = checkProg('a LaTeX -> HTML converter', ['htlatex $$i', 'htlatex.sh $$i', \
356         '/usr/share/tex4ht/htlatex $$i', 'tth  -t -e2 -L$$b < $$i > $$o', \
357         'latex2html -no_subdir -split 0 -show_section_numbers $$i', 'hevea -s $$i'],
358         rc_entry = [ r'\converter latex      html       "%%"    "needaux"' ])
359     if htmlconv.find('htlatex') >= 0 or htmlconv == 'latex2html':
360       addToRC(r'''\copier    html       "python -tt $$s/scripts/ext_copy.py -e html,png,css $$i $$o"''')
361     else:
362       addToRC(r'''\copier    html       "python -tt $$s/scripts/ext_copy.py $$i $$o"''')
363
364     # On SuSE the scripts have a .sh suffix, and on debian they are in /usr/share/tex4ht/
365     path, htmlconv = checkProg('a LaTeX -> MS Word converter', ["htlatex $$i 'html,word' 'symbol/!' '-cvalidate'", \
366         "htlatex.sh $$i 'html,word' 'symbol/!' '-cvalidate'", \
367         "/usr/share/tex4ht/htlatex $$i 'html,word' 'symbol/!' '-cvalidate'"],
368         rc_entry = [ r'\converter latex      wordhtml   "%%"    "needaux"' ])
369     if htmlconv.find('htlatex') >= 0:
370       addToRC(r'''\copier    wordhtml       "python -tt $$s/scripts/ext_copy.py -e html,png,css $$i $$o"''')
371     #
372     checkProg('an OpenOffice.org -> LaTeX converter', ['w2l -clean $$i'],
373         rc_entry = [ r'\converter sxw        latex      "%%"    ""' ])
374     #
375     checkProg('an OpenDocument -> LaTeX converter', ['w2l -clean $$i'],
376         rc_entry = [ r'\converter odt        latex      "%%"    ""' ])
377     # On SuSE the scripts have a .sh suffix, and on debian they are in /usr/share/tex4ht/
378     # Both SuSE and debian have oolatex
379     checkProg('a LaTeX -> Open Document converter', ['oolatex $$i', 'oolatex.sh $$i', \
380         '/usr/share/tex4ht/oolatex $$i', \
381         'htlatex $$i \'xhtml,ooffice\' \'ooffice/! -cmozhtf\' \'-coo\' \'-cvalidate\''],
382         rc_entry = [ r'\converter latex      odt        "%%"    "needaux"' ])
383     # On windows it is called latex2rt.exe
384     checkProg('a LaTeX -> RTF converter', ['latex2rtf -p -S -o $$o $$i', 'latex2rt -p -S -o $$o $$i'],
385         rc_entry = [ r'\converter latex      rtf        "%%"    "needaux"' ])
386     #
387     checkProg('a PS to PDF converter', ['ps2pdf13 $$i $$o'],
388         rc_entry = [ r'\converter ps         pdf        "%%"    ""' ])
389     #
390     checkProg('a PS to TXT converter', ['pstotext $$i > $$o'],
391         rc_entry = [ r'\converter ps         text2      "%%"    ""' ])
392     #
393     checkProg('a PS to TXT converter', ['ps2ascii $$i $$o'],
394         rc_entry = [ r'\converter ps         text3      "%%"    ""' ])
395     #
396     checkProg('a DVI to TXT converter', ['catdvi $$i > $$o'],
397         rc_entry = [ r'\converter dvi        text4      "%%"    ""' ])
398     #
399     checkProg('a DVI to PS converter', ['dvips -o $$o $$i'],
400         rc_entry = [ r'\converter dvi        ps         "%%"    ""' ])
401     #
402     checkProg('a DVI to PDF converter', ['dvipdfmx -o $$o $$i', 'dvipdfm -o $$o $$i'],
403         rc_entry = [ r'\converter dvi        pdf3       "%%"    ""' ])
404     #
405     path, dvipng = checkProg('dvipng', ['dvipng'])
406     if dvipng == "dvipng":
407         addToRC(r'\converter lyxpreview png        "python -tt $$s/scripts/lyxpreview2bitmap.py"        ""')
408     else:
409         addToRC(r'\converter lyxpreview png        ""   ""')
410     #  
411     checkProg('a fax program', ['kdeprintfax $$i', 'ksendfax $$i'],
412         rc_entry = [ r'\converter ps         fax        "%%"    ""'])
413     #
414     checkProg('a FIG -> EPS/PPM converter', ['fig2dev'],
415         rc_entry = [
416             r'''\converter fig        eps        "fig2dev -L eps $$i $$o"       ""
417 \converter fig        ppm        "fig2dev -L ppm $$i $$o"       ""
418 \converter fig        png        "fig2dev -L png $$i $$o"       ""''',
419             ''])
420     #
421     checkProg('a TIFF -> PS converter', ['tiff2ps $$i > $$o'],
422         rc_entry = [ r'\converter tiff       eps        "%%"    ""', ''])
423     #
424     checkProg('a TGIF -> EPS/PPM converter', ['tgif'],
425         rc_entry = [
426             r'''\converter tgif       eps        "tgif -stdout -print -color -eps $$i > $$o"    ""
427 \converter tgif       ppm        "tgif -stdout -print -color -ppm $$i > $$o"    ""
428 \converter tgif       png        "tgif -stdout -print -color -png $$i > $$o"    ""
429 \converter tgif       pdf        "tgif -stdout -print -color -pdf $$i > $$o"    ""''',
430             ''])
431     #
432     checkProg('a WMF -> EPS converter', ['metafile2eps $$i $$o', 'wmf2eps -o $$o $$i'],
433         rc_entry = [ r'\converter wmf        eps        "%%"    ""'])
434     #
435     checkProg('an EMF -> EPS converter', ['metafile2eps $$i $$o', 'wmf2eps -o $$o $$i'],
436         rc_entry = [ r'\converter emf        eps        "%%"    ""'])
437     #
438     checkProg('an EPS -> PDF converter', ['epstopdf'],
439         rc_entry = [ r'\converter eps        pdf        "epstopdf --outfile=$$o $$i"    ""', ''])
440     #
441     # no agr -> pdf converter, since the pdf library used by gracebat is not
442     # free software and therefore not compiled in in many installations.
443     # Fortunately, this is not a big problem, because we will use epstopdf to
444     # convert from agr to pdf via eps without loss of quality.
445     checkProg('a Grace -> Image converter', ['gracebat'],
446         rc_entry = [
447             r'''\converter agr        eps        "gracebat -hardcopy -printfile $$o -hdevice EPS $$i 2>/dev/null"       ""
448 \converter agr        png        "gracebat -hardcopy -printfile $$o -hdevice PNG $$i 2>/dev/null"       ""
449 \converter agr        jpg        "gracebat -hardcopy -printfile $$o -hdevice JPEG $$i 2>/dev/null"      ""
450 \converter agr        ppm        "gracebat -hardcopy -printfile $$o -hdevice PNM $$i 2>/dev/null"       ""''',
451             ''])
452     #
453     #
454     path, lilypond = checkProg('a LilyPond -> EPS/PDF/PNG converter', ['lilypond'])
455     if (lilypond != ''):
456         version_string = cmdOutput("lilypond --version")
457         match = re.match('GNU LilyPond (\S+)', version_string)
458         if match:
459             version_number = match.groups()[0]
460             version = version_number.split('.')
461             if int(version[0]) > 2 or (len(version) > 1 and int(version[0]) == 2 and int(version[1]) >= 6):
462                 addToRC(r'''\converter lilypond   eps        "lilypond -b eps --ps $$i" ""
463 \converter lilypond   png        "lilypond -b eps --png $$i"    ""''')
464                 if int(version[0]) > 2 or (len(version) > 1 and int(version[0]) == 2 and int(version[1]) >= 9):
465                     addToRC(r'\converter lilypond   pdf        "lilypond -b eps --pdf $$i"      ""')
466                 print '+  found LilyPond version %s.' % version_number
467             else:
468                 print '+  found LilyPond, but version %s is too old.' % version_number
469         else:
470             print '+  found LilyPond, but could not extract version number.'
471     #
472     checkProg('a Noteedit -> LilyPond converter', ['noteedit --export-lilypond $$i'],
473         rc_entry = [ r'\converter noteedit   lilypond   "%%"    ""', ''])
474     #
475     # FIXME: no rc_entry? comment it out
476     # checkProg('Image converter', ['convert $$i $$o'])
477     #
478     # Entries that do not need checkProg
479     addToRC(r'''\converter lyxpreview ppm        "python -tt $$s/scripts/lyxpreview2bitmap.py"  ""
480 \converter date       dateout    "python -tt $$s/scripts/date.py %d-%m-%Y > $$o"        ""
481 \converter docbook    docbook-xml "cp $$i $$o"  "xml"
482 \converter fen        asciichess "python -tt $$s/scripts/fen2ascii.py $$i $$o"  ""
483 \converter fig        pdftex     "python -tt $$s/scripts/fig2pdftex.py $$i $$o" ""
484 \converter fig        pstex      "python -tt $$s/scripts/fig2pstex.py $$i $$o"  ""
485 \converter lyx        lyx13x     "python -tt $$s/lyx2lyx/lyx2lyx -t 221 $$i > $$o"      ""
486 \converter lyx        lyx14x     "python -tt $$s/lyx2lyx/lyx2lyx -t 245 $$i > $$o"      ""
487 \converter lyx        lyx15x     "python -tt $$s/lyx2lyx/lyx2lyx -t 276 $$i > $$o"      ""
488 \converter lyx        clyx       "python -tt $$s/lyx2lyx/lyx2lyx -c big5 -t 245 $$i > $$o"      ""
489 \converter lyx        jlyx       "python -tt $$s/lyx2lyx/lyx2lyx -c euc_jp -t 245 $$i > $$o"    ""
490 \converter lyx        klyx       "python -tt $$s/lyx2lyx/lyx2lyx -c euc_kr -t 245 $$i > $$o"    ""
491 \converter clyx       lyx        "python -tt $$s/lyx2lyx/lyx2lyx -c big5 $$i > $$o"     ""
492 \converter jlyx       lyx        "python -tt $$s/lyx2lyx/lyx2lyx -c euc_jp $$i > $$o"   ""
493 \converter klyx       lyx        "python -tt $$s/lyx2lyx/lyx2lyx -c euc_kr $$i > $$o"   ""
494 ''')
495
496
497 def checkLinuxDoc():
498     ''' Check linuxdoc '''
499     #
500     path, LINUXDOC = checkProg('SGML-tools 1.x (LinuxDoc)', ['sgml2lyx'],
501         rc_entry = [
502         r'''\converter linuxdoc   lyx        "sgml2lyx $$i"     ""
503 \converter linuxdoc   latex      "sgml2latex $$i"       ""
504 \converter linuxdoc   dvi        "sgml2latex -o dvi $$i"        ""
505 \converter linuxdoc   html       "sgml2html $$i"        ""''',
506         r'''\converter linuxdoc   lyx        "" ""
507 \converter linuxdoc   latex      ""     ""
508 \converter linuxdoc   dvi        ""     ""
509 \converter linuxdoc   html       ""     ""''' ])
510     if LINUXDOC != '':
511         return ('yes', 'true', '\\def\\haslinuxdoc{yes}')
512     else:
513         return ('no', 'false', '')
514
515
516 def checkDocBook():
517     ''' Check docbook '''
518     path, DOCBOOK = checkProg('SGML-tools 2.x (DocBook) or db2x scripts', ['sgmltools', 'db2dvi'],
519         rc_entry = [
520             r'''\converter docbook    dvi        "sgmltools -b dvi $$i" ""
521 \converter docbook    html       "sgmltools -b html $$i"        ""''',
522             r'''\converter docbook    dvi        "db2dvi $$i"   ""
523 \converter docbook    html       "db2html $$i"  ""''',
524             r'''\converter docbook    dvi        ""     ""
525 \converter docbook    html       ""     ""'''])
526     #
527     if DOCBOOK != '':
528         return ('yes', 'true', '\\def\\hasdocbook{yes}')
529     else:
530         return ('no', 'false', '')
531
532
533 def checkOtherEntries():
534     ''' entries other than Format and Converter '''
535     checkProg('a *roff formatter', ['groff', 'nroff'],
536         rc_entry = [
537             r'\plaintext_roff_command "groff -t -Tlatin1 $$FName"',
538             r'\plaintext_roff_command "tbl $$FName | nroff"',
539             r'\plaintext_roff_command ""' ])
540     checkProg('ChkTeX', ['chktex -n1 -n3 -n6 -n9 -n22 -n25 -n30 -n38'],
541         rc_entry = [ r'\chktex_command "%%"' ])
542     checkProg('a spellchecker', ['ispell'],
543         rc_entry = [ r'\spell_command "%%"' ])
544     ## FIXME: OCTAVE is not used anywhere
545     # path, OCTAVE = checkProg('Octave', ['octave'])
546     ## FIXME: MAPLE is not used anywhere
547     # path, MAPLE = checkProg('Maple', ['maple'])
548     checkProg('a spool command', ['lp', 'lpr'],
549         rc_entry = [
550             r'''\print_spool_printerprefix "-d "
551 \print_spool_command "lp"''',
552             r'''\print_spool_printerprefix "-P",
553 \print_spool_command "lpr"''',
554             ''])
555     # Add the rest of the entries (no checkProg is required)
556     addToRC(r'''\copier    fig        "python -tt $$s/scripts/fig_copy.py $$i $$o"
557 \copier    pstex      "python -tt $$s/scripts/tex_copy.py $$i $$o $$l"
558 \copier    pdftex     "python -tt $$s/scripts/tex_copy.py $$i $$o $$l"
559 \copier    program    "python -tt $$s/scripts/ext_copy.py $$i $$o"
560 ''')
561
562
563 def processLayoutFile(file, bool_docbook, bool_linuxdoc):
564     ''' process layout file and get a line of result
565         
566         Declare lines look like this: (article.layout, scrbook.layout, svjog.layout)
567         
568         \DeclareLaTeXClass{article}
569         \DeclareLaTeXClass[scrbook]{book (koma-script)}
570         \DeclareLaTeXClass[svjour,svjog.clo]{article (Springer - svjour/jog)}
571
572         we expect output:
573         
574         "article" "article" "article" "false"
575         "scrbook" "scrbook" "book (koma-script)" "false"
576         "svjog" "svjour" "article (Springer - svjour/jog)" "false"
577     '''
578     classname = file.split(os.sep)[-1].split('.')[0]
579     # return ('LaTeX', '[a,b]', 'a', ',b,c', 'article') for \DeclareLaTeXClass[a,b,c]{article}
580     p = re.compile(r'\Declare(LaTeX|DocBook|LinuxDoc)Class\s*(\[([^,]*)(,.*)*\])*\s*{(.*)}')
581     for line in open(file).readlines():
582         res = p.search(line)
583         if res != None:
584             (classtype, optAll, opt, opt1, desc) = res.groups()
585             avai = {'LaTeX':'false', 'DocBook':bool_docbook, 'LinuxDoc':bool_linuxdoc}[classtype]
586             if opt == None:
587                 opt = classname
588             return '"%s" "%s" "%s" "%s"\n' % (classname, opt, desc, avai)
589     print "Layout file without \DeclareXXClass line. "
590     sys.exit(2)
591
592     
593 def checkLatexConfig(check_config, bool_docbook, bool_linuxdoc):
594     ''' Explore the LaTeX configuration 
595         Return None (will be passed to sys.exit()) for success.
596     '''
597     print 'checking LaTeX configuration... ',
598     # if --without-latex-config is forced, or if there is no previous 
599     # version of textclass.lst, re-generate a default file.
600     if not os.path.isfile('textclass.lst') or not check_config:
601         # remove the files only if we want to regenerate
602         removeFiles(['textclass.lst', 'packages.lst'])
603         #
604         # Then, generate a default textclass.lst. In case configure.py
605         # fails, we still have something to start lyx.
606         print ' default values'
607         print '+checking list of textclasses... '
608         tx = open('textclass.lst', 'w')
609         tx.write('''
610 # This file declares layouts and their associated definition files
611 # (include dir. relative to the place where this file is).
612 # It contains only default values, since chkconfig.ltx could not be run
613 # for some reason. Run ./configure.py if you need to update it after a
614 # configuration change.
615 ''')
616         # build the list of available layout files and convert it to commands
617         # for chkconfig.ltx
618         foundClasses = []
619         for file in glob.glob( os.path.join('layouts', '*.layout') ) + \
620             glob.glob( os.path.join(srcdir, 'layouts', '*.layout' ) ) :
621             # valid file?
622             if not os.path.isfile(file): 
623                 continue
624             # get stuff between /xxxx.layout .
625             classname = file.split(os.sep)[-1].split('.')[0]
626             #  tr ' -' '__'`
627             cleanclass = classname.replace(' ', '_')
628             cleanclass = cleanclass.replace('-', '_')
629             # make sure the same class is not considered twice
630             if foundClasses.count(cleanclass) == 0: # not found before
631                 foundClasses.append(cleanclass)
632                 tx.write(processLayoutFile(file, bool_docbook, bool_linuxdoc))
633         tx.close()
634         print '\tdone'
635     if not check_config:
636         return None
637     # the following will generate textclass.lst.tmp, and packages.lst.tmp
638     else:
639         print '\tauto'
640         removeFiles(['wrap_chkconfig.ltx', 'chkconfig.vars', \
641             'chkconfig.classes', 'chklayouts.tex'])
642         rmcopy = False
643         if not os.path.isfile( 'chkconfig.ltx' ):
644             shutil.copyfile( os.path.join(srcdir, 'chkconfig.ltx'), 'chkconfig.ltx' )
645             rmcopy = True
646         writeToFile('wrap_chkconfig.ltx', '%s\n%s\n\\input{chkconfig.ltx}\n' \
647             % (linuxdoc_cmd, docbook_cmd) )
648         # Construct the list of classes to test for.
649         # build the list of available layout files and convert it to commands
650         # for chkconfig.ltx
651         p1 = re.compile(r'\Declare(LaTeX|DocBook)Class')
652         testclasses = list()
653         for file in glob.glob( os.path.join('layouts', '*.layout') ) + \
654             glob.glob( os.path.join(srcdir, 'layouts', '*.layout' ) ) :
655             if not os.path.isfile(file):
656                 continue
657             classname = file.split(os.sep)[-1].split('.')[0]
658             for line in open(file).readlines():
659                 if p1.search(line) == None:
660                     continue
661                 if line[0] != '#':
662                     print "Wrong input layout file with line '" + line
663                     sys.exit(3)
664                 testclasses.append("\\TestDocClass{%s}{%s}" % (classname, line[1:].strip()))
665                 break
666         testclasses.sort()
667         cl = open('chklayouts.tex', 'w')
668         for line in testclasses:
669             cl.write(line + '\n')
670         cl.close()
671         #
672         # we have chklayouts.tex, then process it
673         fout = os.popen(LATEX + ' wrap_chkconfig.ltx')
674         while True:
675             line = fout.readline()
676             if not line:
677                 break;
678             if re.match('^\+', line):
679                 print line,
680         # if the command succeeds, None will be returned
681         ret = fout.close()
682         #
683         # currently, values in chhkconfig are only used to set
684         # \font_encoding
685         values = {}
686         for line in open('chkconfig.vars').readlines():
687             key, val = re.sub('-', '_', line).split('=')
688             val = val.strip()
689             values[key] = val.strip("'")
690         # chk_fontenc may not exist 
691         try:
692             addToRC(r'\font_encoding "%s"' % values["chk_fontenc"])
693         except:
694             pass
695         if rmcopy:   # remove the copied file
696             removeFiles( [ 'chkconfig.ltx' ] )
697         # if configure successed, move textclass.lst.tmp to textclass.lst
698         # and packages.lst.tmp to packages.lst
699         if os.path.isfile('textclass.lst.tmp') and len(open('textclass.lst.tmp').read()) > 0 \
700             and os.path.isfile('packages.lst.tmp') and len(open('packages.lst.tmp').read()) > 0:
701             shutil.move('textclass.lst.tmp', 'textclass.lst')
702             shutil.move('packages.lst.tmp', 'packages.lst')
703         return ret
704
705
706 def checkModulesConfig():
707   removeFiles(['lyxmodules.lst'])
708
709   print '+checking list of modules... '
710   tx = open('lyxmodules.lst', 'w')
711   tx.write('''## This file declares modules and their associated definition files.
712 ## It has been automatically generated by configure
713 ## Use "Options/Reconfigure" if you need to update it after a
714 ## configuration change. 
715 ''')
716   # build the list of available modules
717   foundClasses = []
718   for file in glob.glob( os.path.join('layouts', '*.module') ) + \
719       glob.glob( os.path.join(srcdir, 'layouts', '*.module' ) ) :
720       # valid file?
721       print file
722       if not os.path.isfile(file): 
723           continue
724       tx.write(processModuleFile(file, bool_docbook, bool_linuxdoc))
725   tx.close()
726   print '\tdone'
727
728 def processModuleFile(file, bool_docbook, bool_linuxdoc):
729     ''' process module file and get a line of result
730
731         Declare lines look like this:
732           \DeclareLyXModule[LaTeX Packages]{Description}{ModuleName}...
733         We expect output:
734           "ModuleName" "filename" "Description" "Packages"
735         "
736     '''
737     p = re.compile(r'\DeclareLyXModule\s*(?:\[([^]]*)\])?{(.*)}{(.*)}')
738     for line in open(file).readlines():
739         res = p.search(line)
740         if res != None:
741             (packages, desc, modname) = res.groups()
742             #check availability...need to add that
743             if packages == None:
744               packages = ""
745             else:
746               pkgs = [s.strip() for s in packages.split(",")]
747               packages = ",".join(pkgs)
748
749             filename = file.split(os.sep)[-1]
750             return '"%s" "%s" "%s" "%s"\n' % (modname, filename, desc, packages)
751     print "Module file without \DeclareLyXModule line. "
752     sys.exit(2)
753
754
755
756
757 def checkTeXAllowSpaces():
758     ''' Let's check whether spaces are allowed in TeX file names '''
759     tex_allows_spaces = 'false'
760     if lyx_check_config:
761         print "Checking whether TeX allows spaces in file names... ",
762         writeToFile('a b.tex', r'\message{working^^J}' )
763         if os.name == 'nt':
764             latex_out = cmdOutput(LATEX + r""" "\nonstopmode\input{\"a b\"}" """)
765         else:
766             latex_out = cmdOutput(LATEX + r""" '\nonstopmode\input{"a b"}' """)
767         if 'working' in latex_out:
768             print 'yes'
769             tex_allows_spaces = 'true'
770         else:
771             print 'no'
772             tex_allows_spaces = 'false'
773         addToRC(r'\tex_allows_spaces ' + tex_allows_spaces)
774         removeFiles( [ 'a b.tex', 'a b.log', 'texput.log' ])
775
776
777 def removeTempFiles():
778     # Final clean-up
779     if not lyx_keep_temps:
780         removeFiles(['chkconfig.vars',  \
781             'wrap_chkconfig.ltx', 'wrap_chkconfig.log', \
782             'chklayouts.tex', 'missfont.log', 
783             'chklatex.ltx', 'chklatex.log'])
784
785
786 if __name__ == '__main__':
787     lyx_check_config = True
788     outfile = 'lyxrc.defaults'
789     rc_entries = ''
790     lyx_keep_temps = False
791     version_suffix = ''
792     logfile = 'configure.log'
793     ## Parse the command line
794     for op in sys.argv[1:]:   # default shell/for list is $*, the options
795         if op in [ '-help', '--help', '-h' ]:
796             print '''Usage: configure [options]
797 Options:
798     --help                   show this help lines
799     --keep-temps             keep temporary files (for debug. purposes)
800     --without-latex-config   do not run LaTeX to determine configuration
801     --with-version-suffix=suffix suffix of binary installed files
802 '''
803             sys.exit(0)
804         elif op == '--without-latex-config':
805             lyx_check_config = False
806         elif op == '--keep-temps':
807             lyx_keep_temps = True
808         elif op[0:22] == '--with-version-suffix=':  # never mind if op is not long enough
809             version_suffix = op[22:]
810         else:
811             print "Unknown option", op
812             sys.exit(1)
813     #
814     # set up log file for stdout and stderr
815     log = open(logfile, 'w')
816     sys.stdout = Tee(sys.stdout, log)
817     sys.stderr = Tee(sys.stderr, log)
818     # check if we run from the right directory
819     srcdir = os.path.dirname(sys.argv[0])
820     if srcdir == '':
821         srcdir = '.'
822     if not os.path.isfile( os.path.join(srcdir, 'chkconfig.ltx') ):
823         print "configure: error: cannot find chkconfig.ltx script"
824         sys.exit(1)
825     setEnviron()
826     createDirectories()
827     windows_style_tex_paths = checkTeXPaths()
828     dtl_tools = checkDTLtools()
829     ## Write the first part of outfile
830     writeToFile(outfile, '''# This file has been automatically generated by LyX' lib/configure.py
831 # script. It contains default settings that have been determined by
832 # examining your system. PLEASE DO NOT MODIFY ANYTHING HERE! If you
833 # want to customize LyX, use LyX' Preferences dialog or modify directly 
834 # the "preferences" file instead. Any setting in that file will
835 # override the values given here.
836 ''')
837     # check latex
838     LATEX = checkLatex(dtl_tools)
839     checkFormatEntries(dtl_tools)
840     checkConverterEntries()
841     (chk_linuxdoc, bool_linuxdoc, linuxdoc_cmd) = checkLinuxDoc()
842     (chk_docbook, bool_docbook, docbook_cmd) = checkDocBook()
843     checkTeXAllowSpaces()
844     if windows_style_tex_paths != '':
845         addToRC(r'\tex_expects_windows_paths %s' % windows_style_tex_paths)
846     checkOtherEntries()
847     # --without-latex-config can disable lyx_check_config
848     ret = checkLatexConfig(lyx_check_config and LATEX != '',
849         bool_docbook, bool_linuxdoc)
850     checkModulesConfig() #lyx_check_config and LATEX != '')
851     removeTempFiles()
852     sys.exit(ret)