]> git.donarmstrong.com Git - lilypond.git/blobdiff - buildscripts/lilypond-login.sh
*** empty log message ***
[lilypond.git] / buildscripts / lilypond-login.sh
index d7e8e972d8d7a4284cf328ec13bf195f96025b90..d0c0377945429cfe4d90df784855808a7bac05b6 100644 (file)
@@ -1,28 +1,47 @@
 #!/bin/csh
 
-# env. vars for the C-shell.
-
-# set environment for LilyPond.  To be installed in /etc/profile.d/
-setenv GS_LIB "@datadir@/ps"
-setenv GS_FONTPATH "@datadir@/afm"
-# bit silly. for ly2dvi, overrules compiled-in datadir...
-setenv LILYPONDPREFIX "@datadir@"
-
-# include an empty path component for the system wide includes.
-if ($?MFINPUTS) then
-        setenv MFINPUTS "/usr/share/lilypond/mf:${MFINPUTS}::"
-else
-        setenv MFINPUTS "/usr/share/lilypond/mf::"
-endif
-if ($?TEXINPUTS) then
-        setenv TEXINPUTS "/usr/share/lilypond/tex:${TEXINPUTS}::"
-else
-        setenv TEXINPUTS "/usr/share/lilypond/tex::"
-endif
-if ($?GUILE_LOAD_PATH) then
-        setenv GUILE_LOAD_PATH "/usr/share/lilypond/scm:${GUILE_LOAD_PATH}"
-else
-        setenv GUILE_LOAD_PATH "/usr/share/lilypond/scm"
+# Setup TeX/LaTeX Ghostscript C-shell environment for LilyPond.
+# 
+# Red Hat-like systems should install this in /etc/profile.d/
+
+# If run by hand or from you .login, run as follows
+#   source lilypond-profile
+
+
+
+# strange shell, this C
+set datadir="@local_lilypond_datadir@"
+
+# setenv LILYPONDPREFIX "$datadir"
+# bit silly. for lilypond, overrules compiled-in datadir...
+# setenv LILYPONDPREFIX "@local_lilypond_datadir@"
+
+# Add the installation directory to the teTeX system tree, 
+# see Documentation/misc/fontinstallation
+
+set alreadyset = `kpsexpand \$TEXMF | grep "$datadir"`
+if ( "$alreadyset" == "" ) then
+    set noglob
+    setenv TEXMF "{$datadir,"`kpsexpand  \$TEXMF`"}"
+    unset noglob
 endif
+unset alreadyset
+
+
+
+# if ( $?GS_LIB ) then
+#       setenv GS_LIB "$datadir/ps:$GS_LIB"
+# else
+#       setenv GS_LIB "$datadir/ps"
+# endif
+
+
+
+# Add all available TeX Type1 fonts (including Feta) to Ghostscript:
+#if ( $?GS_FONTPATH ) then
+#       setenv GS_FONTPATH `kpsewhich -expand-path=\$T1FONTS`:$GS_FONTPATH
+#else
+#       setenv GS_FONTPATH `kpsewhich -expand-path=\$T1FONTS`
+#endif