diff options
author | Trevor Johnson <trevor@FreeBSD.org> | 2000-12-06 22:53:38 +0000 |
---|---|---|
committer | Trevor Johnson <trevor@FreeBSD.org> | 2000-12-06 22:53:38 +0000 |
commit | b76e7512c901221c9e1b060d1321a62bb30ae73c (patch) | |
tree | d59dbe8b3db0ae13a651c9f2a53f91e364fae6a4 /audio/spiralloops | |
parent | df2836fc3c7470bcc41ae69034223e70964901a7 (diff) | |
download | ports-b76e7512c901221c9e1b060d1321a62bb30ae73c.tar.gz ports-b76e7512c901221c9e1b060d1321a62bb30ae73c.zip |
Notes
Diffstat (limited to 'audio/spiralloops')
-rw-r--r-- | audio/spiralloops/Makefile | 5 | ||||
-rw-r--r-- | audio/spiralloops/distinfo | 2 | ||||
-rw-r--r-- | audio/spiralloops/files/patch-SpiralSoundMidi_C | 13 | ||||
-rw-r--r-- | audio/spiralloops/pkg-descr | 6 |
4 files changed, 19 insertions, 7 deletions
diff --git a/audio/spiralloops/Makefile b/audio/spiralloops/Makefile index 23c7fdf16a08..5e3aced27bb0 100644 --- a/audio/spiralloops/Makefile +++ b/audio/spiralloops/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/spiralloops/distinfo b/audio/spiralloops/distinfo index e95b29dffb32..fb93b7e70988 100644 --- a/audio/spiralloops/distinfo +++ b/audio/spiralloops/distinfo @@ -1 +1 @@ -MD5 (SpiralSynth-0.1.6.tar.gz) = f0f09a54a3291684d69f3710544c54f4 +MD5 (SpiralSynth-0.1.7.tar.gz) = fe41794cd35bd6f05d163a3c5c61bc4b diff --git a/audio/spiralloops/files/patch-SpiralSoundMidi_C b/audio/spiralloops/files/patch-SpiralSoundMidi_C new file mode 100644 index 000000000000..4c29f82a0c23 --- /dev/null +++ b/audio/spiralloops/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/spiralloops/pkg-descr b/audio/spiralloops/pkg-descr index 74b286c76cdb..5cb066a4e270 100644 --- a/audio/spiralloops/pkg-descr +++ b/audio/spiralloops/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 |