]> git.donarmstrong.com Git - lilypond.git/blobdiff - scripts/ly2dvi.py
patch::: 1.4.1.jcn2
[lilypond.git] / scripts / ly2dvi.py
index ccd80c83788033add40fbfc5bb43dcae45321714..d81879fa64e8efee378d0cd5d42cffd2892129b5 100644 (file)
@@ -1,14 +1,41 @@
 #!@PYTHON@
-# run lily, setup LaTeX input.
+# Run lilypond, latex, dvips.
+#
+# This is the third incarnation of ly2dvi.
+#
+# Earlier incarnations of ly2dvi were written by
+# Jeffrey B. Reed<daboys@austin.rr.com> (Python version)
+# Jan Arne Fagertun <Jan.A.Fagertun@@energy.sintef.no> (Bourne shell script)
+#
+
+
+# 
+# TODO: should allow to set a central pk cache directory from the command line.
+# TODO: should allow to switch off pk cache.
+#
+
 
 # Note: gettext work best if we use ' for docstrings and "
-# for gettextable strings
+#       for gettextable strings.
+#       --> DO NOT USE """ for docstrings.
 
 '''
 TODO:
 
-  * check --dependencies
+  * figure out which set of command line options should make ly2dvi:
+
+      na: create tex only?  
+      na: create latex only? 
+      na: create tex and latex
+      default: create dvi only
+      na: create tex, latex and dvi
+      -P: create dvi and ps
+      na: * create ps only
+
+     etc.
 
+     for foo.ly, rename ly2dvi.dir to out-ly2dvi, foo.ly2dvi, foo.dir ?
+     
   * move versatile taglines, 
   
      \header {
@@ -20,16 +47,11 @@ TODO:
 
   * head/header tagline/endfooter
 
-  * check/set TEXINPUTS: see to it that/warn if not/
-    kpathsea can find titledefs.tex?
-    
   * dvi from lilypond .tex output?  This is hairy, because we create dvi
     from lilypond .tex *and* header output.
 
   * multiple \score blocks?
   
-  * windows-sans-cygwin compatibility?  rm -rf, cp file... dir
-  
 '''
 
 
@@ -39,11 +61,13 @@ import string
 import re
 import getopt
 import sys
+import shutil
 import __main__
 import operator
 import tempfile
 
-sys.path.append ('@datadir@/python')
+datadir = '@datadir@'
+sys.path.append (datadir + '/python')
 try:
        import gettext
        gettext.bindtextdomain ('lilypond', '@localedir@')
@@ -54,16 +78,19 @@ except:
                return s
 
 
-layout_fields = ['title', 'subtitle', 'subsubtitle', 'footer', 'head',
-         'composer', 'arranger', 'instrument', 'opus', 'piece', 'metre',
-         'meter', 'poet']
+layout_fields = ['dedication', 'title', 'subtitle', 'subsubtitle',
+         'footer', 'head', 'composer', 'arranger', 'instrument',
+         'opus', 'piece', 'metre', 'meter', 'poet', 'texttranslator']
+
 
+# init to empty; values here take precedence over values in the file
 
-# init to empty; values here take precedence over values in the file 
+## TODO: change name.
 extra_init = {
        'language' : [],
        'latexheaders' : [],
        'latexpackages' :  ['geometry'],
+       'latexoptions' : [],
        'papersize' : [],
        'pagenumber' : [1],
        'textheight' : [], 
@@ -75,19 +102,25 @@ extra_fields = extra_init.keys ()
 
 fields = layout_fields + extra_fields
 program_name = 'ly2dvi'
-help_summary = _("Generate .dvi with LaTeX for LilyPond")
+help_summary = _ ("Generate .dvi with LaTeX for LilyPond")
 
 include_path = ['.']
-no_lily = 0
-outdir = '.'
-track_dependencies_p = 0
-dependency_files = []
+lily_p = 1
+paper_p = 1
+cache_pks_p = 1
 
-# generate ps ?
-postscript_p = 0
+PK_PATTERN='feta.*\.[0-9]+pk'
 
-# be verbose?
-verbose_p = 0
+output_name = ''
+targets = {
+       'DVI' : 0,
+       'LATEX' : 0,
+       'MIDI' : 0,
+       'TEX' : 0,
+       }
+
+track_dependencies_p = 0
+dependency_files = []
 
 
 # lily_py.py -- options and stuff
@@ -99,14 +132,36 @@ verbose_p = 0
 
 program_version = '@TOPLEVEL_VERSION@'
 if program_version == '@' + 'TOPLEVEL_VERSION' + '@':
-       program_version = '1.3.142'
+       program_version = '1.3.148'
 
 
 original_dir = os.getcwd ()
-temp_dir = '%s.dir' % program_name
+temp_dir = os.path.join (original_dir,  '%s.dir' % program_name)
+
 keep_temp_dir_p = 0
 verbose_p = 0
 
+#
+# Try to cater for bad installations of LilyPond, that have
+# broken TeX setup.  Just hope this doesn't hurt good TeX
+# setups.  Maybe we should check if kpsewhich can find
+# feta16.{afm,mf,tex,tfm}, and only set env upon failure.
+#
+environment = {
+       'MFINPUTS' : ':' + datadir + '/mf',
+       'TEXINPUTS': ':' + datadir + '/tex:' + datadir + '/ps',
+       'TFMFONTS' : ':' + datadir + '/tfm',
+       'GS_FONTPATH' : datadir + '/afm:' + datadir + '/pfa',
+       'GS_LIB' : datadir + '/ps',
+}
+
+def setup_environment ():
+       for key in environment.keys ():
+               val = environment[key]
+               if os.environ.has_key (key):
+                       val = os.environ[key] + os.pathsep + val 
+               os.environ[key] = val
+
 def identify ():
        sys.stdout.write ('%s (GNU LilyPond) %s\n' % (program_name, program_version))
 
@@ -123,17 +178,31 @@ Distributed under terms of the GNU General Public License. It comes with
 NO WARRANTY.'''))
        sys.stdout.write ('\n')
 
+if ( os.name == 'posix' ):
+       errorport=sys.stderr
+else:
+       errorport=sys.stdout
+
 def progress (s):
-       sys.stderr.write (s + '\n')
+       errorport.write (s + '\n')
 
 def warning (s):
-       sys.stderr.write (_ ("warning: ") + s)
-       sys.stderr.write ('\n')
-       
+       progress (_ ("warning: ") + s)
                
 def error (s):
-       sys.stderr.write (_ ("error: ") + s)
-       sys.stderr.write ('\n')
+
+
+       '''Report the error S.  Exit by raising an exception. Please
+       do not abuse by trying to catch this error. If you donn't want
+       a stack trace, write to the output directly.
+
+       RETURN VALUE
+
+       None
+       
+       '''
+       
+       progress (_ ("error: ") + s)
        raise _ ("Exiting ... ")
 
 def getopt_args (opts):
@@ -192,20 +261,22 @@ def options_help_str (opts):
        return str
 
 def help ():
-       sys.stdout.write (_ ("Usage: %s [OPTION]... FILE") % program_name)
-       sys.stdout.write ('\n\n')
-       sys.stdout.write (help_summary)
-       sys.stdout.write ('\n\n')
-       sys.stdout.write (_ ("Options:"))
-       sys.stdout.write ('\n')
-       sys.stdout.write (options_help_str (option_definitions))
-       sys.stdout.write ('\n\n')
-       sys.stdout.write (_ ("Report bugs to %s") % 'bug-gnu-music@gnu.org')
-       sys.stdout.write ('\n')
-       sys.exit (0)
-
-
+       ls = [(_ ("Usage: %s [OPTION]... FILE") % program_name),
+               ('\n\n'),
+               (help_summary),
+               ('\n\n'),
+               (_ ("Options:")),
+               ('\n'),
+               (options_help_str (option_definitions)),
+               ('\n\n'),
+               (_ ("Report bugs to %s") % 'bug-gnu-music@gnu.org'),
+               ('\n')]
+       map (sys.stdout.write, ls)
+       
 def setup_temp ():
+       """
+       Create a temporary directory, and return its name. 
+       """
        global temp_dir
        if not keep_temp_dir_p:
                temp_dir = tempfile.mktemp (program_name)
@@ -213,17 +284,31 @@ def setup_temp ():
                os.mkdir (temp_dir, 0777)
        except OSError:
                pass
-       os.chdir (temp_dir)
+
+       return temp_dir
 
 
 def system (cmd, ignore_error = 0):
+       """Run CMD. If IGNORE_ERROR is set, don't complain when CMD returns non zero.
+
+       RETURN VALUE
+
+       Exit status of CMD
+       """
+       
+        if ( os.name != 'posix' ):
+               cmd = re.sub (r'''\\''', r'''\\\\\\''', cmd)
+               cmd = "sh -c \'%s\'" % cmd
+
+               
        if verbose_p:
                progress (_ ("Invoking `%s\'") % cmd)
        st = os.system (cmd)
        if st:
-               msg =  ( _ ("error: ") + _ ("command exited with value %d") % st)
+               name = re.match ('[ \t]*([^ \t]*)', cmd).group (1)
+               msg = name + ': ' + _ ("command exited with value %d") % st
                if ignore_error:
-                       sys.stderr.write (msg + ' ' + _ ("(ignored)") + ' ')
+                       warning (msg + ' ' + _ ("(ignored)") + ' ')
                else:
                        error (msg)
 
@@ -234,9 +319,10 @@ def cleanup_temp ():
        if not keep_temp_dir_p:
                if verbose_p:
                        progress (_ ("Cleaning %s...") % temp_dir)
-               system ('rm -rf %s' % temp_dir)
+               shutil.rmtree (temp_dir)
 
 
+#what a name.
 def set_setting (dict, key, val):
        try:
                val = string.atof (val)
@@ -250,6 +336,7 @@ def set_setting (dict, key, val):
                warning (_ ("no such setting: %s") % `key`)
                dict[key] = [val]
 
+
 def strip_extension (f, ext):
        (p, e) = os.path.splitext (f)
        if e == ext:
@@ -259,36 +346,54 @@ def strip_extension (f, ext):
 # END Library
 
 option_definitions = [
+       ('', 'd', 'dependencies', _ ("write Makefile dependencies for every input file")),
        ('', 'h', 'help', _ ("this help")),
-       ('KEY=VAL', 's', 'set', _ ("change global setting KEY to VAL")),
-       ('DIR', 'I', 'include', _ ("add DIR to LilyPond\'s search path")),
-       ('', 'P', 'postscript', _ ("generate PostScript output")),
-       ('', 'k', 'keep', _ ("keep all output, and name the directory ly2dvi.dir")),
+       (_ ("DIR"), 'I', 'include', _ ("add DIR to LilyPond's search path")),
+       ('', 'k', 'keep', _ ("keep all output, and name the directory %s.dir") % program_name),
        ('', '', 'no-lily', _ ("don't run LilyPond")),
+       ('', 'm', 'no-paper', _ ("produce MIDI output only")),
+       (_ ("FILE"), 'o', 'output', _ ("write ouput to FILE")),
+       # why capital P?
+       ('', 'P', 'postscript', _ ("generate PostScript output")),
+       (_ ("KEY=VAL"), 's', 'set', _ ("change global setting KEY to VAL")),
        ('', 'V', 'verbose', _ ("verbose")),
        ('', 'v', 'version', _ ("print version number")),
        ('', 'w', 'warranty', _ ("show warranty and copyright")),
-       ('DIR', '', 'outdir', _ ("dump all final output into DIR")),
-       ('', 'd', 'dependencies', _ ("write Makefile dependencies for every input file")),
        ]
 
-def run_lilypond (files):
+def run_lilypond (files, outbase, dep_prefix):
        opts = ''
-       opts = opts + ' ' + string.join (map (lambda x : '-I ' + x, include_path))
-       opts = opts + ' ' + string.join (map (lambda x : '-H ' + x, fields))
-
+#      opts = opts + '--output=%s.tex' % outbase
+       opts = opts + ' ' + string.join (map (lambda x : '-I ' + x,
+                                             include_path))
+       if paper_p:
+               opts = opts + ' ' + string.join (map (lambda x : '-H ' + x,
+                                                     fields))
+       else:
+               opts = opts + ' --no-paper'
+               
        if track_dependencies_p:
-               opts = opts + " --dependencies "
+               opts = opts + " --dependencies"
+               if dep_prefix:
+                       opts = opts + ' --dep-prefix=%s' % dep_prefix
 
        fs = string.join (files)
+
+       if not verbose_p:
+               progress ( _("Running %s...") % 'LilyPond')
+               # cmd = cmd + ' 1> /dev/null 2> /dev/null'
+       else:
+               opts = opts + ' --verbose'
        
-       system ('lilypond  %s %s ' % (opts, fs))
+       system ('lilypond %s %s ' % (opts, fs))
 
 def analyse_lilypond_output (filename, extra):
+       
+       # urg
        '''Grep FILENAME for interesting stuff, and
        put relevant info into EXTRA.'''
        filename = filename+'.tex'
-       progress (_ ("Analyzing `%s'") % filename)
+       progress (_ ("Analyzing %s...") % filename)
        s = open (filename).read ()
 
        # search only the first 10k
@@ -299,6 +404,11 @@ def analyse_lilypond_output (filename, extra):
                        set_setting (extra, x, m.group (1))
 
 def find_tex_files_for_base (base, extra):
+
+       """
+       Find the \header fields dumped from BASE.
+       """
+       
        headerfiles = {}
        for f in layout_fields:
                if os.path.exists (base + '.' + f):
@@ -315,7 +425,13 @@ def find_tex_files_for_base (base, extra):
         
 
 def find_tex_files (files, extra):
+       """
+       Find all .tex files whose prefixes start with some name in FILES. 
+
+       """
+       
        tfiles = []
+       
        for f in files:
                x = 0
                while 1:
@@ -332,7 +448,8 @@ def find_tex_files (files, extra):
 
                        x = x + 1
        if not x:
-               warning (_ ("no lilypond output found for %s") % `files`)
+               fstr = string.join (files, ', ')
+               warning (_ ("no lilypond output found for %s") % fstr)
        return tfiles
 
 def one_latex_definition (defn, first):
@@ -350,7 +467,7 @@ def one_latex_definition (defn, first):
        else:
                s = s + '\\def\\mustmakelilypondpiecetitle{}\n'
                
-       s = s + '\\input %s' % defn[0]
+       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.
        return s
 
 
@@ -360,24 +477,27 @@ ly_paper_to_latexpaper =  {
 }
 
 def global_latex_definition (tfiles, extra):
-       '''construct preamble from EXTRA,
-       dump lily output files after that, and return result.
-       '''
+
+       '''construct preamble from EXTRA, dump Latex stuff for each
+lily output file in TFILES after that, and return the Latex file constructed.  '''
 
 
        s = ""
        s = s + '% generation tag\n'
 
-       paper = ''
+       options = ''
 
        if extra['papersize']:
                try:
-                       paper = '[%s]' % ly_paper_to_latexpaper[extra['papersize'][0]]
-               except:
+                       options = '%s' % ly_paper_to_latexpaper[extra['papersize'][0]]
+               except KeyError:
                        warning (_ ("invalid value: %s") % `extra['papersize'][0]`)
                        pass
-       
-       s = s + '\\documentclass%s{article}\n' % paper
+
+       if extra['latexoptions']:
+               options = options + ',' + extra['latexoptions'][-1]
+
+       s = s + '\\documentclass[%s]{article}\n' % options
 
        if extra['language']:
                s = s + r'\usepackage[%s]{babel}\n' % extra['language'][-1]
@@ -399,23 +519,29 @@ def global_latex_definition (tfiles, extra):
                orientation = extra['orientation'][0]
 
        # set sane geometry width (a4-width) for linewidth = -1.
-       if not extra['linewidth'] or extra['linewidth'][0] < 0:
-               linewidth = 597
+       maxlw = max (extra['linewidth'] + [-1])
+       if maxlw < 0:
+               # who the hell is 597 ?
+               linewidth = '597'
        else:
-               linewidth = extra['linewidth'][0]
-       s = s + '\geometry{width=%spt%s,headheight=2mm,headsep=0pt,footskip=2mm,%s}\n' % (linewidth, textheight, orientation)
+               linewidth = maxlw
+       s = s + '\geometry{width=%spt%s,headheight=2mm,footskip=2mm,%s}\n' % (linewidth, textheight, orientation)
+
+       if extra['latexoptions']:
+               s = s + '\geometry{twosideshift=4mm}\n'
 
        s = s + r'''
 \usepackage[latin1]{inputenc}
 \input{titledefs}
 \makeatletter
 \renewcommand{\@oddfoot}{\parbox{\textwidth}{\mbox{}\thefooter}}%
+\renewcommand{\@evenfoot}{\parbox{\textwidth}{\mbox{}\thefooter}}%
 '''
        
        if extra['pagenumber'] and extra['pagenumber'][-1] and extra['pagenumber'][-1] != 'no':
                s = s + r'''
-\renewcommand{\@oddhead}{\parbox{\textwidth}%
-    {\mbox{}\small\theheader\hfill\textbf{\thepage}}}
+\renewcommand{\@evenhead}{\hbox to\textwidth{\textbf{\thepage}\hfill{\small\theheader}}}
+\renewcommand{\@oddhead}{\hbox to \textwidth{{\small\theheader}\hfill\textbf{\thepage}}}
 '''
        else:
                s = s + '\\pagestyle{empty}\n'
@@ -430,49 +556,80 @@ def global_latex_definition (tfiles, extra):
                first = 0
 
        s = s + r'''
+%% I do not see why we want to clobber the footer here
+%% \vfill\hfill\parbox{\textwidth}{\mbox{}\makelilypondtagline}
+%% Well, maybe you don't submit music to mutopia?
+%% I would not object to this kind of change, but I don't know how
+%% to get the last mutopia tagline right (ie: no footer on last page)
+%% Please check that mutopia footers and endfooter are OK before changing
+%% this again. -- jcn
+% the \mbox{} helps latex if people do stupid things in tagline
 \makeatletter
-\renewcommand{\@oddfoot}{\parbox{\textwidth}{\mbox{}\makelilypondtagline}}%
+\if@twoside
+  \ifodd\thepage
+   \renewcommand{\@oddfoot}{\parbox{\textwidth}{\mbox{}\makelilypondtagline}}%
+  \else
+   \renewcommand{\@evenfoot}{\parbox{\textwidth}{\mbox{}\makelilypondtagline}}%
+  \fi
+ \else
+  \renewcommand{\@thefoot}{\parbox{\textwidth}{\mbox{}\makelilypondtagline}}%
+\fi
 \makeatother
 '''
        s = s + '\\end{document}'
 
        return s
 
-def do_files (fs, extra):
+def run_latex (files, outbase, extra):
 
-       '''process the list of filenames in FS, using standard settings in EXTRA.
-       '''
-       if not no_lily:
-               run_lilypond (fs)
+       """Construct latex file, for FILES and EXTRA, dump it into
+OUTBASE.latex. Run LaTeX on it.
+
+RETURN VALUE
 
-       wfs = find_tex_files (fs, extra)
+None
+       """
+       latex_fn = outbase + '.latex'
+       
+       wfs = find_tex_files (files, extra)
        s = global_latex_definition (wfs, extra)
 
-       latex_file ='ly2dvi.out'
-       f = open (latex_file + '.tex', 'w')
+       f = open (latex_fn, 'w')
        f.write (s)
        f.close ()
 
-       # todo: nonstopmode
-       system ('latex \\\\nonstopmode \\\\input %s' % latex_file)
-       return latex_file + '.dvi'
+       cmd = 'latex \\\\nonstopmode \\\\input %s' % latex_fn
+
+       if not verbose_p and os.name == 'posix':
+               progress ( _("Running %s...") % 'LaTeX')
+               cmd = cmd + ' 1> /dev/null 2> /dev/null'
+
+       system (cmd)
+
+def run_dvips (outbase, extra):
 
-def generate_postscript (dvi_name, extra):
-       '''Run dvips on DVI_NAME, optionally doing -t landscape'''
 
+       """Run dvips using the correct options taken from EXTRA,
+leaving a PS file in OUTBASE.ps
+
+RETURN VALUE
+
+None.
+"""
        opts = ''
        if extra['papersize']:
-               opts = opts + ' -t %s' % extra['papersize'][0]
+               opts = opts + ' -t%s' % extra['papersize'][0]
 
        if extra['orientation'] and extra['orientation'][0] == 'landscape':
-               opts = opts + ' -t landscape'
-
-       ps_name = re.sub (r'\.dvi', r'.ps', dvi_name)
-       system ('dvips %s -o %s %s' % (opts, ps_name, dvi_name))
+               opts = opts + ' -tlandscape'
 
-       return ps_name
+       cmd = 'dvips %s -o%s %s' % (opts, outbase + '.ps', outbase + '.dvi')
+       
+       if not verbose_p and os.name == 'posix':
+               progress ( _("Running %s...") % 'dvips')
+               cmd = cmd + ' 1> /dev/null 2> /dev/null'
                
-
+       system (cmd)
 
 def generate_dependency_file (depfile, outname):
        df = open (depfile, 'w')
@@ -494,7 +651,8 @@ def generate_dependency_file (depfile, outname):
 (sh, long) = getopt_args (__main__.option_definitions)
 try:
        (options, files) = getopt.getopt(sys.argv[1:], sh, long)
-except:
+except getopt.error, s: 
+       errorport.write ("\nerror: getopt says `%s\'\n\n" % s)
        help ()
        sys.exit (2)
        
@@ -506,16 +664,21 @@ for opt in options:
                pass
        elif o == '--help' or o == '-h':
                help ()
+               sys.exit (0)
        elif o == '--include' or o == '-I':
                include_path.append (a)
        elif o == '--postscript' or o == '-P':
-               postscript_p = 1
+               targets['PS'] = 0
        elif o == '--keep' or o == '-k':
                keep_temp_dir_p = 1
        elif o == '--no-lily':
-               no_lily = 1
-       elif o == '--outdir':
-               outdir = a
+               lily_p = 0
+       elif o == '--no-paper' or o == '-m':
+               targets = {}
+               targets['MIDI'] = 0
+               paper_p = 0
+       elif o == '--output' or o == '-o':
+               output_name = a
        elif o == '--set' or o == '-s':
                ss = string.split (a, '=')
                set_setting (extra_init, ss[0], ss[1])
@@ -527,80 +690,145 @@ for opt in options:
                identify ()
                sys.exit (0)
        elif o == '--warranty' or o == '-w':
-               warranty ()
+               status = system ('lilypond -w', ignore_error = 1)
+               if status:
+                       warranty ()
+
                sys.exit (0)
 
+
+def cp_to_dir (pattern, dir):
+       "Copy files matching re PATTERN from cwd to DIR"
+       # Duh.  Python style portable: cp *.EXT OUTDIR
+       # system ('cp *.%s %s' % (ext, outdir), 1)
+       files = filter (lambda x, p=pattern: re.match (p, x), os.listdir ('.'))
+       map (lambda x, d=dir: shutil.copy2 (x, os.path.join (d, x)), files)
+
+# Python < 1.5.2 compatibility
+#
 # On most platforms, this is equivalent to
 #`normpath(join(os.getcwd()), PATH)'.  *Added in Python version 1.5.2*
-def compat_abspath (path):
-       return os.path.normpath (os.path.join (os.getcwd (), path))
+if os.path.__dict__.has_key ('abspath'):
+       abspath = os.path.abspath
+else:
+       def abspath (path):
+               return os.path.normpath (os.path.join (os.getcwd (), path))
 
-include_path = map (compat_abspath, include_path)
-files = map (compat_abspath, files) 
-outdir = compat_abspath (outdir)
+if os.__dict__.has_key ('makedirs'):
+       makedirs = os.makedirs
+else:
+       def makedirs (dir, mode=0777):
+               system ('mkdir -p %s' % dir)
 
-       
-files = map (lambda x: strip_extension (x, '.ly'), files)
+def mkdir_p (dir, mode=0777):
+       if not os.path.isdir (dir):
+               makedirs (dir, mode)
 
-if files:
-       setup_temp ()
-       extra = extra_init
-       
-       dvi_name = do_files (files, extra)
+include_path = map (abspath, include_path)
 
-       if postscript_p:
-               ps_name = generate_postscript (dvi_name, extra)
+original_output = output_name
 
+if files and files[0] != '-':
 
+       files = map (lambda x: strip_extension (x, '.ly'), files)
 
-       base = os.path.basename (files[0])
-       dest = base
-       type = 'foobar'
-       srcname = 'foobar'
-       
-       if postscript_p:
-               srcname = ps_name
-               dest = dest + '.ps'
-               type = 'PS'
+       (outdir, outbase) = ('','')
+       if not output_name:
+               outbase = os.path.basename (files[0])
+               outdir = abspath('.')
+       elif output_name[-1] == os.sep:
+               outdir = abspath (output_name)
+               outbase = os.path.basename (files[0])
        else:
-               srcname = dvi_name
-               dest= dest + '.dvi'
-               type = 'DVI'
+               (outdir, outbase) = os.path.split (abspath (output_name))
 
-       dest = os.path.join (outdir, dest)
-       midi = base + '.midi'
-       midi = os.path.join (outdir, midi)
-       
-       if outdir != '.':
-               system ('mkdir -p %s' % outdir)
-               
-       #if re.match ('.*[.]dvi', string.join (os.listdir ('.'))):
-       if os.path.isfile (srcname):
-               # huh, and what bout all other (-1, -2) scores?
-               system ('cp \"%s\" \"%s\"' % (srcname, dest))
-       else:
-               dest = 0
-       if re.match ('.*[.]midi', string.join (os.listdir ('.'))):
-               system ('cp *.midi %s' % outdir)
+       for i in ('.dvi', '.latex', '.ly', '.ps', '.tex'):
+               output_name = strip_extension (output_name, i)
+
+       files = map (abspath, files) 
+
+       if os.path.dirname (output_name) != '.':
+               dep_prefix = os.path.dirname (output_name)
        else:
-               midi = 0
+               dep_prefix = 0
 
-       depfile = os.path.join (outdir, base + '.dep')
+       reldir = os.path.dirname (output_name)
+       if outdir != '.' and (track_dependencies_p or targets.keys ()):
+               mkdir_p (outdir, 0777)
 
-       if track_dependencies_p:
-               generate_dependency_file (depfile, dest)
+       setup_environment ()
+       tmpdir = setup_temp ()
+       if cache_pks_p :
+               os.chdir (outdir)
+               cp_to_dir (PK_PATTERN, tmpdir)
 
+       os.chdir (tmpdir)
+       
+       extra = extra_init
+       
+       if lily_p:
+##             try:
+                       run_lilypond (files, outbase, dep_prefix)
+## #           except:
+##                     # TODO: friendly message about LilyPond setup/failing?
+##                     #
+##                     # TODO: lilypond should fail with different
+##                     # error codes for:
+##                     #   - guile setup/startup failure
+##                     #   - font setup failure
+##                     #   - init.ly setup failure
+##                     #   - parse error in .ly
+##                     #   - unexpected: assert/core dump
+## #                   targets = {}
+
+       if targets.has_key ('DVI') or targets.has_key ('PS'):
+#              try:
+                       run_latex (files, outbase, extra)
+                       # unless: add --tex, or --latex?
+                       del targets['TEX']
+                       del targets['LATEX']
+#              except Foobar:
+#                      # TODO: friendly message about TeX/LaTeX setup,
+#                      # trying to run tex/latex by hand
+#                      if targets.has_key ('DVI'):
+#                              del targets['DVI']
+#                      if targets.has_key ('PS'):
+#                              del targets['PS']
+
+       # TODO: does dvips ever fail?
+       if targets.has_key ('PS'):
+               run_dvips (outbase, extra)
+
+       # add DEP to targets?
+       if track_dependencies_p:
+               depfile = os.path.join (outdir, outbase + '.dep')
+               generate_dependency_file (depfile, depfile)
+               if os.path.isfile (depfile):
+                       progress (_ ("dependencies output to `%s'...") % depfile)
+
+       for i in targets.keys ():
+               ext = string.lower (i)
+               cp_to_dir ('.*\.%s$' % ext, outdir)
+               outname = outbase + '.' + string.lower (i)
+               abs = os.path.join (outdir, outname)
+               if reldir != '.':
+                       outname = os.path.join (reldir, outname)
+               if os.path.isfile (abs):
+                       progress (_ ("%s output to `%s'...") % (i, outname))
+               elif verbose_p:
+                       warning (_ ("can't find file: `%s'") % outname)
+                       
+               if cache_pks_p:
+                       cp_to_dir (PK_PATTERN, outdir)
+               
        os.chdir (original_dir)
        cleanup_temp ()
-
-       # most insteresting info last
-       # don't say silly things
-       if os.path.isfile (depfile):
-               progress (_ ("dependencies output to %s...") % depfile)
-       if dest and os.path.isfile (dest):
-               progress (_ ("%s output to %s...") % (type, dest))
-       if midi and os.path.isfile (midi):
-               progress (_ ("%s output to %s...") % ('MIDI', midi))
+       
+else:
+       # FIXME
+       help ()
+       errorport.write ("ly2dvi: " + _ ("error: ") + _ ("no files specified on command line.") + '\n')
+       sys.exit (2)