summaryrefslogtreecommitdiff
path: root/audio
diff options
context:
space:
mode:
authorrillig <rillig>2006-10-17 21:32:37 +0000
committerrillig <rillig>2006-10-17 21:32:37 +0000
commit9d6875364b9ff27cd05f00e12fae5b68fa72cff2 (patch)
treed851c30d34a2a74acf892581580032b41df4eafc /audio
parentb0bdb411ee8207df217cfc5c8f9927b5fedf608c (diff)
downloadpkgsrc-9d6875364b9ff27cd05f00e12fae5b68fa72cff2.tar.gz
Fixed "test ==".
Diffstat (limited to 'audio')
-rw-r--r--audio/csound5/distinfo3
-rw-r--r--audio/csound5/patches/patch-ap14
2 files changed, 16 insertions, 1 deletions
diff --git a/audio/csound5/distinfo b/audio/csound5/distinfo
index df9c1d43353..207bd5a6691 100644
--- a/audio/csound5/distinfo
+++ b/audio/csound5/distinfo
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.2 2006/05/29 19:44:24 joerg Exp $
+$NetBSD: distinfo,v 1.3 2006/10/17 21:32:37 rillig Exp $
SHA1 (Csound5.01_src.tar.gz) = b387da9b6c24961397e89ddcedd1229cdfebffe7
RMD160 (Csound5.01_src.tar.gz) = 24652f8f650464d886f6d537ae991654f475ad4a
@@ -16,3 +16,4 @@ SHA1 (patch-al) = 7da1e82a280b6803e2f0f75b8fb1eafbc3206636
SHA1 (patch-am) = 9770973e54770b9eebcf66c17f90f459e71a71c6
SHA1 (patch-an) = 7dfbd38a4eca8c7767a53c2b93bb4967344c0f0e
SHA1 (patch-ao) = 64ee0a2a70dd317c992088212bc3f241f6296113
+SHA1 (patch-ap) = 9229c0166b37fb6991da5557c475d754715df711
diff --git a/audio/csound5/patches/patch-ap b/audio/csound5/patches/patch-ap
new file mode 100644
index 00000000000..a5c6ab7e8f3
--- /dev/null
+++ b/audio/csound5/patches/patch-ap
@@ -0,0 +1,14 @@
+$NetBSD: patch-ap,v 1.1 2006/10/17 21:32:37 rillig Exp $
+
+--- cleanup.sh.orig 2005-12-20 20:50:46.000000000 +0100
++++ cleanup.sh 2006-10-17 23:28:47.000000000 +0200
+@@ -1,7 +1,7 @@
+ #!/bin/sh
+
+-if [ "$#" == "2" ] ; then
+- if [ "$1" == "remove" ] ; then
++if [ "$#" = "2" ] ; then
++ if [ "$1" = "remove" ] ; then
+ if ( test -e "$2" ) ; then
+ echo -e "Removing '$2'"
+ rm -Rf "$2" ;