]> git.donarmstrong.com Git - lilypond.git/commitdiff
This commit was manufactured by cvs2svn to create tag 'lilypond_1_9_5'. release/1.9.5
authorjanneke <janneke>
Wed, 10 Sep 2003 09:49:58 +0000 (09:49 +0000)
committerjanneke <janneke>
Wed, 10 Sep 2003 09:49:58 +0000 (09:49 +0000)
README.mandrake [deleted file]
make/lilypond.redhat.spec.in
stepmake/autogen.sh [deleted file]

diff --git a/README.mandrake b/README.mandrake
deleted file mode 100644 (file)
index e28ed00..0000000
+++ /dev/null
@@ -1,54 +0,0 @@
-README.first
-============
-
-This file created for Linux-Mandrake distribution by Michael Brown
-<mbrown@fensystems.co.uk>
-
-LilyPond is a music typesetter.  It produces beautiful sheet music using a
-high level description file as input.
-
-LilyPond is split into two packages.  The package "lilypond" provides the
-core package, containing the utilities for converting the music source
-(.ly) files into printable output.  The package "lilypond-documentation" 
-provides the full documentation, example .ly files for various features and 
-the Mutopia project files (musical equivalent of the Gutenberg project - see
-http://www.mutopiaproject.org for details).
-
-If you are new to lilypond, you will almost certainly want to install the
-"lilypond-documentation" package in addition to the "lilypond" package.
-
-You may also wish to investigate the "denemo" package, which provides a
-graphical front end to lilypond.
-
-
-
-Quick Start Guide
-=================
-
-To run lilypond:
-
-Create a lilypond source (.ly) file in a directory that you can write
-to.  (The easiest way to do this is to copy a .ly file from
-/usr/share/doc/lilypond-1.4.2/Examples or one of the Mutopia files
-from /usr/share/doc/lilypond-1.4.2/Mutopia - note that these folders
-are part of the lilypond-documentation package).
-
-Run "ly2dvi -P input_file.ly" (replacing input_file as appropriate).  This
-will create a file called input_file.ps, which you can then view using
-Ghostscript ("gv input_file.ps").
-
-For an easier way to use lilypond, try the graphical front-end denemo.
-
-
-
-Points to note
-==============
-
-DO NOT use the "lilypond -f ps" option to generate a PostScript file.  It
-is included as an experimental feature, or for platforms that do not have
-a working TeX setup (that's not Mandrake).
-Use "ly2dvi -P" instead.
-
-[ Addendum: the "lilypond -f ps" option is now broken in this package,
-  due to the new, improved way of handling the via-LaTeX method.  It won't
-  work.  Use "ly2dvi -P" instead. ]
index 94c525075ee8f08a9a4c350a5a0b27336510a829..a3626a791cf20a268476112993fb67752650459c 100644 (file)
@@ -73,7 +73,8 @@ gzip -9fn $RPM_BUILD_ROOT%{_infodir}/*
 %endif
 
 mkdir -p $RPM_BUILD_ROOT%{_datadir}/emacs/site-lisp/site-start.d
-install -m 644 lilypond-mode.el lilypond-font-lock.el lilypond-indent.el lilypond.words $RPM_BUILD_ROOT/%{_datadir}/emacs/site-lisp/
+install -m 644 lilypond-mode.el lilypond-font-lock.el lilypond-indent.el out/lilypond.words $RPM_BUILD_ROOT/%{_datadir}/emacs/site-lisp/
+
 install -m 644 lilypond-init.el $RPM_BUILD_ROOT/%{_datadir}/emacs/site-lisp/site-start.d
 
 gzip -9fn $RPM_BUILD_ROOT%{_mandir}/man1/*
diff --git a/stepmake/autogen.sh b/stepmake/autogen.sh
deleted file mode 100755 (executable)
index 05b2eae..0000000
+++ /dev/null
@@ -1,62 +0,0 @@
-#!/bin/sh
-# Run this to generate configure and initial GNUmakefiles
-
-srcdir=`dirname $0`
-
-
-if [ ! -f aclocal.m4 -o stepmake/aclocal.m4 -nt aclocal.m4 ]; then
-    echo "stepmake/aclocal.m4 is newer. Copying file." 
-    cp -f stepmake/aclocal.m4 aclocal.m4
-fi
-
-if [ ! -f autogen.sh -o stepmake/autogen.sh -nt autogen.sh ]; then
-    echo "stepmake/autogen.sh is newer. Copying file." 
-    cp -f stepmake/autogen.sh autogen.sh
-    exec ./autogen.sh
-fi
-
-# Be paranoid: check for autoconf >= 2.50
-# Some setups have both autoconf 2.13 and 2.5x available through
-# a wrapper script: /usr/bin/autoconf.
-# This wrapper may incorrectly autoselect autoconf 2.50, but it
-# advertises itself as autoconf 2.13.
-# If you have such a setup, invoke this script as:
-#   autoconf=autoconf2.50 ./autogen.sh
-for i in autoconf2.50 autoconf-2.50 autoconf  false; do
-  version=`$i --version 2>/dev/null | head -1 | awk '{print $NF}' | awk -F. '{print $1 * 100 + $2}'`
-  if test "0$version" -ge 250; then
-    autoconf=$i
-    break
-  fi
-done
-
-if test -z "$autoconf"; then
-    echo "ERROR: Please install autoconf 2.50 or newer"
-    exit 1
-fi
-
-if test -z "$*"; then
-  echo "WARNING: I am going to run \`configure' with no arguments."
-  echo "If you wish to pass any to it, please specify them on the"
-  echo \`$0\'" command line."
-  echo
-fi
-
-for coin in `find $srcdir -name configure.in -print`
-do 
-  dr=`dirname $coin`
-  echo processing $dr
-  (
-      cd $dr
-      echo "Running autoconf ..."
-      $autoconf
-  )
-done
-
-#conf_flags="--enable-maintainer-mode --enable-compile-warnings" #--enable-iso-c
-if test -z "$NOCONFIGURE"; then
-  echo Running $srcdir/configure $conf_flags "$@" ...
-  $srcdir/configure $conf_flags "$@"
-else
-  echo Skipping configure process.
-fi