aboutsummaryrefslogtreecommitdiff
path: root/audio/spiralsynth
diff options
context:
space:
mode:
authorTrevor Johnson <trevor@FreeBSD.org>2000-12-06 22:53:38 +0000
committerTrevor Johnson <trevor@FreeBSD.org>2000-12-06 22:53:38 +0000
commitb76e7512c901221c9e1b060d1321a62bb30ae73c (patch)
treed59dbe8b3db0ae13a651c9f2a53f91e364fae6a4 /audio/spiralsynth
parentdf2836fc3c7470bcc41ae69034223e70964901a7 (diff)
downloadports-b76e7512c901221c9e1b060d1321a62bb30ae73c.tar.gz
ports-b76e7512c901221c9e1b060d1321a62bb30ae73c.zip
- new master site (works for me)
- new home page - update to 0.1.7 - add a patch needed for compilation - in pkg-descr, fix typo and update my address
Notes
Notes: svn path=/head/; revision=35732
Diffstat (limited to 'audio/spiralsynth')
-rw-r--r--audio/spiralsynth/Makefile5
-rw-r--r--audio/spiralsynth/distinfo2
-rw-r--r--audio/spiralsynth/files/patch-SpiralSoundMidi_C13
-rw-r--r--audio/spiralsynth/pkg-descr6
4 files changed, 19 insertions, 7 deletions
diff --git a/audio/spiralsynth/Makefile b/audio/spiralsynth/Makefile
index 23c7fdf16a08..5e3aced27bb0 100644
--- a/audio/spiralsynth/Makefile
+++ b/audio/spiralsynth/Makefile
@@ -6,10 +6,9 @@
#
PORTNAME= spiralsynth
-PORTVERSION= 0.1.6
+PORTVERSION= 0.1.7
CATEGORIES= audio
-MASTER_SITES= http://www.blueammonite.f9.co.uk/SpiralSynth/dload/ \
- http://jpj.net/~trevor/freebsd/ports/
+MASTER_SITES= http://www.pawfal.org/SpiralSynth/dload/
DISTNAME= SpiralSynth-${PORTVERSION}
MAINTAINER= trevor@FreeBSD.org
diff --git a/audio/spiralsynth/distinfo b/audio/spiralsynth/distinfo
index e95b29dffb32..fb93b7e70988 100644
--- a/audio/spiralsynth/distinfo
+++ b/audio/spiralsynth/distinfo
@@ -1 +1 @@
-MD5 (SpiralSynth-0.1.6.tar.gz) = f0f09a54a3291684d69f3710544c54f4
+MD5 (SpiralSynth-0.1.7.tar.gz) = fe41794cd35bd6f05d163a3c5c61bc4b
diff --git a/audio/spiralsynth/files/patch-SpiralSoundMidi_C b/audio/spiralsynth/files/patch-SpiralSoundMidi_C
new file mode 100644
index 000000000000..4c29f82a0c23
--- /dev/null
+++ b/audio/spiralsynth/files/patch-SpiralSoundMidi_C
@@ -0,0 +1,13 @@
+SpiralSound/Midi.C:54: `O_SYNC' undeclared (first use this function)
+
+--- SpiralSound/Midi.C.orig Sun Nov 26 07:52:41 2000
++++ SpiralSound/Midi.C Wed Dec 6 14:22:58 2000
+@@ -51,7 +51,7 @@
+ {
+ if (!SpiralInfo::WANTMIDI) return;
+
+- m_MidiFd = open(SpiralInfo::MIDIFILE.c_str(),O_RDONLY|O_SYNC);
++ m_MidiFd = open(SpiralInfo::MIDIFILE.c_str(),O_RDONLY);
+
+ pipe(m_Pipefd);
+ fcntl(m_Pipefd[0],F_SETFL,O_NONBLOCK);
diff --git a/audio/spiralsynth/pkg-descr b/audio/spiralsynth/pkg-descr
index 74b286c76cdb..5cb066a4e270 100644
--- a/audio/spiralsynth/pkg-descr
+++ b/audio/spiralsynth/pkg-descr
@@ -10,14 +10,14 @@ is to /dev/dsp or in Microsoft RIFF (.WAV) format to a file. You
can save and recall your sounds using the 100 patch save slots.
The PC keyboard can be used to play the synth, "q" & "z" are C,
-and the keys progess from them, ie "2" is C#, "w" is D etc. These
+and the keys progress from them: "2" is C#, "w" is D, etc. These
are just the defaults, and can be changed from the .Spiralrc file.
The function keys change the octave.
Sample output and a detailed list of features can be found on the
home page.
-WWW: http://www.blueammonite.f9.co.uk/SpiralSynth/
+WWW: http://www.pawfal.org/SpiralSynth/
Trevor Johnson
-trevor@jpj.net
+trevor@FreeBSD.org