summaryrefslogtreecommitdiff
path: root/audio
diff options
context:
space:
mode:
authorTrevor Johnson <trevor@FreeBSD.org>2001-06-04 13:28:35 +0000
committerTrevor Johnson <trevor@FreeBSD.org>2001-06-04 13:28:35 +0000
commit304b4791ba82c1099c451ed114505d7caea7fbfe (patch)
tree4bd232065640d9fe76f47c7b36e4c53172628f43 /audio
parentmdoc(7) police: minor markup cleanup. (diff)
Update to 4.13. Use only regexes to patch getstring.c.
Notes
Notes: svn path=/head/; revision=43488
Diffstat (limited to 'audio')
-rw-r--r--audio/csound/Makefile5
-rw-r--r--audio/csound/distinfo2
-rw-r--r--audio/csound/files/patch-getstring_c49
3 files changed, 4 insertions, 52 deletions
diff --git a/audio/csound/Makefile b/audio/csound/Makefile
index 2b07c2cd1c01..50d9a27fe069 100644
--- a/audio/csound/Makefile
+++ b/audio/csound/Makefile
@@ -6,7 +6,7 @@
#
PORTNAME= csound
-PORTVERSION= 4.12
+PORTVERSION= 4.13
CATEGORIES= audio
MASTER_SITES= ftp://ftp.maths.bath.ac.uk/pub/dream/newest/
DISTFILES= Csound${PORTVERSION}.tar.gz
@@ -38,7 +38,8 @@ post-build:
${ECHO} "@dirrm share/csound" >> ${PLIST}
post-patch:
- ${PERL} -pi -e "s:PREFIX:${PREFIX}:g" ${WRKSRC}/getstring.c
+ ${PERL} -pi -e "s:/usr/local/lib:${PREFIX}/share/csound:g" ${WRKSRC}/getstring.c
+ ${PERL} -pi -e "s:csound.txt:csound.dat:g" ${WRKSRC}/getstring.c
do-install:
${MKDIR} ${PREFIX}/share/csound
diff --git a/audio/csound/distinfo b/audio/csound/distinfo
index 3e2918d8bacd..f44530cbf25d 100644
--- a/audio/csound/distinfo
+++ b/audio/csound/distinfo
@@ -1 +1 @@
-MD5 (csound/Csound4.12.tar.gz) = 7288d8ea9ad20bb82c4488f94c1aa1f8
+MD5 (csound/Csound4.13.tar.gz) = 7edbfd63436a3d94b2e6312bb5b0e3b8
diff --git a/audio/csound/files/patch-getstring_c b/audio/csound/files/patch-getstring_c
deleted file mode 100644
index ae1e6e6ec8b7..000000000000
--- a/audio/csound/files/patch-getstring_c
+++ /dev/null
@@ -1,49 +0,0 @@
---- getstring.c.orig Sat May 13 15:52:27 2000
-+++ getstring.c Wed Oct 11 18:21:07 2000
-@@ -75,37 +75,37 @@
- #endif
- if (db==NULL)
- {
-- strcpy(name, "csound.txt");
-- db = fopen("csound.txt", "rb");
-+ strcpy(name, "csound.dat");
-+ db = fopen("csound.dat", "rb");
- }
- if (db == NULL && argv[0] != NULL) {
- strcpy(name, argv[0]);
- if ((path = strrchr(name, '/')) != NULL
- || (path = strrchr(name, '\\')) != NULL) {
-- strcpy(path+1, "csound.txt");
-+ strcpy(path+1, "csound.dat");
- db = fopen(name, "rb");
- }
- }
- if (db == NULL && (path=getenv("SSDIR")) != NULL) {
-- sprintf(name, "%s/csound.txt", path);
-+ sprintf(name, "%s/csound.dat", path);
- db = fopen(name, "rb");
- }
- if (db == NULL && (path=getenv("SFDIR")) != NULL) {
-- sprintf(name, "%s/csound.txt", path);
-+ sprintf(name, "%s/csound.dat", path);
- db = fopen(name, "rb");
- }
- if (db == NULL && (path=getenv("SADIR")) != NULL) {
-- sprintf(name, "%s/csound.txt", path);
-+ sprintf(name, "%s/csound.dat", path);
- db = fopen(name, "rb");
- }
- if (db == NULL) {
-- strcpy(name, "/usr/local/lib/csound.txt");
-- db = fopen("/usr/local/lib/csound.txt", "rb");
-+ strcpy(name, "PREFIX/share/csound/csound.dat");
-+ db = fopen("PREFIX/share/csound/csound.dat", "rb");
- }
- if (db == NULL) {
- fprintf(stderr, "failed to find Strings DataBase file.\n"
- "Use the CSSTRNGS environment variable or you must put the \n"
-- "file \"csound.txt\" in your local, SFDIR, SADIR, SSDIR or \n"
-+ "file \"csound.dat\" in your local, SFDIR, SADIR, SSDIR or \n"
- "system directories for csound to work\n");
- exit(1);
- }