]> git.donarmstrong.com Git - lilypond.git/blobdiff - buildscripts/lilypond-profile.sh
* scm/encoding.scm (coding-alist):
[lilypond.git] / buildscripts / lilypond-profile.sh
old mode 100755 (executable)
new mode 100644 (file)
index f208386..da3e1dc
@@ -1,18 +1,84 @@
 #!/bin/sh
 
+# Setup TeX/LaTeX Ghostscript environment for LilyPond.
 
-# set environment for LilyPond.  To be installed in /etc/profile.d/
-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
+#   . /PATH/TO/lilypond-profile
 
-# include an empty path component for the system wide includes.
-MFINPUTS="@datadir@/mf:"${MFINPUTS:=":"}
-TEXINPUTS="@datadir@/tex:@datadir@/ps:"${TEXINPUTS:=":"}
 
-export LILYINCLUDE LILYPONDPREFIX MFINPUTS TEXINPUTS GS_LIB GS_FONTPATH
 
+
+
+# In ZSH, $0 is set to the script name, regardless of whether sourced
+# or run in a subshell.
+if [ -n "$ZSH_NAME" ] ; then
+    echo "Make sure that this script is sourced, ie. run as "
+    echo 
+    echo "   . lilypond-profile"
+    echo ""
+    echo "Continuing anyway ..."
+    return 2
+fi
+
+if [ -z "$ZSH_NAME" -a `basename "$0"` = "lilypond-profile" ] ; then 
+    cat >/dev/stderr <<EOF
+    
+Error: This script cannot be run in a subshell; it MUST be sourced.
+
+
+EXAMPLE 1: One time use 
+
+       * Do
+
+           . $0
+
+
+
+EXAMPLE 2: Install for self
+
+       * Do
+
+           cp lilypond-profile $HOME/bin/
+
+       * Add
+
+           .  $HOME/bin/lilypond-profile
+
+       to either $HOME/.profile or $HOME/.bash_profile, 
+
+       * Logout.
+
+
+EXAMPLE 3: Install for all users.
+
+       * Do
+
+            mv lilypond-profile /etc/profile.d/lilypond.sh
+
+       * Logout
+
+EOF
+
+    return 2
+else
+       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
+
+       # Add the installation directory to the teTeX system tree, 
+       # see Documentation/misc/fontinstallation
+       if [ -z `echo $TEXMF | grep "$datadir"` ]; then
+               TEXMF="{$datadir,"`kpsexpand  \\$TEXMF`"}"
+               export TEXMF
+       fi
+fi