diff options
author | Steve Dibb <beandog@gentoo.org> | 2008-02-25 18:22:01 +0000 |
---|---|---|
committer | Steve Dibb <beandog@gentoo.org> | 2008-02-25 18:22:01 +0000 |
commit | 5580a844ebbd57078c0a3e2ddfe9de7f6f9ca18e (patch) | |
tree | f1da3cc9ab91ca4c32af9b44c719ffd9d0bc8225 /media-sound/jmax/files | |
parent | Use -j1 during make install as parallel install fail. See bug #211395. (diff) | |
download | gentoo-2-5580a844ebbd57078c0a3e2ddfe9de7f6f9ca18e.tar.gz gentoo-2-5580a844ebbd57078c0a3e2ddfe9de7f6f9ca18e.tar.bz2 gentoo-2-5580a844ebbd57078c0a3e2ddfe9de7f6f9ca18e.zip |
punting, bug 73490
Diffstat (limited to 'media-sound/jmax/files')
-rw-r--r-- | media-sound/jmax/files/jmax-4.0.2-work_with_recent_alsa-lib.patch | 33 | ||||
-rw-r--r-- | media-sound/jmax/files/jmax-4.1.0-fix-java-check.patch | 22 | ||||
-rw-r--r-- | media-sound/jmax/files/jmax-4.1.0-gcc34.patch | 27 | ||||
-rw-r--r-- | media-sound/jmax/files/jmax-4.1.0-gcc41.patch | 21 | ||||
-rw-r--r-- | media-sound/jmax/files/jmax-4.1.0-otherArch.patch | 19 | ||||
-rw-r--r-- | media-sound/jmax/files/jmax-4.1.0-usercflags.patch | 12 |
6 files changed, 0 insertions, 134 deletions
diff --git a/media-sound/jmax/files/jmax-4.0.2-work_with_recent_alsa-lib.patch b/media-sound/jmax/files/jmax-4.0.2-work_with_recent_alsa-lib.patch deleted file mode 100644 index eae0d925e07b..000000000000 --- a/media-sound/jmax/files/jmax-4.0.2-work_with_recent_alsa-lib.patch +++ /dev/null @@ -1,33 +0,0 @@ -diff -u packages/alsa/c/src/alsaaudiomanager.c patches/alsaaudiomanager.c ---- packages/alsa/c/src/alsaaudiomanager.c 2003-02-19 18:04:56.000000000 +0100 -+++ patches/alsaaudiomanager.c 2004-01-17 18:27:39.115180703 +0100 -@@ -20,6 +20,10 @@ - * - */ - -+ /* Alsa 1.0.x has to be informed to be compatible with 0.9.x libs. -+ * It has no effect on Alsa 0.9.x -+ */ -+#define ALSA_PCM_OLD_HW_PARAMS_API 1 - - #include <stdio.h> - #include <stdlib.h> - - -diff -u packages/alsa/c/src/alsaaudioport.c patches/alsaaudioport.c ---- packages/alsa/c/src/alsaaudioport.c 2003-02-19 18:02:51.000000000 +0100 -+++ patches/alsaaudioport.c 2004-01-17 18:27:59.896960871 +0100 -@@ -24,6 +24,12 @@ - * This file include the jMax ALSA audio port. - */ - -+ /* Alsa 1.0.x has to be informed to be compatible with 0.9.x libs. -+ * It has no effect on Alsa 0.9.x -+ */ -+#define ALSA_PCM_OLD_HW_PARAMS_API 1 -+#define ALSA_PCM_OLD_SW_PARAMS_API 1 -+ - #include <stdio.h> - #include <stdlib.h> - #include <errno.h> - diff --git a/media-sound/jmax/files/jmax-4.1.0-fix-java-check.patch b/media-sound/jmax/files/jmax-4.1.0-fix-java-check.patch deleted file mode 100644 index a63af7dcf704..000000000000 --- a/media-sound/jmax/files/jmax-4.1.0-fix-java-check.patch +++ /dev/null @@ -1,22 +0,0 @@ ---- m4/ac_check_java_version.m4.orig 2004-07-22 16:58:54.685070072 +0200 -+++ m4/ac_check_java_version.m4 2004-07-22 16:59:02.856827776 +0200 -@@ -9,7 +9,7 @@ - AC_CACHE_CHECK([if $JAVA version is good], ac_cv_check_java_version, [ - - if AC_TRY_COMMAND($JAVA -version) > /dev/null 2>&1; then -- java_version=`$JAVA -version 2>&1 | grep "version" | sed 's/java version//' | sed 's/\"//g' ` -+ java_version=`$JAVA -version 2>&1 | grep "version" | sed 's/java version//' | sed 's/\"//g' | sed 's/-.*//' ` - java_major_version=`echo $java_version | sed 's/\([[0-9]][[0-9]]*\)\..*/\1/'` - java_minor_version=`echo $java_version | sed 's/[[0-9]][[0-9]]*\.\([[0-9]][[0-9]]*\)\(\.[[0-9]][[0-9]]*\)*/\1/' | sed 's/_.*//g'` - ---- bin/jmax.in.orig 2004-09-15 11:59:41.575144987 -0700 -+++ bin/jmax.in 2004-09-15 12:02:31.142218132 -0700 -@@ -208,7 +208,7 @@ - check_java_version () - { - java_to_test="$1" -- java_version=`$java_to_test -version 2>&1 | grep "version" | sed 's/java version//' | sed 's/\"//g' ` -+ java_version=`$java_to_test -version 2>&1 | grep "version" | sed 's/java version//' | sed 's/\"//g' | sed 's/-.*//' ` - if test -z $java_version; then - # domething bad with java version - return 1 diff --git a/media-sound/jmax/files/jmax-4.1.0-gcc34.patch b/media-sound/jmax/files/jmax-4.1.0-gcc34.patch deleted file mode 100644 index fb8fa39c00c5..000000000000 --- a/media-sound/jmax/files/jmax-4.1.0-gcc34.patch +++ /dev/null @@ -1,27 +0,0 @@ -diff -Naur jmax-4.1.0.orig/client/cpp/src/Hashtable.h jmax-4.1.0/client/cpp/src/Hashtable.h ---- jmax-4.1.0.orig/client/cpp/src/Hashtable.h 2002-11-18 23:56:42.000000000 -0800 -+++ jmax-4.1.0/client/cpp/src/Hashtable.h 2004-07-08 14:32:14.325244414 -0700 -@@ -7,6 +7,8 @@ - - #include <iostream> - -+using namespace std; -+ - namespace ircam { - namespace fts { - namespace client { -diff -Naur jmax-4.1.0.orig/packages/dtd/c/src/dtd_thread.h jmax-4.1.0/packages/dtd/c/src/dtd_thread.h ---- jmax-4.1.0.orig/packages/dtd/c/src/dtd_thread.h 2003-07-22 09:10:50.000000000 -0700 -+++ jmax-4.1.0/packages/dtd/c/src/dtd_thread.h 2004-07-08 14:31:23.965610486 -0700 -@@ -41,9 +41,9 @@ - dtd_buffer_t* com_buffer; - - /* index of buffer write by FTS */ -- const int* const buffer_index; -+ const int* buffer_index; - /* eof flags set by dtd_thread */ -- const int* const is_eof; -+ int* is_eof; - - /* delay for nanosleep (see fts_thread_manager) */ - int delay_ms; diff --git a/media-sound/jmax/files/jmax-4.1.0-gcc41.patch b/media-sound/jmax/files/jmax-4.1.0-gcc41.patch deleted file mode 100644 index 5c0b8d63bd66..000000000000 --- a/media-sound/jmax/files/jmax-4.1.0-gcc41.patch +++ /dev/null @@ -1,21 +0,0 @@ -diff -Naur jmax-4.1.0-orig/packages/guiobj/c/src/keyserver.h jmax-4.1.0/packages/guiobj/c/src/keyserver.h ---- jmax-4.1.0-orig/packages/guiobj/c/src/keyserver.h 2003-07-22 10:10:51.000000000 -0600 -+++ jmax-4.1.0/packages/guiobj/c/src/keyserver.h 2007-03-04 15:51:55.000000000 -0600 -@@ -47,7 +47,7 @@ - n_codes - }; - --extern fts_symbol_t sym_f1; -+/*extern fts_symbol_t sym_f1; - extern fts_symbol_t sym_F1; - extern fts_symbol_t sym_f2; - extern fts_symbol_t sym_F2; -@@ -77,7 +77,7 @@ - extern fts_symbol_t sym_shift; - extern fts_symbol_t sym_alt; - extern fts_symbol_t sym_ctrl; --extern fts_symbol_t sym_space; -+extern fts_symbol_t sym_space;*/ - - typedef struct _listener_ - { diff --git a/media-sound/jmax/files/jmax-4.1.0-otherArch.patch b/media-sound/jmax/files/jmax-4.1.0-otherArch.patch deleted file mode 100644 index 106dc2c1153f..000000000000 --- a/media-sound/jmax/files/jmax-4.1.0-otherArch.patch +++ /dev/null @@ -1,19 +0,0 @@ -diff -Naur jmax-4.1.0.orig/configure.in jmax-4.1.0/configure.in ---- jmax-4.1.0.orig/configure.in 2004-03-04 08:25:14.000000000 -0800 -+++ jmax-4.1.0/configure.in 2004-07-08 12:57:16.460227401 -0700 -@@ -202,7 +202,7 @@ - case "$host" in - - dnl GNU/Linux on an Intel or compatible --i*86-*-linux*|powerpc-*-linux-gnu) -+*-linux*) - PLATFORM=linux - CFLAGS="$CFLAGS -Wall -Wno-unused" - if test "$with_debug" != "yes" -@@ -738,6 +738,4 @@ - echo - echo "jMax will be compiled without standard sound support (ALSA or Jack)." - echo Note that you can try to use the DEPRECATED oss packages at your own risk. --echo Are you really sure you want to continue ? --read - fi diff --git a/media-sound/jmax/files/jmax-4.1.0-usercflags.patch b/media-sound/jmax/files/jmax-4.1.0-usercflags.patch deleted file mode 100644 index 3a965f7fdb15..000000000000 --- a/media-sound/jmax/files/jmax-4.1.0-usercflags.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff -Naur jmax-4.1.0-orig/configure.in jmax-4.1.0/configure.in ---- jmax-4.1.0-orig/configure.in 2006-12-03 21:09:56.000000000 -0600 -+++ jmax-4.1.0/configure.in 2006-12-03 21:11:11.000000000 -0600 -@@ -207,7 +207,7 @@ - CFLAGS="$CFLAGS -Wall -Wno-unused" - if test "$with_debug" != "yes" - then -- CFLAGS="$CFLAGS -O3 -funroll-loops -fmove-all-movables -fstrict-aliasing" -+ CFLAGS="$CFLAGS" - fi - if test "$check_memory" = "yes" - then |