diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2012-03-13 09:29:20 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2012-03-13 09:29:20 +0000 |
commit | ca1464b7ec75d9bbb0cfef212ee10a67aaeaeb59 (patch) | |
tree | 159e694f107929e517f8a60139a8c754634fdffc /media-sound/lilypond/files | |
parent | Version bump, remove old. (diff) | |
download | gentoo-2-ca1464b7ec75d9bbb0cfef212ee10a67aaeaeb59.tar.gz gentoo-2-ca1464b7ec75d9bbb0cfef212ee10a67aaeaeb59.tar.bz2 gentoo-2-ca1464b7ec75d9bbb0cfef212ee10a67aaeaeb59.zip |
old
(Portage version: 2.2.0_alpha90/cvs/Linux x86_64)
Diffstat (limited to 'media-sound/lilypond/files')
5 files changed, 0 insertions, 88 deletions
diff --git a/media-sound/lilypond/files/lilypond-2.12.2-dont-install-pyc.patch b/media-sound/lilypond/files/lilypond-2.12.2-dont-install-pyc.patch deleted file mode 100644 index 43b7ffa98985..000000000000 --- a/media-sound/lilypond/files/lilypond-2.12.2-dont-install-pyc.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- lilypond-2.12.2.orig/python/GNUmakefile 2009-01-18 22:04:57.000000000 -0200 -+++ lilypond-2.12.2/python/GNUmakefile 2009-12-10 12:28:27.000000000 -0300 -@@ -16,7 +16,7 @@ - INSTALLATION_OUT_DIR=$(local_lilypond_libdir)/python - - INSTALLATION_OUT_DIR1=$(local_lilypond_datadir)/python --INSTALLATION_OUT_FILES1=$(OUT_PY_MODULES) $(OUT_PYC_MODULES) -+INSTALLATION_OUT_FILES1=$(OUT_PY_MODULES) - - $(outdir)/midi.lo: $(outdir)/config.hh - diff --git a/media-sound/lilypond/files/lilypond-2.12.2-glibc-2.10.patch b/media-sound/lilypond/files/lilypond-2.12.2-glibc-2.10.patch deleted file mode 100644 index d1e34087881d..000000000000 --- a/media-sound/lilypond/files/lilypond-2.12.2-glibc-2.10.patch +++ /dev/null @@ -1,21 +0,0 @@ -diff -Naurp lilypond-2.12.2-orig/lily/relocate.cc lilypond-2.12.2/lily/relocate.cc ---- lilypond-2.12.2-orig/lily/relocate.cc 2009-01-18 18:04:57.000000000 -0600 -+++ lilypond-2.12.2/lily/relocate.cc 2009-07-29 14:31:12.908541341 -0600 -@@ -276,13 +276,13 @@ expand_environment_variables (string ori - string out; - while (ptr < start_ptr + len) - { -- char *dollar = strchr (ptr, '$'); -+ const char *dollar = strchr (ptr, '$'); - - if (dollar != NULL) - { -- char *start_var = dollar + 1; -- char *end_var = start_var; -- char *start_next = end_var; -+ const char *start_var = dollar + 1; -+ const char *end_var = start_var; -+ const char *start_next = end_var; - - out += string (ptr, dollar - ptr); - ptr = dollar; diff --git a/media-sound/lilypond/files/lilypond-2.12.3-gcc45.patch b/media-sound/lilypond/files/lilypond-2.12.3-gcc45.patch deleted file mode 100644 index bd1886c0b563..000000000000 --- a/media-sound/lilypond/files/lilypond-2.12.3-gcc45.patch +++ /dev/null @@ -1,20 +0,0 @@ -Fixing build with gcc-4.5 - -http://bugs.gentoo.org/show_bug.cgi?id=317163 - -Following patch was applied in 2.13 branch -Thanks Patrick McCarty for information - ---- lily/spacing-spanner.cc -+++ lily/spacing-spanner.cc -@@ -38,8 +38,8 @@ - vsize end = binary_search (all, (Grob*) me->get_bound (RIGHT), - &Paper_column::less_than); - -- all = vector<Grob*>::vector<Grob*> (all.begin () + start, -- all.begin () + end + 1); -+ all = vector<Grob*> (all.begin () + start, -+ all.begin () + end + 1); - return all; - } - diff --git a/media-sound/lilypond/files/lilypond-2.12.3-python-cflags.patch b/media-sound/lilypond/files/lilypond-2.12.3-python-cflags.patch deleted file mode 100644 index 869a6f3c234c..000000000000 --- a/media-sound/lilypond/files/lilypond-2.12.3-python-cflags.patch +++ /dev/null @@ -1,24 +0,0 @@ -diff -ruN lilypond-2.12.3~/aclocal.m4 lilypond-2.12.3/aclocal.m4 ---- lilypond-2.12.3~/aclocal.m4 2010-01-12 18:20:49.000000000 +0200 -+++ lilypond-2.12.3/aclocal.m4 2010-06-28 18:31:01.000000000 +0300 -@@ -985,7 +985,7 @@ - if test -z "$PYTHON_CFLAGS" -a "$PYTHON_CONFIG" != "no"; then - # Clean out junk: http://bugs.python.org/issue3290 - # Python headers may need some -f* flags, leave them in. -- PYTHON_CFLAGS=`$PYTHON_CONFIG --cflags | sed -e 's/ -\(W\|D\|O\|m\)\(\w\|-\|=\|,\)\+//g'` -+ PYTHON_CFLAGS=`$PYTHON_CONFIG --cflags | sed -e 's/ -\(W\|D\|O\|m\)\(\w\|-\|=\|,\|\.\)\+//g'` - PYTHON_LDFLAGS=`$PYTHON_CONFIG --ldflags` - fi - -diff -ruN lilypond-2.12.3~/stepmake/aclocal.m4 lilypond-2.12.3/stepmake/aclocal.m4 ---- lilypond-2.12.3~/stepmake/aclocal.m4 2010-01-12 18:20:49.000000000 +0200 -+++ lilypond-2.12.3/stepmake/aclocal.m4 2010-06-28 18:31:01.000000000 +0300 -@@ -985,7 +985,7 @@ - if test -z "$PYTHON_CFLAGS" -a "$PYTHON_CONFIG" != "no"; then - # Clean out junk: http://bugs.python.org/issue3290 - # Python headers may need some -f* flags, leave them in. -- PYTHON_CFLAGS=`$PYTHON_CONFIG --cflags | sed -e 's/ -\(W\|D\|O\|m\)\(\w\|-\|=\|,\)\+//g'` -+ PYTHON_CFLAGS=`$PYTHON_CONFIG --cflags | sed -e 's/ -\(W\|D\|O\|m\)\(\w\|-\|=\|,\|\.\)\+//g'` - PYTHON_LDFLAGS=`$PYTHON_CONFIG --ldflags` - fi - diff --git a/media-sound/lilypond/files/lilypond-2.12.3-qa_pyc_fix.patch b/media-sound/lilypond/files/lilypond-2.12.3-qa_pyc_fix.patch deleted file mode 100644 index 3ac3c305d3aa..000000000000 --- a/media-sound/lilypond/files/lilypond-2.12.3-qa_pyc_fix.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff -Naur lilypond-2.12.2.orig/python/GNUmakefile lilypond-2.12.2/python/GNUmakefile ---- lilypond-2.12.2.orig/python/GNUmakefile 2009-01-18 22:04:57.000000000 -0200 -+++ lilypond-2.12.2/python/GNUmakefile 2009-12-10 12:28:27.000000000 -0300 -@@ -16,7 +16,7 @@ - INSTALLATION_OUT_DIR=$(local_lilypond_libdir)/python - - INSTALLATION_OUT_DIR1=$(local_lilypond_datadir)/python --INSTALLATION_OUT_FILES1=$(OUT_PY_MODULES) $(OUT_PYC_MODULES) -+INSTALLATION_OUT_FILES1=$(OUT_PY_MODULES) - - $(outdir)/midi.lo: $(outdir)/config.hh - |