summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwiz <wiz>2007-02-23 00:34:53 +0000
committerwiz <wiz>2007-02-23 00:34:53 +0000
commit8031df2abf4e95a2dc9ab415edf35939bca586fe (patch)
treedf7f19423bfaf33cff6e4067c2f6465b7d4f17ef
parent518d9be9902ba54cd9acb66e4f132b3ed6d6e24f (diff)
downloadpkgsrc-8031df2abf4e95a2dc9ab415edf35939bca586fe.tar.gz
Update to 8.8:
Snd 8.8: many improvements from Mike Jack support in OSX and Cygwin from Kjetil poussin-sum and jackson-sum in dsp.scm (more band-limited pulse-trains), and changed amplitude scaling in fejer-sum and legendre-sum so that they always peak at 1.0. Also added a note in clm.html showing a way to get a time-varying pulse-train. changed default-output-data-format to mus-bfloat removed initFile and the (undocumented) htmlDir X resources make install now copies the *.scm|fs|rb files to {prefix}/share/snd added read/write support for Apple's new CAFF (64-bit) audio files checked: glib 2.12.7|8|9, gtk 2.10.7|8|9, Mesa 6.5.1|2, pango-1.15.3|4|5, sbcl 1.0.1|2, fth 1.0.7 Thanks!: Mike Scholz, Kjetil Matheussen, Meino Christian Cramer, Michael Edwards Snd 8.7 a huge number of *.fs and *.rb improvements from Mike, including the new file bird.fsm. added frame.scm with: frame-reverse! frame-copy (from mixer.scm) sound->frame frame->sound region->frame make-frame-reader frame-reader? frame-reader-at-end frame-reader-position frame-reader-home free-frame-reader copy-frame-reader frame-reader-chans next-frame previous-frame read-frame make-region-frame-reader make-selection-frame-reader make-track-frame-reader read-track-frame make-sync-frame-reader frame->sound-data sound-data->frame sound->sound-data sound-data->sound region->sound-data track->sound-data selection->sound-data file->vct vct->file frame->vct vct->frame file->sound-data sound-data->file insert-sound-data insert-frame insert-vct mix-sound-data mix-frame scan-sound map-sound (this replaces 8.6's scan-sound) simultaneous-zero-crossing added to extensions.scm: pad-sound contrast-sound dither-sound scale-sound offset-sound normalize-sound added to examp.scm: compand-sound sync-all sound-data-multiply! sound-data-add! sound-data-offset! sound-data* sound-data+ sound-data-copy sound-data-reverse! sound-data-peak region-home add-source-file-extension clip-hook: called whenever we're about to clip while writing a sound file unclip-channel (dsp.scm) based on LPC (reconstruction via forward and backward prediction) lpc-coeffs and lpc-predict in dsp.scm io.c: mus_clip_set_handler finally decided to build in the definition of pi in Guile and Gauche. In the context of Snd, it is absurd to have to make sure "pi" is defined all the time. It's already defined in Forth, and in Ruby it's PI in the math module. clm.c: removed (unused) mus_make_frame|mixer_with_data removed the default font settings in Snd.gtkrc -- presumably Snd will now pick up your theme's default font. added a -nogtkrc startup switch. This turns off the search for a gtkrc file, or its built-in equivalent -- you get whatever your current theme wants. removed open-sound-file, vct->sound-file, and close-sound-file. These were optimizations that make little sense anymore -- use mus-sound-open-output and friends instead. See snd8.scm for backwards compatible replacements. mix tags use the mix-color now Checked: sbcl 1.0, lesstif 0.95 (it still doesn't work with Snd -- segfaults, comatose listener, etc), cmucl 19d (dies trying to compile cmn's transpose.lisp, so that file is commented out for this version of cmucl), pango 1.15.1|2, fontconfig 2.4.2, cairo 1.2.6, glib 2.12.5|6, stklos 0.82, gamin 1.8.0 (this version fixes at least one of the problems that would sometimes cause Snd to hang) Thanks: Fernando Lopez-Lezcano, Mike Scholz, Kjetil Matheussen, Forest Bond Snd 8.6 many improvements from Mike. mix/track mechanism sped up by about a factor of 100, so its possible to have thousands of each (but the screeen gets very cluttered). added mix-name, track-name, track-tag-y, mix-name->id, and track-name->id to help navigate in these situations. out-any, in-any, locsig, move-sound, and friends can now handle vct and sound-data objects as the "stream" argument. In with-sound, this is the *output* variable or :output argument which then applies to all notes. So, with-sound can be used in a zillion new ways: (vct-scale! (with-temp-sound (:output (make-vct 2210)) (fm-violin 0 .1 440 .1)) 2.0) This extension caused changes in sound-data object handling: sound-data-scale! (for with-sound writing to a sound-data object and with the :scaled-to or :scaled-by arguments) sound-data-fill! (also for with-sound if not :continue-old-file) fade.scm instruments changed to use outa rather than vct-map! moved samples->sound-data to snd8.scm. Mike provided sndins support for this change. rf64 headers and mutable riff for very large output files. mus-float-equal-fudge-factor (mainly for reasonable generator equal? checks) ->frequency, ->samples (ws.scm) for things like (violin 0 .1 'e4). channel-clipped? in examp.scm filter-fft in examp.scm. checked: Fedora Core 6, sbcl 0.9.18, fth 1.0.0, Gauche 0.8.8, autoconf 2.61 Thanks: Jacek M. Holeczek, Rick Taube, Mike Scholz, Kjetil Matheussen, Julius Smith, Joseph Anderson, SamButcha Snd 8.5 many improvements thanks to Kjetil and Mike. gl2ps support, gl-graph->ps function, --with-gl2ps switch, gl2ps.[ch] added gtk-effects-utils.scm, gtk support for *-menu.scm. finally implemented the log-frequency display in non-GL spectrograms. save-marks changed to keep matching sync values add-mark now takes new optional trailing args: name and sync removed the gtk_print stuff from xg.c since it's all useless without support for the cairo graphics functions and the pango functions that access them. sounds->segment-data (examp.scm) -- returns segment start/dur/maxamp data for collections of sounds. with-file-monitor -- can be set to #f to turn off the FAM process stuff. add-watcher and delete-watcher -- this is a simpler (and less accident-prone) hook to catch any change to the sound list, the current selection, or the mark list; it is intended to replace the multi-hook kludges currently used to set dialog button sensitivity, for example. Since each watcher is identified by a unique integer, local (unnamed) functions can easily be deleted and so on. removed selection-changed-hook (use simpler watcher mechanism instead). in cmn, thickness message now affects bars locally. Added *double-barline-thickness*. checked: gtk-2.10.4|5|6, sbcl 0.9.17, clisp 2.40|1. Thanks: Michael Edwards, Mike Scholz, Kjetil Matheussen, Carlos Pita, Carsten Heinrigs, Dragan Novetski, Jacek M. Holeczek, David O'Toole Snd 8.4 many ruby, forth, and sndins-related improvements from Mike including new file analog-filter.rb. "scheme" instead of "guile" in various names in inf-snd.el (for gauche) improvements in strad.ins and bandedwg.ins from Juan Reyes snd_frg.scm thanks to Olivier Doare granulated-sound-interp (examp.scm) display-bark-fft (dsp.scm) -- spectral display using bark, erb, and mel scales def-optkey-instrument (ws.scm) new optional argument to graph -- lisp graph axis choice new axis choice --show-bare-x-axis snd-color snd-font after-lisp-graph-hook removed vu-font and vu-font-size, added vu-in-dB removed spectrogramColor X resource checked: ruby 1.8.5, sbcl 0.9.15|16, gtk 2.10.2|3, fth 0.10.22 Thanks: Mike Scholz, Anders Vinjar, Kjetil Matheussen, Bill Sack, Pam & Harold Norris, Juan Reyes, Daniel Stahl, Michael Edwards, Carlos Pita
-rw-r--r--audio/snd/Makefile4
-rw-r--r--audio/snd/PLIST169
-rw-r--r--audio/snd/distinfo8
3 files changed, 174 insertions, 7 deletions
diff --git a/audio/snd/Makefile b/audio/snd/Makefile
index 874d023db1b..882871f1181 100644
--- a/audio/snd/Makefile
+++ b/audio/snd/Makefile
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.49 2006/12/20 00:35:10 joerg Exp $
+# $NetBSD: Makefile,v 1.50 2007/02/23 00:34:53 wiz Exp $
#
-DISTNAME= snd-8.3
+DISTNAME= snd-8.8
CATEGORIES= audio
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=snd/}
diff --git a/audio/snd/PLIST b/audio/snd/PLIST
index e6a6ec15f7b..c4b783aea4b 100644
--- a/audio/snd/PLIST
+++ b/audio/snd/PLIST
@@ -1,4 +1,171 @@
-@comment $NetBSD: PLIST,v 1.3 2006/04/17 07:07:12 jlam Exp $
+@comment $NetBSD: PLIST,v 1.4 2007/02/23 00:34:53 wiz Exp $
bin/snd
man/man1/snd.1
share/locale/de/LC_MESSAGES/snd.mo
+share/snd/analog-filter.rb
+share/snd/analog-filter.scm
+share/snd/autosave.scm
+share/snd/bess.rb
+share/snd/bess.scm
+share/snd/bess1.rb
+share/snd/bess1.scm
+share/snd/bird.fsm
+share/snd/bird.rb
+share/snd/bird.scm
+share/snd/clm-ins.fs
+share/snd/clm-ins.rb
+share/snd/clm-ins.scm
+share/snd/clm.fs
+share/snd/clm23.scm
+share/snd/debug.scm
+share/snd/dlocsig.rb
+share/snd/dlocsig.scm
+share/snd/draw.fs
+share/snd/draw.rb
+share/snd/draw.scm
+share/snd/dsp.fs
+share/snd/dsp.rb
+share/snd/dsp.scm
+share/snd/edit-menu.scm
+share/snd/edit123.scm
+share/snd/effects-utils.scm
+share/snd/effects.fs
+share/snd/effects.rb
+share/snd/env.fs
+share/snd/env.rb
+share/snd/env.scm
+share/snd/enved.fs
+share/snd/enved.scm
+share/snd/eval-c.scm
+share/snd/event.scm
+share/snd/examp.fs
+share/snd/examp.rb
+share/snd/examp.scm
+share/snd/extensions.fs
+share/snd/extensions.rb
+share/snd/extensions.scm
+share/snd/fade.scm
+share/snd/fft-menu.scm
+share/snd/fix-optargs.scm
+share/snd/fmv.scm
+share/snd/frame.scm
+share/snd/freeverb.rb
+share/snd/freeverb.scm
+share/snd/gauche-format.scm
+share/snd/gauche-optargs.scm
+share/snd/grani.scm
+share/snd/green.scm
+share/snd/gtk-effects-utils.scm
+share/snd/gtk-effects.scm
+share/snd/gtk-popup.scm
+share/snd/gui.scm
+share/snd/hooks.fs
+share/snd/hooks.rb
+share/snd/hooks.scm
+share/snd/index.rb
+share/snd/index.scm
+share/snd/jcrev.scm
+share/snd/kmenu.scm
+share/snd/ladspa-help.scm
+share/snd/ladspa.scm
+share/snd/maraca.rb
+share/snd/maraca.scm
+share/snd/marks-menu.scm
+share/snd/marks.fs
+share/snd/marks.rb
+share/snd/marks.scm
+share/snd/maxf.rb
+share/snd/maxf.scm
+share/snd/misc.scm
+share/snd/mix-menu.scm
+share/snd/mix.fs
+share/snd/mix.rb
+share/snd/mix.scm
+share/snd/mixer.scm
+share/snd/moog.scm
+share/snd/musglyphs.rb
+share/snd/musglyphs.scm
+share/snd/nb.rb
+share/snd/nb.scm
+share/snd/new-backgrounds.scm
+share/snd/new-buttons.scm
+share/snd/new-effects.scm
+share/snd/noise.rb
+share/snd/noise.scm
+share/snd/oo.scm
+share/snd/oscope.scm
+share/snd/panic.scm
+share/snd/pd-add.scm
+share/snd/pd-any.scm
+share/snd/pd-fm.scm
+share/snd/pd-global.scm
+share/snd/pd-inout.scm
+share/snd/pd-local.scm
+share/snd/pd-mozilla.scm
+share/snd/pd-send_receive.scm
+share/snd/pd-stochastic.scm
+share/snd/peak-env.fs
+share/snd/peak-env.scm
+share/snd/piano.rb
+share/snd/piano.scm
+share/snd/play.rb
+share/snd/play.scm
+share/snd/poly.rb
+share/snd/poly.scm
+share/snd/popup.fs
+share/snd/popup.rb
+share/snd/popup.scm
+share/snd/prc95.rb
+share/snd/prc95.scm
+share/snd/pvoc.rb
+share/snd/pvoc.scm
+share/snd/rgb.fs
+share/snd/rgb.rb
+share/snd/rgb.scm
+share/snd/rt-compiler.scm
+share/snd/rt-engine.scm
+share/snd/rt-examples.scm
+share/snd/rt-player.scm
+share/snd/rtio.rb
+share/snd/rtio.scm
+share/snd/rubber.fs
+share/snd/rubber.rb
+share/snd/rubber.scm
+share/snd/singer.rb
+share/snd/singer.scm
+share/snd/snd-forth-init.fs
+share/snd/snd-gl.scm
+share/snd/snd-gtk.scm
+share/snd/snd-hobbit.scm
+share/snd/snd-motif.scm
+share/snd/snd-test.fs
+share/snd/snd-test.rb
+share/snd/snd-test.scm
+share/snd/snd-xm.fs
+share/snd/snd-xm.rb
+share/snd/snd4.scm
+share/snd/snd5.scm
+share/snd/snd6.scm
+share/snd/snd7.scm
+share/snd/snd8.scm
+share/snd/snd_conffile.scm
+share/snd/sndwarp.scm
+share/snd/special-menu.scm
+share/snd/spectr.fs
+share/snd/spectr.rb
+share/snd/spectr.scm
+share/snd/stochastic.scm
+share/snd/strad.rb
+share/snd/strad.scm
+share/snd/toolbar.scm
+share/snd/track-colors.scm
+share/snd/v.rb
+share/snd/v.scm
+share/snd/ws.rb
+share/snd/ws.scm
+share/snd/xm-enved.fs
+share/snd/xm-enved.rb
+share/snd/xm-enved.scm
+share/snd/zip.rb
+share/snd/zip.scm
+@dirrm share/snd
diff --git a/audio/snd/distinfo b/audio/snd/distinfo
index 29bcc4a4e0d..6b8ef5c457a 100644
--- a/audio/snd/distinfo
+++ b/audio/snd/distinfo
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.13 2006/12/20 00:35:10 joerg Exp $
+$NetBSD: distinfo,v 1.14 2007/02/23 00:34:53 wiz Exp $
-SHA1 (snd-8.3.tar.gz) = ce9143f6354b576800b44ba91d1f334dcdd49ed6
-RMD160 (snd-8.3.tar.gz) = e9fb5ec5aa6b8025257a0256c726c3f5f1938d37
-Size (snd-8.3.tar.gz) = 8035162 bytes
+SHA1 (snd-8.8.tar.gz) = 8aa73ec7bbbb84b97c4325b05769f3388e6f0680
+RMD160 (snd-8.8.tar.gz) = 33a2a5f196a501c0cfb0fba623fa6f37c489def2
+Size (snd-8.8.tar.gz) = 8580035 bytes
SHA1 (patch-aa) = c0940f37c8455e7dcfac64d528c9baf545ba14b7