]> git.donarmstrong.com Git - lilypond.git/blobdiff - buildscripts/lilypond-profile.sh
* VERSION (MY_PATCH_LEVEL): make 1.7.0
[lilypond.git] / buildscripts / lilypond-profile.sh
old mode 100755 (executable)
new mode 100644 (file)
index 6aebf7b..f1a941c
@@ -1,22 +1,35 @@
 #!/bin/sh
 
+# Setup TeX/LaTeX Ghostscript environment for LilyPond.
 
-# set environment for LilyPond.  To be installed in /etc/profile.d/
-GS_LIB="@datadir@/ps"
-GS_FONTPATH="@datadir@/afm:@datadir@/pfa"
+# Red Hat-like systems should install this in /etc/profile.d/
 
-# bit silly. for ly2dvi, overrules compiled-in datadir...
-LILYPONDPREFIX="@datadir@"
+# If run by hand or from you .profile, run as follows
+#   . lilypond-profile
 
-# include an empty path component for the system wide includes.
-MFINPUTS="@datadir@/mf:"${MFINPUTS:=":"}
-TEXINPUTS="@datadir@/tex:@datadir@/ps:"${TEXINPUTS:=":"}
 
-GUILE_LOAD_PATH="@datadir@/scm:$GUILE_LOAD_PATH"
+if [ -z "$LILYPONDPREFIX" ]; then
+    datadir=`echo "@local_lilypond_datadir@" | sed 's!//!/!g'`
+else
+    if [ -d "$LILYPONDPREFIX/share" ]; then
+       datadir=$LILYPONDPREFIX/share/lilypond/
+    fi
+    echo "Setting tree to $datadir"
+fi
 
-export GUILE_LOAD_PATH LILYINCLUDE LILYPONDPREFIX MFINPUTS TEXINPUTS GS_LIB GS_FONTPATH
+# Add the installation directory to the teTeX system tree, 
+# see Documentation/misc/fontinstallation
+TEXMF="{$datadir,"`kpsexpand  \\$TEXMF`"}"
+export TEXMF
+
+# For direct ps output: ps/lilyponddefs.ps
+## GS_LIB="$datadir/ps:"${GS_LIB:=""}
+## export GS_LIB
+
+# For direct ps output fonts. Add all available TeX Type1 fonts
+## GS_FONTPATH=`kpsewhich -expand-path=\\$T1FONTS`:${GS_FONTPATH:=""}
+## export GS_FONTPATH
 
        
-# echo  $LILYINCLUDE $MFINPUTS $TEXINPUTS $GS_LIB $GS_FONTPATH