]> git.donarmstrong.com Git - lilypond.git/commitdiff
*** empty log message ***
authorHan-Wen Nienhuys <hanwen@xs4all.nl>
Tue, 19 Apr 2005 00:14:59 +0000 (00:14 +0000)
committerHan-Wen Nienhuys <hanwen@xs4all.nl>
Tue, 19 Apr 2005 00:14:59 +0000 (00:14 +0000)
ChangeLog
buildscripts/lilypond-login.sh [deleted file]
buildscripts/lilypond-profile.sh [deleted file]

index b0791911b87d5d3dd08d596ebff88566235267e5..088f4b02595c0ef610d60871ee6284c60e0d2159 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2005-04-19  Han-Wen Nienhuys  <hanwen@xs4all.nl>
+
+       * buildscripts/lilypond-{login,profile}.sh (Module): remove file.
+
+2005-04-18  Han-Wen Nienhuys  <hanwen@xs4all.nl>
+
+       * scm/output-ps.scm (grob-cause): don't add cwd if path starts
+       with 
+
 2005-04-18  Jan Nieuwenhuizen  <janneke@gnu.org>
 
        * stepmake/aclocal.m4: Remove tfm_path.
diff --git a/buildscripts/lilypond-login.sh b/buildscripts/lilypond-login.sh
deleted file mode 100644 (file)
index d0c0377..0000000
+++ /dev/null
@@ -1,47 +0,0 @@
-#!/bin/csh
-
-# 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
-
-
diff --git a/buildscripts/lilypond-profile.sh b/buildscripts/lilypond-profile.sh
deleted file mode 100644 (file)
index da3e1dc..0000000
+++ /dev/null
@@ -1,84 +0,0 @@
-#!/bin/sh
-
-# Setup TeX/LaTeX Ghostscript environment for LilyPond.
-
-# Red Hat-like systems should install this in /etc/profile.d/
-
-# If run by hand or from you .profile, run as follows
-#   . /PATH/TO/lilypond-profile
-
-
-
-
-
-# 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
-       
-
-