diff options
author | sbd <sbd@pkgsrc.org> | 2012-02-07 21:17:49 +0000 |
---|---|---|
committer | sbd <sbd@pkgsrc.org> | 2012-02-07 21:17:49 +0000 |
commit | 36fab5cb6dcaf30034e29b4048aaaea31c77335c (patch) | |
tree | 31cc6ea357ae2cad978946f4d6e71b978d5e2008 /audio/csound5 | |
parent | d0636c6ac5295c0be7129a3df7bda0948de70a81 (diff) | |
download | pkgsrc-36fab5cb6dcaf30034e29b4048aaaea31c77335c.tar.gz |
Fix the patch that adds NetBSD and Dragonfly by changing 'getPlatform' to
'getPlatform()'.
Now libcontrol.so should be built and install on NetBSD and Dragonfly.
(PR#45940 shows that its missing)
Diffstat (limited to 'audio/csound5')
-rw-r--r-- | audio/csound5/distinfo | 4 | ||||
-rw-r--r-- | audio/csound5/patches/patch-ac | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/audio/csound5/distinfo b/audio/csound5/distinfo index 6c7b6988c77..ec43de5c9ae 100644 --- a/audio/csound5/distinfo +++ b/audio/csound5/distinfo @@ -1,9 +1,9 @@ -$NetBSD: distinfo,v 1.7 2011/09/07 12:42:02 obache Exp $ +$NetBSD: distinfo,v 1.8 2012/02/07 21:17:49 sbd Exp $ SHA1 (Csound5.01_src.tar.gz) = b387da9b6c24961397e89ddcedd1229cdfebffe7 RMD160 (Csound5.01_src.tar.gz) = 24652f8f650464d886f6d537ae991654f475ad4a Size (Csound5.01_src.tar.gz) = 2031426 bytes -SHA1 (patch-ac) = a52a86dd8fed44ac3d72ef09e4de4224b2146c31 +SHA1 (patch-ac) = 686530ade67f637ccbd0286fa689af920773cd13 SHA1 (patch-ad) = 343b5767584cf4ddfbc7664e3234577fe22ff03a SHA1 (patch-ae) = 705d56ce7a03cd10763542a9ec71b393474c0595 SHA1 (patch-af) = 4444b8efe47a401e01718c21197c2b6e19ec548c diff --git a/audio/csound5/patches/patch-ac b/audio/csound5/patches/patch-ac index 7304e606afd..d33df92daaa 100644 --- a/audio/csound5/patches/patch-ac +++ b/audio/csound5/patches/patch-ac @@ -1,4 +1,4 @@ -$NetBSD: patch-ac,v 1.4 2009/12/30 13:19:58 joerg Exp $ +$NetBSD: patch-ac,v 1.5 2012/02/07 21:17:49 sbd Exp $ --- SConstruct.orig 2006-03-15 15:22:43.000000000 +0000 +++ SConstruct @@ -98,7 +98,7 @@ $NetBSD: patch-ac,v 1.4 2009/12/30 13:19:58 joerg Exp $ MacOSX_InstallPlugin('opcodes.dir') -if getPlatform() == 'linux' or getPlatform() == 'darwin': -+if getPlatform() == 'linux' or getPlatform() == 'darwin' or getPlatform == 'netbsd' or getPlatform == 'dragonfly': ++if getPlatform() == 'linux' or getPlatform() == 'darwin' or getPlatform() == 'netbsd' or getPlatform() == 'dragonfly': makePlugin(pluginEnvironment, 'control', ['Opcodes/control.c']) makePlugin(pluginEnvironment, 'ftest', ['Opcodes/ftest.c']) makePlugin(pluginEnvironment, 'mixer', ['Opcodes/mixer.cpp']) |