mirror of
https://git.freebsd.org/ports.git
synced 2025-06-28 16:10:33 -04:00
Chase portaudio change Add patches from debian for games/cultivation Add patches from upsteam for audio/rezound Mark py-fastaudio as broken Approved by: maintainer
15 lines
491 B
Python
15 lines
491 B
Python
--- ./setup.py.orig 2012-11-07 00:17:06.624869638 +0100
|
|
+++ ./setup.py 2012-11-07 00:37:17.129040078 +0100
|
|
@@ -74,6 +74,12 @@ else:
|
|
external_libraries = ['portaudio']
|
|
extra_link_args = []
|
|
|
|
+if sys.platform.startswith('dragonfly') or \
|
|
+ sys.platform.startswith('freebsd'):
|
|
+ include_dirs = ['%%LOCALBASE%%/include/']
|
|
+ external_libraries = []
|
|
+ extra_link_args = ['%%LOCALBASE%%/lib/libportaudio.so']
|
|
+
|
|
if sys.platform == 'darwin':
|
|
defines += [('MACOSX', '1')]
|
|
|