aboutsummaryrefslogtreecommitdiffstats
path: root/audio/py-fastaudio/files
diff options
context:
space:
mode:
authoritetcu <itetcu@FreeBSD.org>2009-06-07 00:01:46 +0800
committeritetcu <itetcu@FreeBSD.org>2009-06-07 00:01:46 +0800
commit20af9131170186b86c774965dd36b125dbbf4694 (patch)
tree87f3f996923b454e232b0858a21e099115ad7be3 /audio/py-fastaudio/files
parent8a2a6abc15c59c4e465213610bac931eb5b9b202 (diff)
downloadfreebsd-ports-gnome-20af9131170186b86c774965dd36b125dbbf4694.tar.gz
freebsd-ports-gnome-20af9131170186b86c774965dd36b125dbbf4694.tar.zst
freebsd-ports-gnome-20af9131170186b86c774965dd36b125dbbf4694.zip
Fix build with custom LOCALBASE.
Submitted by: maintainer Reported by: QATty
Diffstat (limited to 'audio/py-fastaudio/files')
-rw-r--r--audio/py-fastaudio/files/patch-fastaudio.pyx6
-rw-r--r--audio/py-fastaudio/files/patch-mysndfile.h6
2 files changed, 6 insertions, 6 deletions
diff --git a/audio/py-fastaudio/files/patch-fastaudio.pyx b/audio/py-fastaudio/files/patch-fastaudio.pyx
index 61a27468816a..8f097b13b3f0 100644
--- a/audio/py-fastaudio/files/patch-fastaudio.pyx
+++ b/audio/py-fastaudio/files/patch-fastaudio.pyx
@@ -1,11 +1,11 @@
---- fastaudio.pyx.orig Sat Mar 3 10:53:45 2007
-+++ fastaudio.pyx Sat Mar 3 11:03:03 2007
+--- fastaudio.pyx.orig 2004-06-15 20:37:39.000000000 +0900
++++ fastaudio.pyx 2009-06-06 18:54:52.000000000 +0900
@@ -92,7 +92,7 @@
#@+node:portaudio.h
# portaudio-specifics
-cdef extern from "../pa_common/portaudio.h":
-+cdef extern from "/usr/local/include/portaudio.h":
++cdef extern from "%%LOCALBASE%%/include/portaudio.h":
ctypedef int PaError
cdef enum PA_ERRORS:
diff --git a/audio/py-fastaudio/files/patch-mysndfile.h b/audio/py-fastaudio/files/patch-mysndfile.h
index c29917b9e512..2fbd3032941b 100644
--- a/audio/py-fastaudio/files/patch-mysndfile.h
+++ b/audio/py-fastaudio/files/patch-mysndfile.h
@@ -1,9 +1,9 @@
---- mysndfile.h.orig Tue Jun 15 13:37:39 2004
-+++ mysndfile.h Sat Mar 3 11:53:57 2007
+--- mysndfile.h.orig 2009-06-06 18:51:14.000000000 +0900
++++ mysndfile.h 2009-06-06 18:51:38.000000000 +0900
@@ -1,5 +1,5 @@
#ifdef WIN32
#include "sndfile-win32.h"
#else
-#include "sndfile.h"
-+#include "/usr/local/include/sndfile.h"
++#include "%%LOCALBASE%%/include/sndfile.h"
#endif