diff options
author | ijliao <ijliao@FreeBSD.org> | 2002-05-30 02:30:14 +0800 |
---|---|---|
committer | ijliao <ijliao@FreeBSD.org> | 2002-05-30 02:30:14 +0800 |
commit | 2434d609821361d3a791630de0b7f64de842efa2 (patch) | |
tree | 61f0dc738377643144960ccb755e941f074fc948 /audio/audacity/files | |
parent | 34fe7180a09c02eb2c477274676b3ac0c82c26e9 (diff) | |
download | freebsd-ports-gnome-2434d609821361d3a791630de0b7f64de842efa2.tar.gz freebsd-ports-gnome-2434d609821361d3a791630de0b7f64de842efa2.tar.zst freebsd-ports-gnome-2434d609821361d3a791630de0b7f64de842efa2.zip |
add audacity 0.98
Audacity is a GUI editor for digital audio waveforms
PR: 38699
Submitted by: Tilman Linneweh <tilman@arved.de>
Diffstat (limited to 'audio/audacity/files')
-rw-r--r-- | audio/audacity/files/patch-audioarts.c | 11 | ||||
-rw-r--r-- | audio/audacity/files/patch::Help.cpp | 11 | ||||
-rw-r--r-- | audio/audacity/files/patch::Help.h | 13 |
3 files changed, 35 insertions, 0 deletions
diff --git a/audio/audacity/files/patch-audioarts.c b/audio/audacity/files/patch-audioarts.c new file mode 100644 index 000000000000..4d59b2251ae8 --- /dev/null +++ b/audio/audacity/files/patch-audioarts.c @@ -0,0 +1,11 @@ +--- snd/audioarts.c.orig Wed May 29 19:10:43 2002 ++++ snd/audioarts.c Wed May 29 19:10:51 2002 +@@ -11,7 +11,7 @@ + + #include <sys/time.h> + +-#include <kde/artsc/artsc.h> ++#include <artsc/artsc.h> + + /* snd includes */ + diff --git a/audio/audacity/files/patch::Help.cpp b/audio/audacity/files/patch::Help.cpp new file mode 100644 index 000000000000..2c704e40a1e0 --- /dev/null +++ b/audio/audacity/files/patch::Help.cpp @@ -0,0 +1,11 @@ +--- Help.cpp.orig Mon Sep 17 16:50:58 2001 ++++ Help.cpp Mon Sep 17 16:53:11 2001 +@@ -61,7 +61,7 @@ + void InitHelp(wxWindow * parent) + { + if (!gHelp) { +- wxString defaultLoc = wxGetCwd() + wxFILE_SEP_PATH + "audacity-help.htb"; ++ wxString defaultLoc = AUDACITY_HELP_DIR + wxFILE_SEP_PATH + "audacity-help.htb"; + + wxString helpFilePath = + gPrefs->Read("/Help/HelpFilePath", defaultLoc); diff --git a/audio/audacity/files/patch::Help.h b/audio/audacity/files/patch::Help.h new file mode 100644 index 000000000000..85309d22eff2 --- /dev/null +++ b/audio/audacity/files/patch::Help.h @@ -0,0 +1,13 @@ +--- Help.h.orig Mon Sep 17 16:52:09 2001 ++++ Help.h Mon Sep 17 16:52:53 2001 +@@ -11,6 +11,10 @@ + #ifndef __AUDACITY_HELP__ + #define __AUDACITY_HELP__ + ++#ifndef AUDACITY_HELP_DIR ++#define AUDACITY_HELP_DIR /usr/X11R6/share/audacity ++#endif ++ + void InitHelp(wxWindow * parent); + void ShowHelp(wxWindow * parent); + void ShowHelp(wxWindow * parent, wxString topic); |