]> git.donarmstrong.com Git - lilypond.git/commitdiff
C
authorJan Nieuwenhuizen <janneke@gnu.org>
Fri, 7 Jan 2005 14:24:05 +0000 (14:24 +0000)
committerJan Nieuwenhuizen <janneke@gnu.org>
Fri, 7 Jan 2005 14:24:05 +0000 (14:24 +0000)
ChangeLog
GNUmakefile.in
SConstruct
ps/GNUmakefile

index 4b3d764a227450c058f9fe8713880dc8a68c286e..4362d3c7754d97ae56f75d96c44ff7cf99048f41 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,13 @@
+2005-01-03  Jan Nieuwenhuizen  <janneke@gnu.org>
+
+       Backport teTeX-3.0 compatibility.
+       
+       * SConstruct: 
+       * ps/GNUmakefile (INSTALLATION_FILES): teTeX-3.0
+       compatibility (backportme).
+
+       * GNUmakefile.in: teTeX-3.0 compatibility (backportme).
+
 2005-01-05  Mats Bengtsson  <mabe@drongo.s3.kth.se>
 
        * Documentation/user/notation.itely (Setting simple songs):
index c60180d4b5fe13b9c1be0e8763c1c4d9ad34a52c..a5332feaaaf485b80138659274b0a127561b1df9 100644 (file)
@@ -101,6 +101,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
@@ -108,13 +109,15 @@ $(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) afm && \
                ln -s ../../mf/$(outconfbase) tfm && \
                ln -s $(abs-srcdir)/mf && \
                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 f3067fd56f0a80bc87a11df3f50d9bab8c840020..2b59c9a4ac43a1d9c74472e8e64a564d8723dac2 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/afm'),
              ('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