]> git.donarmstrong.com Git - lilypond.git/commitdiff
* SConstruct:
authorJan Nieuwenhuizen <janneke@gnu.org>
Mon, 3 Jan 2005 13:07:15 +0000 (13:07 +0000)
committerJan Nieuwenhuizen <janneke@gnu.org>
Mon, 3 Jan 2005 13:07:15 +0000 (13:07 +0000)
* ps/GNUmakefile (INSTALLATION_FILES): teTeX-3.0
compatibility (backportme).

* GNUmakefile.in: teTeX-3.0 compatibility (backportme).

ChangeLog
GNUmakefile.in
SConstruct
ps/GNUmakefile

index 5d13354cb73ba4fa2257f945677245d354584230..92e4e06c127f4f32dfe52b1d6ba06bf01c3390d9 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2005-01-03  Jan Nieuwenhuizen  <janneke@gnu.org>
+
+       * SConstruct: 
+       * ps/GNUmakefile (INSTALLATION_FILES): teTeX-3.0
+       compatibility (backportme).
+
+       * GNUmakefile.in: teTeX-3.0 compatibility (backportme).
+
 2005-01-03  Werner Lemberg  <wl@gnu.org>
 
        Prepare glyph shapes for mf2pt1 conversion.
index e3198a352f09030460b5f280038089cbddc5eca7..2406980bb5ea3179f2db513353ebe666d2c0e6b2 100644 (file)
@@ -103,6 +103,7 @@ $(builddir)/share/lilypond-force:
        cd $(builddir) && rm -rf lib share
        mkdir -p $(builddir)/lib/$(package)
        mkdir -p $(builddir)/share/$(package)
+       mkdir -p $(builddir)/share/$(package)/dvips
        mkdir -p $(builddir)/share/$(package)/elisp
        mkdir -p $(builddir)/share/$(package)/fonts
        mkdir -p $(builddir)/share/$(package)/tex
@@ -110,7 +111,6 @@ $(builddir)/share/lilypond-force:
                ln -s  ../../python/$(outconfbase) python
        cd $(builddir)/share/$(package) && \
                ln -s $(abs-srcdir)/ly ly && \
-               ln -s ../../mf/$(outconfbase) dvips && \
                ln -s ../../mf/$(outconfbase) otf && \
                ln -s ../../mf/$(outconfbase) svg && \
                ln -s ../../mf/$(outconfbase) tfm && \
@@ -118,6 +118,9 @@ $(builddir)/share/lilypond-force:
                ln -s $(abs-srcdir)/ps && \
                ln -s ../../python/$(outconfbase) python && \
                ln -s $(abs-srcdir)/scm
+       cd $(builddir)/share/$(package)/dvips && \
+               ln -s ./../mf/$(outconfbase) mf-out && \
+               ln -s $(abs-srcdir)/ps
        cd $(builddir)/share/$(package)/tex && \
                ln -s $(abs-srcdir)/tex source && \
                ln -s ../../../tex/$(outconfbase) tex-out && \
index 124797edaa7f3d8cb5a7cb6c758472d8e4972a7c..4e5640dff2df81bc1c9112459e74cdcbc1643a22 100644 (file)
@@ -667,7 +667,8 @@ def symlink_tree (target, source, env):
              ('lily/',      'bin/lilypond-bin'),
              ('scripts/',   'bin/lilypond'),
              ('scripts/',   'bin/lilypond-book'),
-             ('mf',         'share/lilypond/dvips'),
+             ('mf',         'share/lilypond/dvips/mf-out'),
+             ('#ps',        'share/lilypond/dvips/ps'),
              ('#ps',        'share/lilypond/tex/music-drawing-routines.ps'),
              ('mf',         'share/lilypond/otf'),
              ('mf',         'share/lilypond/tfm'),
index 1ade515613c934f6fbce48df0b0867b2e3591a40..c57e9e6a12e5bcd68d109dd169310dcf22bc69a4 100644 (file)
@@ -8,4 +8,13 @@ EXTRA_DIST_FILES = $(PS_FILES)
 INSTALLATION_DIR=$(local_lilypond_datadir)/ps/
 INSTALLATION_FILES=$(PS_FILES)
 
+# teTeX-3.0 compatibility.
+local-install:
+       -$(INSTALL) -d $(local_lilypond_datadir)/dvips
+       (cd $(local_lilypond_datadir)/dvips && ln -sf ../ps .)
+
+local-uninstall:
+       -rm -f $(local_lilypond_datadir)/dvips/ps
+       -rmdir $(local_lilypond_datadir)/dvips
+
 include $(depth)/make/stepmake.make