3 # lilypond.py -- Run LilyPond, add titles to bare score, generate printable
5 # Invokes: lilypond, latex (or pdflatex), dvips, ps2pdf, gs
7 # source file of the GNU LilyPond music typesetter
9 # (c) 1998--2003 Han-Wen Nienhuys <hanwen@cs.uu.nl>
10 # Jan Nieuwenhuizen <janneke@gnu.org>
12 # This is the third incarnation of ly2dvi, now renamed lilypond.
14 # Earlier incarnations of ly2dvi were written by
15 # Jeffrey B. Reed<daboys@austin.rr.com> (Python version)
16 # Jan Arne Fagertun <Jan.A.Fagertun@@energy.sintef.no> (Bourne shell script)
19 # Note: gettext work best if we use ' for docstrings and "
20 # for gettextable strings.
21 # --> DO NOT USE ''' for docstrings.
27 * figure out which set of command line options should make lilypond:
30 na: create latex only?
31 na: create tex and latex
32 default: create dvi only
33 na: create tex, latex and dvi
40 * move versatile taglines,
43 beginfooter=\mutopiaPD
44 endfooter=\tagline -> 'lily was here <version>'
47 lilytagline (->lily was here), usertagline, copyright, lily-version
50 * head/header tagline/endfooter
52 * dvi from lilypond .tex output? This is hairy, because we create dvi
53 from lilypond .tex *and* header output.
55 * multiple \score blocks?
57 * Introduce verbosity levels
59 0 = QUIET: mute all command output, no ly2dvi progress
60 1 = BRIEF: mute all command output, only ly2dvi progress
61 2a = NORMAL: show only LilyPond command output, show ly2dvi progress
62 2b = NORMAL: show command output, show ly2dvi progress
63 3 = VERBOSE: show command output, run lilypond --verbose
64 4 = DEBUGGING: show all command output, run lilypond --verbose, print
65 environment and all kinds of client side debugging stuff
67 Currently, we only have 1 and 4, but we kludge to have 2a and 4.
76 ################################################################
77 # Users of python modules should include this snippet
78 # and customize variables below.
80 # We'll suffer this path init stuff as long as we don't install our
81 # python packages in <prefix>/lib/pythonx.y (and don't kludge around
82 # it as we do with teTeX on Red Hat Linux: set some environment var
83 # (PYTHONPATH) in profile)
85 # If set, LILYPONDPREFIX must take prevalence
86 # if datadir is not set, we're doing a build and LILYPONDPREFIX
87 import getopt
, os
, sys
88 datadir
= '@local_lilypond_datadir@'
89 if not os
.path
.isdir (datadir
):
90 datadir
= '@lilypond_datadir@'
91 if os
.environ
.has_key ('LILYPONDPREFIX') :
92 datadir
= os
.environ
['LILYPONDPREFIX']
93 while datadir
[-1] == os
.sep
:
97 sys
.path
.insert (0, os
.path
.join (datadir
, 'python'))
100 #if __name__ == '__main__':
107 program_name
= 'lilypond'
108 program_version
= '@TOPLEVEL_VERSION@'
111 original_dir
= os
.getcwd ()
112 temp_dir
= os
.path
.join (original_dir
, '%s.dir' % program_name
)
114 preview_resolution
= 90
118 ## ly2dvi: silly name?
119 ## do -P or -p by default?
120 ##help_summary = _ ("Run LilyPond using LaTeX for titling")
121 help_summary
= _ ("Run LilyPond, add titles, generate printable document.")
122 copyright
= ('Han-Wen Nienhuys <hanwen@cs.uu.nl',
123 'Jan Nieuwenhuizen <janneke@gnu.org')
125 option_definitions
= [
126 ('', 'd', 'dependencies',
127 _ ("write Makefile dependencies for every input file")),
128 ('', 'h', 'help', _ ("print this help")),
129 ('', '', 'debug', _ ("print even more output")),
130 (_ ("DIR"), 'I', 'include', _ ("add DIR to LilyPond's search path")),
132 _ ("keep all output, output to directory %s.dir") % program_name
),
133 ('', '', 'no-lily', _ ("don't run LilyPond")),
134 ('', 'm', 'no-paper', _ ("produce MIDI output only")),
135 (_ ("FILE"), 'o', 'output', _ ("write output to FILE")),
136 (_ ("FILE"), 'f', 'find-pfa', _ ("find pfa fonts used in FILE")),
137 (_ ('RES'), '', 'preview-resolution',
138 _ ("set the resolution of the preview to RES")),
139 ('', 'P', 'postscript', _ ("generate PostScript output")),
140 ('', '', 'png', _("generate PNG page images")),
141 ('', '', 'psgz', _("generate PS.GZ")),
142 # separate options for PDF / PS / DVI ?
143 ('', '', 'pdftex', _ ("use pdflatex to generate a PDF output")),
144 # FIXME: preview, picture; to indicate creation of a PNG?
145 ('', '', 'preview', _ ("make a picture of the first system")),
146 ('','', 'html', _("make HTML file with links to all output")),
147 (_ ("KEY=VAL"), 's', 'set', _ ("change global setting KEY to VAL")),
148 ('', 'V', 'verbose', _ ("be verbose")),
149 ('', 'v', 'version', _ ("print version number")),
150 ('', 'w', 'warranty', _ ("show warranty and copyright")),
164 tex_extension
= '.tex' ## yuk.
166 #lilypond_binary = 'valgrind --suppressions=%(home)s/usr/src/guile-1.6.supp --num-callers=10 %(home)s/usr/src/lilypond/lily/out/lilypond '% { 'home' : '/home/hanwen' }
168 lilypond_binary
= os
.path
.join ('@bindir@', 'lilypond-bin')
170 # only use installed binary when we're installed too.
171 if '@bindir@' == ('@' + 'bindir@') or not os
.path
.exists (lilypond_binary
):
172 lilypond_binary
= 'lilypond-bin'
175 layout_fields
= ['dedication', 'title', 'subtitle', 'subsubtitle',
176 'footer', 'head', 'composer', 'arranger', 'instrument',
177 'opus', 'piece', 'metre', 'meter', 'poet', 'texttranslator']
180 # init to empty; values here take precedence over values in the file
182 ## TODO: change name.
186 'latexpackages' : ['geometry'],
189 'latexoptions' : ['compat2'],
199 extra_fields
= extra_init
.keys ()
200 fields
= layout_fields
+ extra_fields
208 # Output formats that ly2dvi should create
209 targets
= ['DVI', 'LATEX', 'MIDI', 'TEX', 'PDF', 'PS']
211 track_dependencies_p
= 0
212 dependency_files
= []
215 def set_setting (dict, key
, val
):
217 val
= string
.atoi (val
)
219 #ly.warning (_ ("invalid value: %s") % `val`)
222 if type(val
) == type ('hoi'):
224 val
= string
.atof (val
)
226 #ly.warning (_ ("invalid value: %s") % `val`)
230 dict[key
].append (val
)
232 ly
.warning (_ ("no such setting: `%s'") % `key`
)
236 def run_lilypond (files
, dep_prefix
):
239 opts
= opts
+ ' ' + string
.join (map (lambda x
: '-I ' + x
,
242 opts
= opts
+ ' --output=lelie'
244 opts
= opts
+ ' ' + string
.join (map (lambda x
: '-H ' + x
,
247 opts
= opts
+ ' --no-paper'
250 opts
= opts
+ ' -f pdftex'
252 if track_dependencies_p
:
253 opts
= opts
+ " --dependencies"
255 opts
= opts
+ ' --dep-prefix=%s' % dep_prefix
257 fs
= string
.join (files
)
261 opts
= opts
+ ' --verbose'
264 ly
.print_environment ()
266 cmd
= string
.join ((lilypond_binary
, opts
, fs
))
267 status
= ly
.system (cmd
, ignore_error
= 1, progress_p
= 1)
268 signal
= 0x0f & status
269 exit_status
= status
>> 8
271 # 2 == user interrupt.
272 if signal
and signal
!= 2:
273 sys
.stderr
.write ('\n\n')
274 ly
.error (_ ("LilyPond crashed (signal %d).") % signal
)
275 ly
.error (_ ("Please submit a bug report to bug-lilypond@gnu.org"))
279 sys
.stderr
.write ('\n')
281 ly
.error (_ ("LilyPond failed on input file %s (exit status %d)") % (files
[0], exit_status
))
284 ly
.error (_ ("LilyPond failed on an input file (exit status %d)") % exit_status
)
285 ly
.error (_ ("Continuing..."))
286 global lilypond_error_p
290 def analyse_lilypond_output (filename
, extra
):
293 '''Grep FILENAME for interesting stuff, and
294 put relevant info into EXTRA.'''
295 filename
= filename
+ tex_extension
296 ly
.progress (_ ("Analyzing %s...") % filename
)
297 s
= open (filename
).read ()
299 # search only the first 10k
301 for x
in extra_fields
:
302 m
= re
.search (r
'\\def\\lilypondpaper%s{([^}]*)}'%x, s
)
304 set_setting (extra
, x
, m
.group (1))
307 def find_tex_files_for_base (base
, extra
):
309 Find the \header fields dumped from BASE.
313 for f
in layout_fields
:
315 if os
.path
.exists (fn
):
318 if os
.path
.exists (base
+'.dep'):
319 dependency_files
.append (base
+ '.dep')
321 for f
in extra_fields
:
323 if os
.path
.exists (fn
):
324 extra
[f
].append (open (fn
).read ())
326 return (base
+ tex_extension
, headerfiles
)
329 def find_tex_files (files
, extra
):
331 Find all .tex files whose prefixes start with some name in FILES.
340 fname
= os
.path
.basename (f
)
341 fname
= ly
.strip_extension (fname
, '.ly')
343 fname
= fname
+ '-%d' % x
345 if os
.path
.exists (fname
+ tex_extension
):
346 tfiles
.append (find_tex_files_for_base (fname
, extra
))
347 analyse_lilypond_output (fname
, extra
)
353 fstr
= string
.join (files
, ', ')
354 ly
.warning (_ ("no LilyPond output found for `%s'") % fstr
)
357 def one_latex_definition (defn
, first
):
359 for (k
,v
) in defn
[1].items ():
360 val
= open (v
).read ()
361 if (string
.strip (val
)):
362 s
= s
+ r
'''\def\lilypond%s{%s}''' % (k
, val
)
364 s
= s
+ r
'''\let\lilypond%s\relax''' % k
368 s
= s
+ '\\def\\mustmakelilypondtitle{}\n'
370 s
= s
+ '\\def\\mustmakelilypondpiecetitle{}\n'
372 s
= s
+ '\\input %s\n' % defn
[0] # The final \n seems important here. It ensures that the footers and taglines end up on the right page.
376 ly_paper_to_latexpaper
= {
377 'letter' : 'letterpaper',
384 #TODO: should set textheight (enlarge) depending on papersize.
385 def global_latex_preamble (extra
):
386 '''construct preamble from EXTRA,'''
388 s
= s
+ '% generation tag\n'
393 if extra
['papersize']:
395 options
= ly_paper_to_latexpaper
[extra
['papersize'][0]]
397 ly
.warning (_ ("invalid value: `%s'") % `extra
['papersize'][0]`
)
400 if extra
['latexoptions']:
401 options
= options
+ ',' + extra
['latexoptions'][-1]
403 s
= s
+ '\\documentclass[%s]{article}\n' % options
405 if extra
['language']:
406 s
= s
+ r
'\usepackage[%s]{babel}' % extra
['language'][-1] + '\n'
409 s
= s
+ '\\usepackage{%s}\n' \
410 % string
.join (extra
['latexpackages'], ',')
412 if extra
['latexheaders']:
413 s
= s
+ '\\include{%s}\n' \
414 % string
.join (extra
['latexheaders'], '}\n\\include{')
416 unit
= extra
['unit'][-1]
419 if extra
['textheight']:
420 textheight
= ',textheight=%f%s' % (extra
['textheight'][0], unit
)
422 orientation
= 'portrait'
423 if extra
['orientation']:
424 orientation
= extra
['orientation'][0]
426 # set sane geometry width (a4-width) for linewidth = -1.
427 maxlw
= max (extra
['linewidth'] + [-1])
429 # who the hell is 597 ?
432 linewidth
= '%d%s' % (maxlw
, unit
)
433 s
= s
+ '\geometry{width=%s%s,headheight=2mm,footskip=2mm,%s}\n' % (linewidth
, textheight
, orientation
)
436 if 'twoside' in extra
['latexoptions'] :
437 s
= s
+ '\geometry{twosideshift=4mm}\n'
440 \usepackage[latin1]{inputenc}
444 if extra
['pagenumber'] and extra
['pagenumber'][-1] and extra
['pagenumber'][-1] != 'no':
445 s
= s
+ '\setcounter{page}{%d}\n' % (extra
['pagenumber'][-1])
446 s
= s
+ '\\pagestyle{plain}\n'
448 s
= s
+ '\\pagestyle{empty}\n'
454 def global_latex_definition (tfiles
, extra
):
455 '''construct preamble from EXTRA, dump Latex stuff for each
456 lily output file in TFILES after that, and return the Latex file constructed. '''
459 s
= global_latex_preamble (extra
) + '\\begin{document}\n'
460 s
= s
+ '\\parindent 0pt\n'
461 s
= s
+ '\\thispagestyle{firstpage}\n'
465 s
= s
+ one_latex_definition (t
, first
)
469 s
= s
+ '\\thispagestyle{lastpage}\n'
470 s
= s
+ '\\end{document}'
474 def run_latex (files
, outbase
, extra
):
476 '''Construct latex file, for FILES and EXTRA, dump it into
477 OUTBASE.latex. Run LaTeX on it.
484 latex_fn
= outbase
+ '.latex'
486 wfs
= find_tex_files (files
, extra
)
487 s
= global_latex_definition (wfs
, extra
)
489 f
= open (latex_fn
, 'w')
493 cmd
= latex_cmd
+ ' \\\\nonstopmode \\\\input %s' % latex_fn
495 # Ugh. (La)TeX writes progress and error messages on stdout
497 cmd
= '(( %s >&2 ) >&- )' % cmd
498 status
= ly
.system (cmd
, ignore_error
= 1)
499 signal
= 0xf & status
500 exit_status
= status
>> 8
506 logstr
= open (outbase
+ '.log').read ()
507 m
= re
.search ("\n!", logstr
)
509 logstr
= logstr
[start
:start
+200]
513 ly
.error (_ ("LaTeX failed on the output file."))
514 ly
.error (_ ("The error log is as follows:"))
515 sys
.stderr
.write (logstr
+ '\n')
519 # make a preview by rendering only the 1st line
521 for score
in find_tex_files (files
, extra
):
522 preview_base
= ly
.strip_extension (score
[0], '.tex')
523 preview_fn
= preview_base
+ '.preview.tex'
524 s
= global_latex_definition ((score
,), extra
)
525 s
= re
.sub ('thispagestyle{firstpage}',
526 r
'''thispagestyle{empty}%
527 \\def\\interscoreline{\\endinput}''', s
)
528 s
= re
.sub ('thispagestyle{lastpage}',
529 r
'''thispagestyle{empty}%
530 \\def\\interscoreline{\\endinput}''', s
)
531 f
= open (preview_fn
, 'w')
534 cmd
= '%s \\\\nonstopmode \\\\input %s' \
535 % (latex_cmd
, preview_fn
)
539 def run_dvips (outbase
, extra
):
542 '''Run dvips using the correct options taken from EXTRA,
543 leaving a PS file in OUTBASE.ps
550 if extra
['papersize']:
551 opts
= opts
+ ' -t%s' % extra
['papersize'][0]
553 if extra
['orientation'] and extra
['orientation'][0] == 'landscape':
554 opts
= opts
+ ' -tlandscape'
558 where
= ly
.read_pipe ('kpsewhich feta20.pfa').strip()
563 pfa_file
= open (where
, 'r')
568 opts
= opts
+ ' -Ppdf -G0 -u +lilypond.map'
570 ly
.warning (_ ('''Trying create PDF, but no PFA fonts found.
571 Using bitmap fonts instead. This will look bad.'''))
573 cmd
= 'dvips %s -o%s %s' % (opts
, outbase
+ '.ps', outbase
+ '.dvi')
577 for score
in find_tex_files (files
, extra
):
578 preview_base
= ly
.strip_extension (score
[0], '.tex')
579 cmd
= 'dvips -E -o%s %s' \
580 % (preview_base
+ '.preview.ps',
581 preview_base
+ '.preview.dvi')
585 cmd
= 'ps2pdf %s.ps %s.pdf' % (outbase
, outbase
)
588 def generate_dependency_file (depfile
, outname
):
589 df
= open (depfile
, 'w')
590 df
.write (outname
+ ':' )
592 for d
in dependency_files
:
594 s
= re
.sub ('#[^\n]*\n', '', s
)
595 s
= re
.sub (r
'\\\n', ' ', s
)
596 m
= re
.search ('.*:(.*)\n', s
)
598 # ugh. Different targets?
600 df
.write ( m
.group (1) + ' ' )
605 def find_file_in_path (path
, name
):
606 for d
in string
.split (path
, os
.pathsep
):
607 if name
in os
.listdir (d
):
608 return os
.path
.join (d
, name
)
610 # Added as functionality to ly2dvi, because ly2dvi may well need to do this
613 def find_pfa_fonts (name
):
614 s
= open (name
).read ()
615 if s
[:len (PS
)] != PS
:
617 ly
.error (_ ("not a PostScript file: `%s\'" % name
))
620 m
= re
.match ('.*?/(feta[-a-z0-9]+) +findfont', s
[here
:], re
.DOTALL
)
624 pfa
.append (m
.group (1))
625 m
= re
.match ('.*?/(feta[-a-z0-9]+) +findfont', s
[here
:], re
.DOTALL
)
629 def make_html_menu_file (html_file
, files_found
):
631 'pdf' : "Print (PDF, %s)",
632 'ps.gz' : "Print (gzipped PostScript, %s)",
633 'png' : "View (PNG, %s)",
634 'midi' : "Listen (MIDI, %s)",
635 'ly' : "View source code (%s)",
639 pages
= filter (lambda x
: re
.search ('page[0-9]+.png', x
),
641 rest
= filter (lambda x
: not re
.search ('page[0-9]+.png', x
),
644 preview
= filter (lambda x
: re
.search ('.png$', x
), rest
)
646 html_str
= '<img src="%s">' % preview
[0]
649 page
= re
.sub ('.*page([0-9])+.*', 'View page \\1 (PNG picture, %s)\n', p
)
650 page
= page
% 'unknown size'
652 html_str
+= '<li><a href="%s">%s</a>' % (p
, page
)
655 for e
in ['pdf', 'ps.gz', 'midi', 'ly']:
656 fs
= filter (lambda x
: re
.search ('.%s$' % e
, x
), rest
)
658 entry
= exts
[e
] % 'unknown size' # todo
659 html_str
+= '<li><a href="%s">%s</a>\n\n' % (f
, entry
)
661 html_str
+= "\n\n</li>"
662 ly
.progress (_("Writing HTML menu `%s'") % html_file
)
664 open (html_file
, 'w').write (html_str
)
666 ################################################################
668 ################################################################
670 (sh
, long) = ly
.getopt_args (option_definitions
)
672 (options
, files
) = getopt
.getopt (sys
.argv
[1:], sh
, long)
673 except getopt
.error
, s
:
674 sys
.stderr
.write ('\n')
675 ly
.error (_ ("getopt says: `%s\'" % s
))
676 sys
.stderr
.write ('\n')
686 elif o
== '--help' or o
== '-h':
689 elif o
== '--find-pfa' or o
== '-f':
690 fonts
= map (lambda x
: x
+ '.pfa', find_pfa_fonts (a
))
691 files
= map (lambda x
:
692 find_file_in_path (os
.environ
['GS_FONTPATH'], x
),
694 print string
.join (files
, ' ')
696 elif o
== '--include' or o
== '-I':
697 include_path
.append (a
)
698 elif o
== '--postscript' or o
== '-P':
699 targets
.append ('PS')
701 targets
.remove ('PS')
702 targets
.remove ('PDF')
703 elif o
== '--keep' or o
== '-k':
708 elif o
== '--no-lily':
710 elif o
== '--preview':
712 if 'PNG' not in targets
:
713 targets
.append ('PNG')
714 elif o
== '--preview-resolution':
715 preview_resolution
= string
.atoi (a
)
716 elif o
== '--no-paper' or o
== '-m':
719 elif o
== '--output' or o
== '-o':
721 elif o
== '--set' or o
== '-s':
722 ss
= string
.split (a
, '=')
723 set_setting (extra_init
, ss
[0], ss
[1])
724 elif o
== '--dependencies' or o
== '-d':
725 track_dependencies_p
= 1
726 elif o
== '--verbose' or o
== '-V':
728 elif o
== '--version' or o
== '-v':
729 ly
.identify (sys
.stdout
)
731 elif o
== '--pdftex':
732 latex_cmd
= 'pdflatex'
733 targets
.remove('DVI')
734 targets
.append('PDFTEX')
736 tex_extension
= '.pdftex'
737 elif o
== '--warranty' or o
== '-w':
738 status
= os
.system ('%s -w' % lilypond_binary
)
746 if 'PNG' not in targets
:
747 targets
.append ('PNG')
749 targets
.append ('PS.GZ')
751 unimplemented_option () # signal programming error
753 # Don't convert input files to abspath, rather prepend '.' to include
755 include_path
.insert (0, '.')
757 # As a neat trick, add directory part of first input file
758 # to include path. That way you can do without the clumsy -I in:
760 # ly2dvi -I foe/bar/baz foo/bar/baz/baz.ly
761 if files
and files
[0] != '-' and os
.path
.dirname (files
[0]) != '.':
762 include_path
.append (os
.path
.dirname (files
[0]))
764 include_path
= map (ly
.abspath
, include_path
)
766 if files
and (files
[0] == '-' or output_name
== '-'):
769 output_name
= 'lelie'
771 ly
.progress (_ ("pseudo filter") + '\n')
774 ly
.error (_ ("pseudo filter only for single input file"))
779 ly
.error (_ ("no files specified on command line"))
783 ly
.identify (sys
.stderr
)
784 ly
.lilypond_version_check (lilypond_binary
, '@TOPLEVEL_VERSION@')
786 original_output
= output_name
788 # Ugh, maybe make a setup () function
789 files
= map (lambda x
: ly
.strip_extension (x
, '.ly'), files
)
791 # hmmm. Wish I'd 've written comments when I wrote this.
792 # now it looks complicated.
794 (outdir
, outbase
) = ('','')
796 outbase
= os
.path
.basename (files
[0])
797 outdir
= ly
.abspath ('.')
798 elif output_name
[-1] == os
.sep
:
799 outdir
= ly
.abspath (output_name
)
800 outbase
= os
.path
.basename (files
[0])
802 (outdir
, outbase
) = os
.path
.split (ly
.abspath (output_name
))
804 for i
in ('.dvi', '.latex', '.ly', '.ps', '.tex', '.pdftex'):
805 output_name
= ly
.strip_extension (output_name
, i
)
806 outbase
= ly
.strip_extension (outbase
, i
)
808 for i
in files
[:] + [output_name
]:
809 if string
.find (i
, ' ') >= 0:
810 ly
.error (_ ("filename should not contain spaces: `%s'") %
814 if os
.path
.dirname (output_name
) != '.':
815 dep_prefix
= os
.path
.dirname (output_name
)
819 reldir
= os
.path
.dirname (output_name
)
820 if outdir
!= '.' and (track_dependencies_p
or targets
):
821 ly
.mkdir_p (outdir
, 0777)
823 tmpdir
= ly
.setup_temp ()
824 ly
.setup_environment ()
826 # to be sure, add tmpdir *in front* of inclusion path.
827 #os.environ['TEXINPUTS'] = tmpdir + ':' + os.environ['TEXINPUTS']
830 # We catch all exceptions, because we need to do stuff at exit:
831 # * copy any successfully generated stuff from tempdir and
832 # notify user of that
836 run_lilypond (files
, dep_prefix
)
838 ### ARGH. This also catches python programming errors.
839 ### this should only catch lilypond nonzero exit status
843 # TODO: friendly message about LilyPond setup/failing?
847 traceback
.print_exc ()
849 ly
.warning (_("Running LilyPond failed. Rerun with --verbose for a trace."))
851 # Our LilyPond pseudo filter always outputs to 'lelie'
852 # have subsequent stages and use 'lelie' output.
856 if 'PS.GZ' in targets
:
857 targets
.append ('PS')
859 if 'PNG' in targets
and 'PS' not in targets
:
860 targets
.append ('PS')
861 if 'PS' in targets
and 'DVI' not in targets
:
862 targets
.append('DVI')
866 run_latex (files
, outbase
, extra_init
)
867 # unless: add --tex, or --latex?
868 targets
.remove ('TEX')
869 targets
.remove('LATEX')
871 # TODO: friendly message about TeX/LaTeX setup,
872 # trying to run tex/latex by hand
874 targets
.remove ('DVI')
876 targets
.remove ('PS')
878 traceback
.print_exc ()
882 run_dvips (outbase
, extra_init
)
886 targets
.remove ('PS')
888 traceback
.print_exc ()
890 ly
.warning (_("Failed to make PS file. Rerun with --verbose for a trace."))
893 for score
in find_tex_files (files
, extra_init
):
894 preview_base
= ly
.strip_extension (score
[0], '.tex')
895 ly
.make_ps_images (preview_base
+ '.preview.ps',
896 resolution
=preview_resolution
899 if 'PDFTEX' in targets
:
901 run_latex (files
, outbase
, extra_init
)
902 # unless: add --tex, or --latex?
903 targets
.remove ('TEX')
904 targets
.remove ('LATEX')
905 targets
.remove ('PDFTEX')
906 if 'PDF' not in targets
:
907 targets
.append('PDF')
909 # TODO: friendly message about TeX/LaTeX setup,
910 # trying to run tex/latex by hand
911 if 'PDFTEX' in targets
:
912 targets
.remove ('PDFTEX')
914 targets
.remove ('PDF')
916 targets
.remove ('PS')
918 traceback
.print_exc ()
920 ly
.warning (_("Running LaTeX failed. Rerun with --verbose for a trace."))
923 ly
.make_ps_images (outbase
+ '.ps' ,
924 resolution
= preview_resolution
927 # add DEP to targets?
928 if track_dependencies_p
:
929 depfile
= os
.path
.join (outdir
, outbase
+ '.dep')
930 generate_dependency_file (depfile
, depfile
)
931 if os
.path
.isfile (depfile
):
932 ly
.progress (_ ("dependencies output to `%s'...") %
938 for i
in 'PDF', 'PS', 'PNG', 'DVI', 'LATEX':
943 ly
.progress (_ ("%s output to <stdout>...") % i
)
944 outname
= outbase
+ '.' + string
.lower (main_target
)
945 if os
.path
.isfile (outname
):
946 sys
.stdout
.write (open (outname
).read ())
948 ly
.warning (_ ("can't find file: `%s'") % outname
)
952 if 'PS.GZ' in targets
:
953 ly
.system ("gzip *.ps")
954 targets
.remove ('PS')
956 # Hmm, if this were a function, we could call it the except: clauses
959 ext
= string
.lower (i
)
961 pattern
= '%s.%s' % (outbase
, ext
)
964 ls
= glob
.glob (pattern
)
966 ly
.cp_to_dir ('.*\.%s$' % ext
, outdir
)
970 names
= string
.join (map (lambda x
: "`%s'" % x
, ls
))
971 ly
.progress (_ ("%s output to %s...") % (i
, names
))
974 ly
.warning (_ ("can't find file: `%s.%s'") % (outbase
, ext
))
977 make_html_menu_file (os
.path
.join (outdir
, outbase
+ ".html"),
980 os
.chdir (original_dir
)
983 sys
.exit (lilypond_error_p
)