]> git.donarmstrong.com Git - lilypond.git/blobdiff - buildscripts/lilypond-profile.sh
release: 1.5.40
[lilypond.git] / buildscripts / lilypond-profile.sh
index 576a30b9fe4b26c3e8d318aa753fa1876b943012..ef963d8a140277a80cbcf7381c689a7eb59f2629 100755 (executable)
@@ -4,18 +4,21 @@
 
 # Red Hat-like systems should install this in /etc/profile.d/
 
+# If run by hand or from you .profile, run as follows
+#   . lilypond-profile
+
 # This is a bit of a kludge.  Ideally, lilypond's tex, afm, pfa, ps
 # directories should be installed into their location in the texmf/gs
 # trees, rather than messing around with environment variables (eg,
 # see Debian or SuSE package).
 
-datadir="@datadir@"
+datadir=`echo "@datadir@" | sed 's!//!/!g'`
 
 # For direct ps output fonts
-GS_FONTPATH="$datadir/afm:$datadir/pfa"
+GS_FONTPATH="$datadir/afm:$datadir/pfa:"${GS_FONTPATH:=""}
 
 # For direct ps output: ps/lilyponddefs.ps
-GS_LIB="$datadir/ps"
+GS_LIB="$datadir/ps:"${GS_LIB:=""}
 
 # bit silly. for ly2dvi, overrules compiled-in datadir...
 # Better comment this out.  Compiled-in datadir serves exactly the
@@ -27,8 +30,16 @@ GS_LIB="$datadir/ps"
 MFINPUTS="$datadir/mf:"${MFINPUTS:=":"}
 TEXINPUTS="$datadir/tex:$datadir/ps:"${TEXINPUTS:=":"}
 TFMFONTS="$datadir/tfm:"${TFMFONTS:=":"}
+TEXPSHEADERS="$datadir/pfa/:"${TEXPSHEADERS:=":"}
+TEXCONFIG="$datadir/pfa/:"${TEXCONFIG:=":"}
+
+
+
+# LILYPONDPREFIX="$datadir"
+# export LILYPONDPREFIX
 
 export MFINPUTS TEXINPUTS TFMFONTS GS_LIB GS_FONTPATH
+export TEXPSHEADERS TEXCONFIG