From 4eabfb3892f8169d0f1a4581a0b47c4d122958c3 Mon Sep 17 00:00:00 2001 From: Felipe Sateler Date: Sat, 4 Oct 2014 17:19:47 +0100 Subject: [PATCH 1/1] Import supercollider_3.6.6~repack-2-1.debian.tar.xz [dgit import tarball supercollider 1:3.6.6~repack-2-1 supercollider_3.6.6~repack-2-1.debian.tar.xz] --- README.extensions | 3 + README.source | 50 + changelog | 569 +++ compat | 1 + control | 201 + copyright | 909 +++++ copyright_hints | 4776 +++++++++++++++++++++++ gbp.conf | 3 + libscsynth1.install | 1 + patches/ftbfs-gcc-4.9.patch | 20 + patches/no-inline-ppc-ftbfs.patch | 16 + patches/perf-counter-include.patch | 18 + patches/series | 5 + patches/supernova-i686-march-flag.patch | 15 + patches/system-lockfree.patch | 88 + rules | 77 + scel.desktop | 10 + scide.1 | 42 + sclang.1 | 73 + sclangpipe_app.1 | 42 + scsynth.1 | 135 + scvim.1 | 53 + scvim.desktop | 10 + scvim_make_help.1 | 61 + source/format | 1 + supercollider-common.install | 6 + supercollider-common.links | 1 + supercollider-dev.install | 5 + supercollider-doc.install | 1 + supercollider-emacs.emacsen-compat | 1 + supercollider-emacs.emacsen-install | 45 + supercollider-emacs.emacsen-remove | 15 + supercollider-emacs.emacsen-startup | 25 + supercollider-emacs.install | 3 + supercollider-emacs.lintian-overrides | 3 + supercollider-emacs.menu | 5 + supercollider-gedit.install | 3 + supercollider-ide.install | 3 + supercollider-language.install | 1 + supercollider-server.install | 26 + supercollider-supernova.install | 26 + supercollider-vim.README.Debian | 12 + supercollider-vim.install | 7 + supercollider-vim.lintian-overrides | 1 + supercollider-vim.menu | 5 + supercollider-vim.yaml | 10 + supernova.1 | 135 + watch | 4 + 48 files changed, 7522 insertions(+) create mode 100644 README.extensions create mode 100644 README.source create mode 100644 changelog create mode 100644 compat create mode 100644 control create mode 100644 copyright create mode 100644 copyright_hints create mode 100644 gbp.conf create mode 100644 libscsynth1.install create mode 100644 patches/ftbfs-gcc-4.9.patch create mode 100644 patches/no-inline-ppc-ftbfs.patch create mode 100644 patches/perf-counter-include.patch create mode 100644 patches/series create mode 100644 patches/supernova-i686-march-flag.patch create mode 100644 patches/system-lockfree.patch create mode 100755 rules create mode 100644 scel.desktop create mode 100644 scide.1 create mode 100644 sclang.1 create mode 100644 sclangpipe_app.1 create mode 100644 scsynth.1 create mode 100644 scvim.1 create mode 100644 scvim.desktop create mode 100644 scvim_make_help.1 create mode 100644 source/format create mode 100644 supercollider-common.install create mode 100644 supercollider-common.links create mode 100644 supercollider-dev.install create mode 100644 supercollider-doc.install create mode 100644 supercollider-emacs.emacsen-compat create mode 100644 supercollider-emacs.emacsen-install create mode 100644 supercollider-emacs.emacsen-remove create mode 100644 supercollider-emacs.emacsen-startup create mode 100644 supercollider-emacs.install create mode 100644 supercollider-emacs.lintian-overrides create mode 100644 supercollider-emacs.menu create mode 100644 supercollider-gedit.install create mode 100644 supercollider-ide.install create mode 100644 supercollider-language.install create mode 100644 supercollider-server.install create mode 100644 supercollider-supernova.install create mode 100644 supercollider-vim.README.Debian create mode 100644 supercollider-vim.install create mode 100644 supercollider-vim.lintian-overrides create mode 100644 supercollider-vim.menu create mode 100644 supercollider-vim.yaml create mode 100644 supernova.1 create mode 100644 watch diff --git a/README.extensions b/README.extensions new file mode 100644 index 0000000..426ec4d --- /dev/null +++ b/README.extensions @@ -0,0 +1,3 @@ +The "Extensions" folder provided by SuperCollider is initially empty. +Packages will add class extensions and/or plugins into this folder. + diff --git a/README.source b/README.source new file mode 100644 index 0000000..75efe2f --- /dev/null +++ b/README.source @@ -0,0 +1,50 @@ +Building this package for Debian +-------------------------------- + +This source package need no special handling for normal package builds. + + +Developing this package for Debian +---------------------------------- + +The source of this package is developed using git and the helper tool +git-buildpackage, with all official releases tagged and signed and +binary diffs of tarballs stored using pristine-tar. This is documented +below /usr/share/doc/git-buildpackage/manual-html/ . + +A custom build target shows current upstream and packaging versions: + + debian/rules print-version + +Current upstream tarball can be prepared using this other build target: + + debian/rules get-orig-source + +To switch to newer upstream source, first add a dummy changelog entry +and comment out DEB_UPSTREAM_TARBALL_MD5 before getting the source: + + dch -v ${new_upstream_version}-1 "Dummy changelog entry" + sed -i -e 's/^\(DEB_UPSTREAM_TARBALL_MD5\b\)/#\1/' debian/rules + debian/rules get-orig-source + +Store new md5sum to help ensure identical source is received later. + +Setting DEB_MAINTAINER_MODE=1 enables additional build routines helpful +during development of the package, but unfit for normal builds. This +typically includes the CDBS feature of auto-updating debian/control with +CDBS-related build-dependencies, which is forbidden by Debian Policy as +build environment must not change during automated builds. + + +Maintaining packaging build routines +------------------------------------ + +This source package wraps debhelper commands and other tedious parts of +the build routines using the CDBS framework. Please refer to the actual +makefile snippets included from debian/rules for details on their +purpose and ways to override defaults. Additionally, makefile snippets +included from below /usr/share/cdbs may also be documented in +/usr/share/doc/cdbs/cdbs-doc.pdf.gz . + + + -- Jonas Smedegaard Thu, 26 Feb 2009 21:28:29 +0100 diff --git a/changelog b/changelog new file mode 100644 index 0000000..f90b9a5 --- /dev/null +++ b/changelog @@ -0,0 +1,569 @@ +supercollider (1:3.6.6~repack-2-1) unstable; urgency=low + + [ Dan Stowell ] + * Exclude bundled minified javascript-prettify, use packaged version. + + [ Felipe Sateler ] + * Install prettify symlink during build, not installation time + * Add emacsen compat file + + -- Felipe Sateler Sat, 04 Oct 2014 13:19:47 -0300 + +supercollider (1:3.6.6~repack-1) unstable; urgency=low + + * Imported upstream version 3.6.6. + * Exclude bundled MathJax scripts. We use system MathJax. Closes: #760981 + * Refresh patches, dropping one superceded patch. + + -- Dan Stowell Wed, 10 Sep 2014 09:28:36 +0100 + +supercollider (1:3.6.3~repack-7) unstable; urgency=medium + + * Team upload. + + [ Felipe Sateler ] + * Fix package dir in emacs startup file. (Closes: #743469) + + [ Gabriele Giacone ] + * debian/control: Switch (Build-Depends) to emacs | emacsen. (Closes: #754027) + + -- Sebastian Ramacher Tue, 09 Sep 2014 18:16:49 +0200 + +supercollider (1:3.6.3~repack-6) unstable; urgency=medium + + * Fix FTBFS with gcc-4.9. Closes: #746917 + + -- Felipe Sateler Fri, 06 Jun 2014 13:25:55 -0400 + +supercollider (1:3.6.3~repack-5) unstable; urgency=medium + + * Do not use system yaml-cpp. Closes: #733277 + + -- Felipe Sateler Fri, 03 Jan 2014 13:11:22 -0300 + +supercollider (1:3.6.3~repack-4) unstable; urgency=low + + [ Dan Stowell ] + * Use system libyaml-cpp0.3 (Closes: #722430) + * Do not build/provide supernova on sparc/powerpc (Closes: #728573) + + -- Felipe Sateler Sun, 24 Nov 2013 12:50:24 -0300 + +supercollider (1:3.6.3~repack-3) unstable; urgency=low + + * Force use of bundled yaml-cpp + * Add patch to use system lockfree. Also link appropriate libs on all archs + + -- Felipe Sateler Thu, 12 Sep 2013 19:21:30 -0300 + +supercollider (1:3.6.3~repack-2) unstable; urgency=low + + [ Dan Stowell ] + * Add 2 more files needed in -dev: SCVersion.txt, SC_PlugIn.hpp + + [ Felipe Sateler ] + * Drop alternative build dependencies on specific libboost versions + * Bump standards version + * Upload to unstable + + -- Felipe Sateler Mon, 09 Sep 2013 22:06:01 -0300 + +supercollider (1:3.6.3~repack-1) experimental; urgency=low + + [ Dan Stowell ] + * Imported upstream version 3.6.3 + * Rename language package supercollider -> supercollider-language + * supercollider is now a metapackage to provide standard install + + [ Felipe Sateler ] + * Improve supercollider-supernova description. + + -- Felipe Sateler Mon, 11 Mar 2013 09:22:37 -0400 + +supercollider (1:3.6.1~repack) unstable; urgency=low + + * Imported upstream version 3.6.1 + * New "supercollider-ide" package for new Qt-based IDE + * Ensure build with system boost, and now v1.50+ is required + * Update/refresh patches, remove 4 outdated patches + * Update copyright file + * Update install files: supernova plugin path changed + * Add cmake flags to ensure libscsynth is built (while testsuite not, unneeded) + * supernova compile fix on x86 + + -- Dan Stowell Thu, 20 Dec 2012 19:22:39 +0000 + +supercollider (1:3.5.4~repack-2-2) unstable; urgency=low + + * Imported upstream version 3.5.4 + * Note copyright for added file git-archive-all.py + + -- Dan Stowell Mon, 13 Aug 2012 14:07:48 +0100 + +supercollider (1:3.5.3~repack-3) unstable; urgency=low + + * Avoid FTBFS in PowerPC + * Avoid FTBFS in ia64 + * Fix ARM FTBFS: more qreal->double assumptions. Closes: #682361 + + -- Felipe Sateler Sat, 28 Jul 2012 20:19:58 -0400 + +supercollider (1:3.5.3~repack-2) unstable; urgency=low + + [ Dan Stowell ] + * Fix build on ia64 - avoid invoking unneeded perf_counter.hpp + * Fix caps in supercollider-emacs remove script. Closes: #681187 + * Boost-atomic build fix for PPC + * Note copyright for file adapted from wmctrl project + * Strip accidental gremlin characters that can cause problems for users in + some locales + + [ Felipe Sateler ] + * Fix FTBFS in big endian architectures + * Fix FTBFS in arm* architectures + + -- Dan Stowell Thu, 12 Jul 2012 22:53:55 +0100 + +supercollider (1:3.5.3~repack-1) unstable; urgency=low + + + [ Dan Stowell ] + * Imported upstream version 3.5.3 + - Removed 3 patches now upstreamed + - Repack upstream source without boost sources + * Fix build on non-x86/64: define BOOST_LOCKFREE_DCAS_ALIGNMENT + (Update prefix.hpp to current boost SVN 2012-07-03) + + [ Jonas Smedegaard ] + * Unfuzz patch and refresh with shortening options. + * Revive copyright/license tracking silently dropped in 1:3.5.1-1. + + [ Felipe Sateler ] + * Add missing epoch to versioned breaks/replaces. Closes: #679705 + * Install README.extensions via debian/rules instead of a patch + * Add DEP3 header to update_boostlockfree_prefixhpp.patch + * Remove unused License paragraph + * Bump Standards-Version (no changes needed) + * Remove unused lintian override package-contains-empty-directory + * Update copyright hints file + + -- Felipe Sateler Sat, 07 Jul 2012 14:16:59 -0400 + +supercollider (1:3.5.2-1) unstable; urgency=low + + * Imported Upstream version 3.5.2 + * Add manpage for supernova + * Use system mathjax via dh_linktree + * Backport fix to vim plugin from upstream + + -- Dan Stowell Sat, 16 Jun 2012 10:12:09 -0400 + +supercollider (1:3.5.1-2) UNRELEASED; urgency=low + + * install supercollider mode for gedit (thanks Tim Blechmann) + + -- Dan Stowell Tue, 01 May 2012 10:11:34 +0100 + +supercollider (1:3.5.1-1) UNRELEASED; urgency=low + + [ Dan Stowell ] + * Imported Upstream version 3.5.1 + * Import and adapt debian packaging info updates for SC 3.5 from tim blechmann + * removing scons patches (no longer using scons) + * Update paths & content of copyright file for SC 3.5 + + -- Dan Stowell Sat, 07 Apr 2012 14:01:57 +0100 + +supercollider (1:3.4.5-2) UNRELEASED; urgency=low + + * Drop dpkg-source local-options: Defaults since dpkg-source 1.16.1. + * Update package relations: + + Relax to build-depend unversioned on debhelper: needed version + satisfied even in oldstable. + * Bump debhelper compat level to 7. + * Simplify install handling, as supported by debhelper compat level 7. + * Stop setting bogus (or obsolete?) CDBS_NO_DOC_SYMLINKING. + * Update copyright file: + + Merge Files sections with same Licensing and (subsets of) same + copyright holders. + + Extend a Files section and drop another, to sync with new upstream + source. + + Sort authors by copyright year, and then alphabetically. + + Add email of original author, from AUTHORS file. + + Strip excess whitespace, and rewrap License sections at 72 chars. + + Add Comment field to GNU License sections; shortened, duplicate + texts dropped, using FSF web address (not postal address), and + with license strings quoted. + * Replace README.source: + + Drop notes on no longer used quilt. + + Add notes on git-buildpackage and CDBS. + * Add myself as uploader. + * Consistently newline-delimit package relations. + + -- Jonas Smedegaard Wed, 08 Feb 2012 00:52:02 +0100 + +supercollider (1:3.4.5-1) unstable; urgency=low + + [ Dan Stowell ] + * Imported Upstream version 3.4.5 + * remove debian patches 11 & 12, upstreamed + + -- Dan Stowell Sun, 15 Jan 2012 15:48:04 +0000 + +supercollider (1:3.4.4-3) unstable; urgency=low + + * Patch from Mathieu Trudel-Lapierre to fix build under stricter linking. + Closes: #648782 + + -- Dan Stowell Tue, 15 Nov 2011 09:54:00 +0000 + +supercollider (1:3.4.4-2) unstable; urgency=low + + * Team upload. + * Disable building of gedit2 plugin. Closes: #635118 + + -- Felipe Sateler Fri, 28 Oct 2011 23:30:39 -0300 + +supercollider (1:3.4.4-1) unstable; urgency=low + + [ Alexandre Quessy ] + * Initial release for debian (Closes: #602050). + * Little cleanup in dependencies + * Build-Depend on libsndfile1-dev - the 1 is mandatory + * Use format 3.0 (quilt) + * Make sure short descriptions are not duplicates + + [ Felipe Sateler ] + * Add myself to Uploaders + * Use the cdbs scons class + - Tighten build-dep on cdbs for scons class support + * Add DEP-3 headers to patches + * Fix BSD license section in copyright file + * Bump Standards-Version + * Make use of dh_lintian instead of manually installing overrides + * Override lintian warnings: + - emacs command not in package, supercollider-emacs depends on emacs + - missing xpm, supercollider depends on supercollider-common + - empty directory, it is intentional + * Build-Depend on libcwiid-dev instead of dropped libcwiid1-dev + * Use single space after fields in debian/control + * Qualify build dependency on libasound for use only on linux archs + * Switch from pysupport to dh_python2 + + [ Dan Stowell ] + * Imported Upstream version 3.4.4 + * Apple copyright not needed, apple files not bundled + * Can build against jack2 as well as jack1 + * Update copyright to match rearranged folders and stripped linux + source tgz + * Combine -dev packages into one supercollider-dev + - Merged -dev package Conflicts+Replaces+Provides predecessors + * Handle DEB_BUILD_OPTIONS to control strip/optimise + * Don't strip in rules (let dh_strip decide) + * Update copyright with full dates+authors (largely from SCM analysis) + + [ Jonas Smedegaard ] + * Ease building with git-buildpackage: + + Git-ignore quilt .pc dir. + + Add dpkg-source local-options hints. + * Update copyright file: + + Drop superfluous X-Packaged-By fields (covered by Files section + + debian/* and - for more accurate times - file debian/control). + + Move license texts to License sections, sorted roughly by + similarity with main licensing terms. + + Reorder Files sections sorted by amount of files, first upstream + and then debian packaging. + + Stop listing WiiMote_OSX Files section apparently no longer + included. + + Tighten DEP-5 format to draft rev. 174. + + Extend with additional copyright holders. + * Enable CDBS utils.mk snippet, for copyright-check routine. + + -- Felipe Sateler Tue, 19 Jul 2011 22:18:02 -0400 + +supercollider (1:3.3.2~svn9887-0ubuntu1~lucid1) lucid; urgency=low + + * First build for Ubuntu. + + -- Артём Попов Fri, 26 Feb 2010 09:34:09 +0600 + +supercollider (1:3.3.2~svn9887-0) UNRELEASED; urgency=low + + [ Артём Попов ] + * New upstream release (LP: #183552). Repackaged from scratch + (with manpages adapted from the original package). + + [ Dan Stowell] + * Improve behaviour of "scvim" desktop icon: visible user prompt + about vim-addon-manager if needed. + * Desktop files and icons integration. + * Update packaging rules for reorganised folders. + * Update and extend manpages for scvim. + * Added debian menu files. + * Dependencies, architeture, copyright and lintian fixes. + + -- Артём Попов Fri, 26 Feb 2010 09:34:09 +0600 + +supercollider (20060416-1build1) gutsy; urgency=low + + * Rebuild for the libflac transition. + + -- Steve Kowalik Tue, 10 Jul 2007 15:31:52 +1000 + +supercollider (20060416-1) unstable; urgency=low + + * New upstream release + * Removed erroneous architecture fields in Suggests (closes: #356372) + * Activated RendezVous build, added Build-depends on libavahi-client-dev + * Bump sonames to libsclang.so.1 and libscsynth.so.1 + * Move supercollider-doc to Section: doc + + -- Paul Brossier Tue, 18 Apr 2006 12:28:40 +0200 + +supercollider (20051211-1) unstable; urgency=low + + * New upstream release + * Prevent byte-compilation for xemacs (closes: #338169, #342358) + * sclang is now to be compiled only on supported platforms + (closes: #276212, #290339) + * 10fix_emacs_help.dpatch: fix path for Help + + -- Paul Brossier Mon, 12 Dec 2005 10:12:21 +0000 + +supercollider (20050921-1) unstable; urgency=low + + * New upstream release + * Removed patch 60SC_Lib_dlopen and 100fix_gcc4, merged upstream. + * Added 20virtual_parsenode to prevent virtual destructor g++-4.0 warnings + * Drop supercollider package on architectures where test failed. The + supercollider-server package remains available on all platforms. Also drop + libsclang on these machines. + + -- Paul Brossier Thu, 22 Sep 2005 03:42:14 +0100 + +supercollider (20050624-1) unstable; urgency=low + + Paul Brossier: + * New upstream release + * Updated rules to follow the move to scons + * Added scons and removed emacsen first in Build-Deps + * Updated 10emacs, 60SC_Lib_dlopen, 70fix_some_warnings + * Adds 80remove_pragmas + * Removed 80fix_sclang.conf + * Bumped Standards-Version + * Splitted supercollider into supercollider, supercollider-server, + libsclang0 and libscsynth0. supercollider-dev now provides libsclang-dev + and libscsynth-dev + + Mario Lang: + * Execute the scons install target. + * Patch SConstruct to avoid Emacs byte-compilation at build-time. + * Use a emcsen-install script to perform byte-compilation + at package install time to be conformant with Debian Emacs Policy. + * Put plugins in libscsynth0 so that both either client-only + installations (with internal server) and server only installations + (no client package installed) work correctly. + * Move .rtf docs to /usr/share/SuperCollider/Help (as upstream + does by default) and symlink from /usr/share/doc/supercollider-doc/Help. + * Build against latest jackd (closes: #317225) + * Revive test-sclang target and make it run at build time. + * supercollider suggests supercollider-doc. + + Paul Brossier: + * Extension are now managed at install time. Changed sclang.cfg location + from /etc to /etc/supercollider to avoid loading old conffiles left over + from previous install. added a note in NEWS.Debian and updated manpage, + installed optional template in /usr/share/doc/supercollider + * Added conflict against supercollider (<< ${Source-Version}) to + libscsynth0 and libsclang0 to prevent file conflicts. + * Update test-sclang: replace LD_LIBRARY_PATH with LD_PRELOAD to make sure + newly libs are being used (and avoid a build-conflict against + supercollider binary), simplify the command line, activate noruntest + DEB_BUILD_OPTIONS to bypass run test + * Patch source/lang/LangSource/SC_LanguageClient.cpp to compile with + current g++ 4.0. + * Dropped unused libsigc++-dev, libtool and emacs21 Build-Deps + + -- Paul Brossier Fri, 8 Jul 2005 03:59:30 +0100 + +supercollider (20050424-1) unstable; urgency=low + + * CVS update + * Added cvsupdate target to rules + * Added Psycollider to debian/non-free + * Moved 60SC_Lib_dlopen to dpatch + * Added 70fix_some_warnings patch to fix some warnings + * Fix sclang.cfg template in 80fix_sclang.cfg + * Added hand crafted simple icon to menu entries (closes: #299421) + * Bumped upstream version number to `date +%Y%m%d` + * Removed obsolete scfront and (wish | tk) Suggests + + -- Paul Brossier Mon, 25 Apr 2005 15:23:43 +0100 + +supercollider (050114-2) unstable; urgency=low + + * Added Mario Lang to the Uploader field. + * Removed libhowl-dev from Build-Depends as howl is being removed (see + #289856) (closes: #295776) + * Removed odd comment about 64 bits: supercollider fails on many other + architectures. apparently anything but i386 and powerpc - and maybe mips + (see #274240, #276212 and #290339). + + -- Paul Brossier Sun, 27 Feb 2005 20:12:23 +0000 + +supercollider (050114-1) unstable; urgency=low + + * Cvs update (closes: #289340) + * Modified startup script to move synthdefs to ~/.scsynthdefs/ + * Fix clean and install time test in rules + * Removed automake1.7 dependancy. + + -- Paul Brossier Sun, 16 Jan 2005 19:31:06 +0000 + +supercollider (040926-3) unstable; urgency=low + + * Adding sclang test to debian/rules to fail 64 bit builds. + + -- Paul Brossier Sat, 8 Jan 2005 19:43:52 +0000 + +supercollider (040926-2) unstable; urgency=low + + * Asked for supercollider to be added to Packages-arch-specific + and for the 64-bit arch to be removed from archive (see: #276212) + * Back to Architecture: any in debian/control (closes: #274240) + + -- Paul Brossier Wed, 13 Oct 2004 10:10:25 +0100 + +supercollider (040926-1) unstable; urgency=low + + * New upstream release (closes: #272379) + * Added missing BBCUT JITLib support (closes: #272255) + * Regenerated automake files + * Added missing \ in debian/scsynth.1 + * Updated emacs menu entry to include emacs and tk. + * Dropped 64 bit architecture (closes: #274240) + + -- Paul Brossier Thu, 7 Oct 2004 18:12:28 +0100 + +supercollider (040808-1) unstable; urgency=high + + * Cvs update + * Removed non-free files (see non-free in debian/), removed useless + inclusion and installation of non-free dlfcn.h, updated debian/copyright + * Dropped emacs19 emacs20 and xemacs21 Build-Depends, added recommends on + emacsen | emacs21, included Makefile within diff and dropped autotools-dev + Build-Depends. + * Trying again sparc compilation (closes: #260251) + * gcc-3.4 compilation fixed upstream (closes: #263817) + * Inclusion of bbcut within supercollider orig (closes: #264564) + * Added missing end of lines in diff and small script in debian/rules + * Reenabled CFLAGS=-Wall + * Added in linux input device compilation --enable-lid + * Avoid deletion of .rtfd directories, instead remove empty files called + .typeAttributes.dict + * Disabled empty Help button in scfront + * Removed README.debian and added menu entries for emacs mode + * Moved .desktop from /usr/share/gnome/apps/Multimedia to + /usr/share/applications. + + -- Paul Brossier Mon, 16 Aug 2004 13:52:56 +0200 + +supercollider (040719-1) unstable; urgency=low + + * Cvs update + * Removed .cvsignore files in the archive + * Moved clz.h patch to dpatch + * Updated manpages, added sclang.real.1 and supercollider.1 + * Made links to redundant manpages + * Removed README.Debian + * Fixed .DS_Store removal + * Trying again sparc compilation (closes: #260251) + + -- Paul Brossier Fri, 6 Aug 2004 12:07:07 +0200 + +supercollider (040709-2) unstable; urgency=low + + * reFixed clz.h + + -- Paul Brossier Sat, 17 Jul 2004 13:13:21 +0100 + +supercollider (040709-1) unstable; urgency=low + + * Added fix for emacs doc (closes: #255002) (patches/10) + * Avoid compression of RTF documentation + * Added compilation of x11 plugins (fixed configure.in and depends) + * Wrapper: added sclang and modified scsynth (now creates ~/synthdefs) + * Modified scfront patch (still buggy) + * Fixed spelling in scfront.1 manpage + * Fixed extMain.sc install using $(DESTDIR) (patches/40) + * Use dh_installemacsen and removed install of .elc + * Added emacsen-startup (not fully emacsen compliant yet) + * Removed .DS_Store files + * Updated README.Debian + * Completed supercollider.desktop entries + * Cvs update + * Added workaround 'cd SC_SYNTHDEF_PATH' to both wrapper + + -- Paul Brossier Mon, 12 Jul 2004 18:40:06 +0100 + +supercollider (040513-2) unstable; urgency=low + + * Fixed clz.h (thanks again Guenter) + * added missing build deps (thanks G.Geiger) + * fixed sclang.wrapper + + -- Paul Brossier Tue, 8 Jun 2004 17:04:06 +0100 + +supercollider (040513-1) unstable; urgency=low + + * upstream cvs update + * added new /etc/sclang.cfg conffile + * wrapped scsynth, renamed as scsynth.real + (adds default port and jacka connection) + * added manpages for scsynth, sclang and scfront (1) + * added scfront menu (icons anyone ?) + * small hack for make install in linux/examples + + -- Paul Brossier Thu, 13 May 2004 23:48:26 +0100 + +supercollider (040312-0test1) unstable; urgency=low + + * upstream update + * removed empty changelog file + * updated plugins configure (fixed upstream) + * removed xlibs-dev dependancy (upstream) + + -- Paul Brossier Sun, 14 Mar 2004 01:35:32 +0000 + +supercollider (040301-0test2) unstable; urgency=low + + * fixed missing plugins + * corrected dependancies + * added sclang.cfg, sclang.sc and some documentation + * added scfront (tk front-end) + + -- Paul Brossier Mon, 8 Mar 2004 03:42:45 +0000 + +supercollider (040301-1) unstable; urgency=low + + * updated to last cvs + * added Emacs style files + * moved header files to supercollider-dev + + -- Paul Brossier Mon, 1 Mar 2004 03:36:00 +0000 + +supercollider (3.0-0test1) unstable; urgency=low + + * debian/control: wrote build dependencies + * added locally generated configure script + * debian/rules: commented out the autoconf & co. commands + * added template manpages for scsynth and sclang + + -- Free Ekanayaka Sat, 3 Jan 2004 10:44:07 +0100 + +supercollider (3.0-1) unstable; urgency=low + + * Initial Release. + + -- Paul Brossier Mon, 10 Nov 2003 01:41:48 +0000 + diff --git a/compat b/compat new file mode 100644 index 0000000..7f8f011 --- /dev/null +++ b/compat @@ -0,0 +1 @@ +7 diff --git a/control b/control new file mode 100644 index 0000000..48cad8f --- /dev/null +++ b/control @@ -0,0 +1,201 @@ +Source: supercollider +Section: sound +Priority: optional +Vcs-Git: git://git.debian.org/pkg-multimedia/supercollider.git +Vcs-Browser: http://git.debian.org/?p=pkg-multimedia/supercollider.git;a=summary +Maintainer: Debian Multimedia Packages Maintainers +Uploaders: Alexandre Quessy , + Dan Stowell , + Felipe Sateler , + Jonas Smedegaard +Build-Depends: cdbs (>= 0.4.73~), + cmake, + debhelper, + dh-linktree, + libjs-mathjax, + emacs | emacsen, + libasound2-dev [linux-any], + libavahi-client-dev, + libcwiid-dev, + libfftw3-dev, + libicu-dev, + libjack-dev, + libqt4-dev, + libqtwebkit-dev, + libreadline-dev, + libsndfile1-dev (>= 1.0.16), + libxt-dev, + python-all-dev (>= 2.6.6-3~), + qt4-dev-tools, + libboost-dev (>= 1.50), + libboost-date-time-dev (>= 1.50), + libboost-filesystem-dev (>= 1.50), + libboost-math-dev (>= 1.50), + libboost-program-options-dev (>= 1.50), + libboost-regex-dev (>= 1.50), + libboost-system-dev (>= 1.50), + libboost-test-dev (>= 1.50), + libboost-thread-dev (>= 1.50) +Standards-Version: 3.9.6 +Homepage: http://supercollider.sourceforge.net/ + +Package: supercollider +Architecture: any +Depends: supercollider-language, + supercollider-server, + supercollider-ide, + ${misc:Depends}, +Recommends: supercollider-supernova +Description: real time audio synthesis programming language + SuperCollider is an environment and programming language for real time + audio synthesis and algorithmic composition. It provides an interpreted + object-oriented language which functions as a network client + to a state of the art, realtime sound synthesis server. + . + This metapackage installs the standard core components of supercollider, + including the language, the synthesis server, and the code editor (IDE). + +Package: supercollider-language +Architecture: any +Depends: ${shlibs:Depends}, + ${misc:Depends}, + supercollider-common (= ${source:Version}), + supercollider-server (= ${binary:Version}), +Suggests: subversion, + supercollider-ide +Breaks: supercollider (<= 1:3.5.3) +Replaces: supercollider (<= 1:3.5.3) +Description: real time audio synthesis programming language + SuperCollider is an environment and programming language for real time + audio synthesis and algorithmic composition. It provides an interpreted + object-oriented language which functions as a network client + to a state of the art, realtime sound synthesis server. + . + This package contains the language interpreter. + +Package: supercollider-common +Architecture: all +Depends: ${misc:Depends}, libjs-prettify +Breaks: supercollider-server (<< 1:3.5) +Replaces: supercollider-doc, supercollider-server (<< 1:3.5) +Description: common files for SuperCollider + SuperCollider is an environment and programming language for real time + audio synthesis and algorithmic composition. It provides an interpreted + object-oriented language which functions as a network client + to a state of the art, realtime sound synthesis server. + . + This package contains the architecture independent files for SuperCollider. + +Package: supercollider-server +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends}, jackd +Description: real time audio synthesis server + SuperCollider is an environment and programming language for real time + audio synthesis and algorithmic composition. It provides an interpreted + object-oriented language which functions as a network client + to a state of the art, realtime sound synthesis server. + . + This package contains the synthesis server. + +Package: supercollider-ide +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends}, + supercollider-language (>= ${source:Version}) +Description: integrated development environment for supercollider audio system + SuperCollider is an environment and programming language for real time + audio synthesis and algorithmic composition. It provides an interpreted + object-oriented language which functions as a network client + to a state of the art, realtime sound synthesis server. + . + This package contains the graphical IDE, the recommended interface for + working with SuperCollider code. + +Package: supercollider-supernova +Architecture: any-i386 any-amd64 armel armhf ia64 mips mipsel s390 s390x +Depends: ${shlibs:Depends}, ${misc:Depends}, jackd +Description: real time audio synthesis server (multiprocessor version) + SuperCollider is an environment and programming language for real time + audio synthesis and algorithmic composition. It provides an interpreted + object-oriented language which functions as a network client + to a state of the art, realtime sound synthesis server. + . + This package contains the multiprocessor aware and parallelization capable + synthesis server supernova. Use of this server is manually enabled via a + Server.supernova call before starting the server. This server does not work + on i486 or i586 processors. + +Package: libscsynth1 +Architecture: any +Depends: ${shlibs:Depends}, + ${misc:Depends} +Description: SuperCollider synthesis server library + SuperCollider is an environment and programming language for real time + audio synthesis and algorithmic composition. It provides an interpreted + object-oriented language which functions as a network client + to a state of the art, realtime sound synthesis server. + . + This package contains the shared library for the synthesis server. + +Package: supercollider-dev +Architecture: any +Depends: ${misc:Depends}, + supercollider-language (= ${binary:Version}), + libsndfile1-dev (>= 1.0.16) +Conflicts: supercollider-common-dev, + supercollider-server-dev +Replaces: supercollider-common-dev, + supercollider-server-dev +Provides: supercollider-common-dev, + supercollider-server-dev +Description: development files for SuperCollider + SuperCollider is an environment and programming language for real time + audio synthesis and algorithmic composition. It provides an interpreted + object-oriented language which functions as a network client + to a state of the art, realtime sound synthesis server. + . + This package contains the development files and headers. + +Package: supercollider-emacs +Architecture: all +Depends: ${misc:Depends}, + supercollider-language (>= ${source:Version}), + emacs | emacsen +Recommends: w3m-el +Description: SuperCollider mode for Emacs + SuperCollider is an environment and programming language for real time + audio synthesis and algorithmic composition. It provides an interpreted + object-oriented language which functions as a network client + to a state of the art, realtime sound synthesis server. + . + This package provides the SuperCollider mode for Emacs. + +Package: supercollider-vim +Architecture: all +Depends: ${misc:Depends}, + supercollider-language (>= ${source:Version}), + vim | gvim, + ruby +Recommends: unhtml | links, + vim-addon-manager +Suggests: unrtf +Description: SuperCollider mode for Vim + SuperCollider is an environment and programming language for real time + audio synthesis and algorithmic composition. It provides an interpreted + object-oriented language which functions as a network client + to a state of the art, realtime sound synthesis server. + . + This package provides the SuperCollider mode for Vim. + + +Package: supercollider-gedit +Architecture: all +Depends: ${misc:Depends}, + supercollider-language (>= ${source:Version}), + gedit (>=3.0.0) +Description: SuperCollider mode for Gedit + SuperCollider is an environment and programming language for real time + audio synthesis and algorithmic composition. It provides an interpreted + object-oriented language which functions as a network client + to a state of the art, realtime sound synthesis server. + . + This package provides the SuperCollider mode for Gedit. diff --git a/copyright b/copyright new file mode 100644 index 0000000..eecdbac --- /dev/null +++ b/copyright @@ -0,0 +1,909 @@ +Format: http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?rev=174 +Upstream-Name: SuperCollider +Upstream-Contact: SuperCollider Development Team +Source: http://supercollider.sourceforge.net/ + Repackaged, excluding third-party Boost library source +Files-Excluded: + external_libraries/boost/ + external_libraries/curl/ + external_libraries/icu/ + external_libraries/simplejson-*/ + +Files: * +Copyright: 2002-2007, James McCartney + 2002-2011, Chris Sattinger (Crucial Felix) + 2002-2011, Jan Trutzschler + 2002-2011, Stefan Kersten + 2003-2004, Christophe Costigan + 2003-2004, Dave Watson + 2003-2004, Maurizio Umberto Puxeddu + 2003-2008, Ross Bencina + 2003-2011, Julian Rohrhuber + 2003-2011, Nick Collins + 2003-2011, Ron Kuivila + 2003-2011, Scott Wilson + 2003, James Harkins + 2004-2005, Benjamin Golinvaux + 2004-2005, Newton Armstrong + 2004-2005, Rohan Drape + 2004-2006, Andi Pieper + 2004-2011, Alberto de Campo + 2004-2011, Fredrik Olofsson + 2004, Mark Polishook + 2004, Mike Whyte + 2005-2006, Mario Lang + 2005,2007-2010, Blackrain + 2005-2008, Christopher Frauenberger + 2005-2009, Tim Walters + 2005-2011, Dan Stowell + 2006-2010, Till Bovermann + 2006-2011, Joshua Parmenter + 2006-2011, Marije Baalman + 2006, Christian A. Hresko + 2006, Patrick Beard + 2007-2008, Ryan Brown + 2007-2010, Hanns Holger Rutz + 2007-2011, Thor Magnusson + 2008-2010, Anders Vinjar + 2008-2010, Charles Picasso + 2008-2011, Alex Norman + 2008-2011, Tim Blechmann + 2008, John Glover + 2009-2010, Miguel Negrao + 2009-2011, Axel Balley + 2009-2011, Batuhan Bozkurt + 2009-2011, Gerard Roma <0001@ooo000ooo.org> + 2009, Martin Victory + 2010-2011, Jonatan Liljedahl + 2010-2011, Patrick Borgeat +License: GPL-2+ + +Files: HelpSource/* +Copyright: 2009, SuperCollider 3 documentation contributors +License: CC-BY-SA-3.0 + +Files: include/lang/SC_LanguageClient.h + include/lang/SC_TerminalClient.h + include/common/SC_StringParser.h + include/common/SC_StringBuffer.h + server/scsynth/Rendezvous.cpp + server/scsynth/SC_Jack.cpp + lang/LangPrimSource/PyrSerialPrim.cpp + lang/LangPrimSource/SC_AlsaMIDI.cpp + lang/LangPrimSource/SC_LID.cpp + editors/scel/* +Copyright: 2003-2006, Stefan Kersten +License: GPL-2+ + +Files: editors/sc-ide/* +Copyright: 2012, Tim Blechmann + 2012, Jakob Leben +License: GPL-2+ + +Files: editors/scvim/* +Copyright: 2007, Alex Norman +License: GPL-3+ + +Files: editors/sced/* +Copyright: 2006-2009, Артём Попов +License: GPL-3+ + +Files: editors/scel/el/sclang-vars.el.in + editors/scel/el/sclang-widgets.el + editors/scel/el/tree-widget.el +Copyright: 2004-2005, Free Software Foundation, Inc +License: GPL-2+ + +Files: lang/LangPrimSource/SC_Speech.M + lang/LangPrimSource/SC_Speech.cpp +Copyright: 2003, sampleAndHold.org +License: GPL-2+ + +Files: external_libraries/boost_endian/* +Copyright: 2000 Darin Adler, 2006 - 2009 Beman Dawes +License: BSL-1.0 + +Files: external_libraries/boost-lockfree/libs/lockfree/* + external_libraries/boost-lockfree/boost/lockfree/* +Copyright: 2007-2011 Tim Blechmann +License: BSL-1.0 + +Files: external_libraries/boost-lockfree/boost/atomic.hpp + external_libraries/boost-lockfree/boost/atomic/* +Copyright: 2009 Helge Bahmann +License: BSL-1.0 + +Files: external_libraries/boost-lockfree/boost/atomic/detail/linux-arm.hpp + external_libraries/boost-lockfree/boost/atomic/detail/gcc-armv6+.hpp +Copyright: 2009 Helge Bahmann, Phil Endecott +License: BSL-1.0 + +Files: external_libraries/boost-lockfree/boost/memory_order.hpp +Copyright: 2008, 2009 Peter Dimov +License: BSL-1.0 + +Files: external_libraries/nova-simd/* +Copyright: 2009 Tim Blechmann +License: GPL-2+ + +Files: external_libraries/nova-simd/benchmarks/cache_aligned_array.hpp +Copyright: 2001, Nicolai M. Josuttis +License: BSL-1.0 + Distributed under the Boost Software License, Version 1.0. (See + accompanying file LICENSE_1_0.txt or copy at + http://www.boost.org/LICENSE_1_0.txt) + +Files: external_libraries/nova-simd/benchmarks/perf_counter.hpp +Copyright: 2008, Tim Blechmann + 2008-2009, Red Hat, Inc., Ingo Molnar + 2008-2009, Red Hat, Inc., Peter Zijlstra + 2008-2009, Thomas Gleixner +License: GPL-2+ + +Files: external_libraries/nova-tt/* +Copyright: 2009 Tim Blechmann +License: GPL-2+ + +Files: external_libraries/oscpack/* +Copyright: 2004 Ross Bencina +License: BSD-like-oscpack + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files + (the "Software"), to deal in the Software without restriction, + including without limitation the rights to use, copy, modify, merge, + publish, distribute, sublicense, and/or sell copies of the Software, + and to permit persons to whom the Software is furnished to do so, + subject to the following conditions: + . + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + . + Any person wishing to distribute modifications to the Software is + requested to send the modifications to the original developer so that + they can be incorporated into the canonical version. + . + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR + ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF + CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION + WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +Files: external_libraries/threadpool/* +Copyright: 2005-2007 Philipp Henkel +License: BSL-1.0 + +Files: external_libraries/TLSF-2.4.6/* +Copyright: 2009 UPVLC, OCERA Consortium +License: GPL-2+ with TLSF exception or LGPL-2.1+ + As a special exception, including TLSF header files in a file, or linking with + other files objects to produce an executable application, is merely considered + normal use of the library, and does *not* fall under the heading of "derived + work". Therfore does not by itself cause the resulting executable application + to be covered by the GNU General Public License. This exception does not + however invalidate any other reasons why the executable file might be covered + by the GNU Public License. + +Files: external_libraries/yaml-cpp-0.3.0/* +Copyright: 2008 Jesse Beder +License: MIT + +Files: lang/LangSource/Bison/lang11d_tab.cpp +Copyright: 1984, 1989-1990, 2000-2006, Free Software Foundation, Inc. +License: GPL-2+ with Bison exception + As a special exception, you may create a larger work that contains part + or all of the Bison parser skeleton and distribute that work under + terms of your choice, so long as that work isn't itself a parser + generator using the skeleton or a modified version thereof as a parser + skeleton. Alternatively, if you modify or redistribute the parser + skeleton itself, you may (at your option) remove this special + exception, which will cause the skeleton and the resulting Bison output + files to be licensed under the GNU General Public License without this + special exception. + +Files: server/plugins/FilterUGens.cpp +Copyright: 2002, James McCartney + 2007, Federico Fontana +License: GPL-2+ + +Files: server/plugins/DynNoiseUGens.cpp +Copyright: 2002, James McCartney + 2004, HfbK +License: GPL-2+ + +Files: include/plugin_interface/SC_sndfile_stub.h +Copyright: 1999-2009, Erik de Castro Lopo +License: LGPL-2.1+ + +Files: package/pkg-dmg +Copyright: 2005, Mark Mentovai +License: MPL-1.1 or GPL-2+ or LGPL-2.1+ + +Files: package/git-archive-all.py +Copyright: 2012, Ilya Kulakov +License: MIT + +Files: examples/GUI examples/ColorBrowser.scd +Copyright: 2007, Tom Hall +License: GPL-2+ + +Files: QtCollider/* +Copyright: 2010-2012, Jakob Leben +License: GPL-2+ + +Files: QtCollider/hacks/hacks_x11.cpp +Copyright: 2003 Tomas Styblo + 2011 Tim Blechmann + 2011 Jakob Leben +License: GPL-2+ + +Files: debian/* +Copyright: 2004, Paul Brossier + 2008, Артём Попов + 2010, Alexandre Quessy +License: GPL-2+ + +License: GPL-2+ + This program is free software; you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by the + Free Software Foundation; either version 2 of the License, or (at your + option) any later version. + . + This program is distributed in the hope that it will be useful, but + WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + General Public License for more details. +Comment: + You should have received a copy of the 'GNU General Public License' + along with this program. If not, see . + . + On Debian systems the 'GNU General Public License' version 2 is located + in '/usr/share/common-licenses/GPL-2'. + +License: GPL-3+ + This program is free software: you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by the + Free Software Foundation, either version 3 of the License, or (at your + option) any later version. + . + This program is distributed in the hope that it will be useful, but + WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + General Public License for more details. +Comment: + On Debian systems the 'GNU General Public License' version 3 is located + in '/usr/share/common-licenses/GPL-3'. + +License: LGPL-2.1+ + This package is free software; you can redistribute it and/or modify it + under the terms of the GNU Lesser General Public License as published + by the Free Software Foundation; either version 2.1 of the License, or + (at your option) any later version. + . + This package is distributed in the hope that it will be useful, but + WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. +Comment: + You should have received a copy of the 'GNU Lesser General Public + License' along with this program. If not, see + . + . + On Debian systems the 'GNU Lesser General Public License' version 2.1 + is located in '/usr/share/common-licenses/LGPL-2.1'. + +License: CC-BY-SA-3.0 + This work is licensed under the Creative Commons Attribution-Share + Alike 3.0 Unported License. To view a copy of this license, visit + http://creativecommons.org/licenses/by-sa/3.0/ or send a letter to + Creative Commons, 171 Second Street, Suite 300, San Francisco, + California, 94105, USA. + +License: BSL-1.0 + Permission is hereby granted, free of charge, to any person or + organization obtaining a copy of the software and accompanying + documentation covered by this license (the "Software") to use, + reproduce, display, distribute, execute, and transmit the Software, and + to prepare derivative works of the Software, and to permit + third-parties to whom the Software is furnished to do so, all subject + to the following: + . + The copyright notices in the Software and this entire statement, + including the above license grant, this restriction and the following + disclaimer, must be included in all copies of the Software, in whole or + in part, and all derivative works of the Software, unless such copies + or derivative works are solely in the form of machine-executable object + code generated by a source language processor. + . + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS + OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND + NON-INFRINGEMENT. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR ANYONE + DISTRIBUTING THE SOFTWARE BE LIABLE FOR ANY DAMAGES OR OTHER LIABILITY, + WHETHER IN CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. + +License: MIT + Permission is hereby granted, free of charge, to any person obtaining a copy of + this software and associated documentation files (the "Software"), to deal in + the Software without restriction, including without limitation the rights to + use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies + of the Software, and to permit persons to whom the Software is furnished to do + so, subject to the following conditions: + . + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + . + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. + +License: MPL-1.1 + MOZILLA PUBLIC LICENSE + Version 1.1 + . + --------------- + . + 1. Definitions. + . + 1.0.1. "Commercial Use" means distribution or otherwise making the + Covered Code available to a third party. + . + 1.1. "Contributor" means each entity that creates or contributes to the + creation of Modifications. + . + 1.2. "Contributor Version" means the combination of the Original Code, + prior Modifications used by a Contributor, and the Modifications made + by that particular Contributor. + . + 1.3. "Covered Code" means the Original Code or Modifications or the + combination of the Original Code and Modifications, in each case + including portions thereof. + . + 1.4. "Electronic Distribution Mechanism" means a mechanism generally + accepted in the software development community for the electronic + transfer of data. + . + 1.5. "Executable" means Covered Code in any form other than Source + Code. + . + 1.6. "Initial Developer" means the individual or entity identified as + the Initial Developer in the Source Code notice required by Exhibit A. + . + 1.7. "Larger Work" means a work which combines Covered Code or portions + thereof with code not governed by the terms of this License. + . + 1.8. "License" means this document. + . + 1.8.1. "Licensable" means having the right to grant, to the maximum + extent possible, whether at the time of the initial grant or + subsequently acquired, any and all of the rights conveyed herein. + . + 1.9. "Modifications" means any addition to or deletion from the + substance or structure of either the Original Code or any previous + Modifications. When Covered Code is released as a series of files, a + Modification is: + A. Any addition to or deletion from the contents of a file containing + Original Code or previous Modifications. + . + B. Any new file that contains any part of the Original Code or + previous Modifications. + . + 1.10. "Original Code" means Source Code of computer software code which + is described in the Source Code notice required by Exhibit A as + Original Code, and which, at the time of its release under this License + is not already Covered Code governed by this License. + . + 1.10.1. "Patent Claims" means any patent claim(s), now owned or + hereafter acquired, including without limitation, method, process, and + apparatus claims, in any patent Licensable by grantor. + . + 1.11. "Source Code" means the preferred form of the Covered Code for + making modifications to it, including all modules it contains, plus any + associated interface definition files, scripts used to control + compilation and installation of an Executable, or source code + differential comparisons against either the Original Code or another + well known, available Covered Code of the Contributor's choice. The + Source Code can be in a compressed or archival form, provided the + appropriate decompression or de-archiving software is widely available + for no charge. + . + 1.12. "You" (or "Your") means an individual or a legal entity + exercising rights under, and complying with all of the terms of, this + License or a future version of this License issued under Section 6.1. + For legal entities, "You" includes any entity which controls, is + controlled by, or is under common control with You. For purposes of + this definition, "control" means (a) the power, direct or indirect, to + cause the direction or management of such entity, whether by contract + or otherwise, or (b) ownership of more than fifty percent (50%) of the + outstanding shares or beneficial ownership of such entity. + . + 2. Source Code License. + . + 2.1. The Initial Developer Grant. + . + The Initial Developer hereby grants You a world-wide, royalty-free, + non-exclusive license, subject to third party intellectual property + claims: + (a) under intellectual property rights (other than patent or + trademark) Licensable by Initial Developer to use, reproduce, + modify, display, perform, sublicense and distribute the Original + Code (or portions thereof) with or without Modifications, and/or + as part of a Larger Work; and + (b) under Patents Claims infringed by the making, using or selling of + Original Code, to make, have made, use, practice, sell, and offer + for sale, and/or otherwise dispose of the Original Code (or + portions thereof). + (c) the licenses granted in this Section 2.1(a) and (b) are effective + on the date Initial Developer first distributes Original Code + under the terms of this License. + (d) Notwithstanding Section 2.1(b) above, no patent license is + granted: 1) for code that You delete from the Original Code; 2) + separate from the Original Code; or 3) for infringements caused + by: i) the modification of the Original Code or ii) the + combination of the Original Code with other software or devices. + . + 2.2. Contributor Grant. + . + Subject to third party intellectual property claims, each Contributor + hereby grants You a world-wide, royalty-free, non-exclusive license + (a) under intellectual property rights (other than patent or + trademark) Licensable by Contributor, to use, reproduce, modify, + display, perform, sublicense and distribute the Modifications + created by such Contributor (or portions thereof) either on an + unmodified basis, with other Modifications, as Covered Code and/or + as part of a Larger Work; and + (b) under Patent Claims infringed by the making, using, or selling of + Modifications made by that Contributor either alone and/or in + combination with its Contributor Version (or portions of such + combination), to make, use, sell, offer for sale, have made, + and/or otherwise dispose of: 1) Modifications made by that + Contributor (or portions thereof); and 2) the combination of + Modifications made by that Contributor with its Contributor + Version (or portions of such combination). + (c) the licenses granted in Sections 2.2(a) and 2.2(b) are effective + on the date Contributor first makes Commercial Use of the Covered + Code. + (d) Notwithstanding Section 2.2(b) above, no patent license is + granted: 1) for any code that Contributor has deleted from the + Contributor Version; 2) separate from the Contributor Version; 3) + for infringement caused by: i) third party modifications of + Contributor Version or ii) the combination of Modifications made + by that Contributor with other software (except as part of the + Contributor Version) or other devices; or 4) under Patent Claims + infringed by Covered Code in the absence of Modifications made by + that Contributor. + . + 3. Distribution Obligations. + . + 3.1. Application of License. + . + The Modifications which You create or to which You contribute are + governed by the terms of this License, including without limitation + Section 2.2. The Source Code version of Covered Code may be distributed + only under the terms of this License or a future version of this + License released under Section 6.1, and You must include a copy of this + License with every copy of the Source Code You distribute. You may not + offer or impose any terms on any Source Code version that alters or + restricts the applicable version of this License or the recipients' + rights hereunder. However, You may include an additional document + offering the additional rights described in Section 3.5. + . + 3.2. Availability of Source Code. + . + Any Modification which You create or to which You contribute must be + made available in Source Code form under the terms of this License + either on the same media as an Executable version or via an accepted + Electronic Distribution Mechanism to anyone to whom you made an + Executable version available; and if made available via Electronic + Distribution Mechanism, must remain available for at least twelve (12) + months after the date it initially became available, or at least six + (6) months after a subsequent version of that particular Modification + has been made available to such recipients. You are responsible for + ensuring that the Source Code version remains available even if the + Electronic Distribution Mechanism is maintained by a third party. + . + 3.3. Description of Modifications. + . + You must cause all Covered Code to which You contribute to contain a + file documenting the changes You made to create that Covered Code and + the date of any change. You must include a prominent statement that the + Modification is derived, directly or indirectly, from Original Code + provided by the Initial Developer and including the name of the Initial + Developer in (a) the Source Code, and (b) in any notice in an + Executable version or related documentation in which You describe the + origin or ownership of the Covered Code. + . + 3.4. Intellectual Property Matters + (a) Third Party Claims. + If Contributor has knowledge that a license under a third party's + intellectual property rights is required to exercise the rights + granted by such Contributor under Sections 2.1 or 2.2, Contributor + must include a text file with the Source Code distribution titled + "LEGAL" which describes the claim and the party making the claim + in sufficient detail that a recipient will know whom to contact. + If Contributor obtains such knowledge after the Modification is + made available as described in Section 3.2, Contributor shall + promptly modify the LEGAL file in all copies Contributor makes + available thereafter and shall take other steps (such as notifying + appropriate mailing lists or newsgroups) reasonably calculated to + inform those who received the Covered Code that new knowledge has + been obtained. + . + (b) Contributor APIs. + If Contributor's Modifications include an application programming + interface and Contributor has knowledge of patent licenses which + are reasonably necessary to implement that API, Contributor must + also include this information in the LEGAL file. + . + (c) Representations. + Contributor represents that, except as disclosed pursuant to + Section 3.4(a) above, Contributor believes that Contributor's + Modifications are Contributor's original creation(s) and/or + Contributor has sufficient rights to grant the rights conveyed by + this License. + . + 3.5. Required Notices. + . + You must duplicate the notice in Exhibit A in each file of the Source + Code. If it is not possible to put such notice in a particular Source + Code file due to its structure, then You must include such notice in a + location (such as a relevant directory) where a user would be likely to + look for such a notice. If You created one or more Modification(s) You + may add your name as a Contributor to the notice described in Exhibit + A. You must also duplicate this License in any documentation for the + Source Code where You describe recipients' rights or ownership rights + relating to Covered Code. You may choose to offer, and to charge a fee + for, warranty, support, indemnity or liability obligations to one or + more recipients of Covered Code. However, You may do so only on Your + own behalf, and not on behalf of the Initial Developer or any + Contributor. You must make it absolutely clear than any such warranty, + support, indemnity or liability obligation is offered by You alone, + and You hereby agree to indemnify the Initial Developer and every + Contributor for any liability incurred by the Initial Developer or such + Contributor as a result of warranty, support, indemnity or liability + terms You offer. + . + 3.6. Distribution of Executable Versions. + . + You may distribute Covered Code in Executable form only if the + requirements of Section 3.1-3.5 have been met for that Covered Code, + and if You include a notice stating that the Source Code version of the + Covered Code is available under the terms of this License, including a + description of how and where You have fulfilled the obligations of + Section 3.2. The notice must be conspicuously included in any notice in + an Executable version, related documentation or collateral in which You + describe recipients' rights relating to the Covered Code. You may + distribute the Executable version of Covered Code or ownership rights + under a license of Your choice, which may contain terms different from + this License, provided that You are in compliance with the terms of + this License and that the license for the Executable version does not + attempt to limit or alter the recipient's rights in the Source Code + version from the rights set forth in this License. If You distribute + the Executable version under a different license You must make it + absolutely clear that any terms which differ from this License are + offered by You alone, not by the Initial Developer or any Contributor. + You hereby agree to indemnify the Initial Developer and every + Contributor for any liability incurred by the Initial Developer or such + Contributor as a result of any such terms You offer. + . + 3.7. Larger Works. + - + You may create a Larger Work by combining Covered Code with other code + not governed by the terms of this License and distribute the Larger + Work as a single product. In such a case, You must make sure the + requirements of this License are fulfilled for the Covered Code. + . + 4. Inability to Comply Due to Statute or Regulation. + . + If it is impossible for You to comply with any of the terms of this + License with respect to some or all of the Covered Code due to statute, + judicial order, or regulation then You must: (a) comply with the terms + of this License to the maximum extent possible; and (b) describe the + limitations and the code they affect. Such description must be included + in the LEGAL file described in Section 3.4 and must be included with + all distributions of the Source Code. Except to the extent prohibited + by statute or regulation, such description must be sufficiently + detailed for a recipient of ordinary skill to be able to understand it. + . + 5. Application of this License. + . + This License applies to code to which the Initial Developer has + attached the notice in Exhibit A and to related Covered Code. + . + 6. Versions of the License. + . + 6.1. New Versions. + . + Netscape Communications Corporation ("Netscape") may publish revised + and/or new versions of the License from time to time. Each version will + be given a distinguishing version number. + . + 6.2. Effect of New Versions. + . + Once Covered Code has been published under a particular version of the + License, You may always continue to use it under the terms of that + version. You may also choose to use such Covered Code under the terms + of any subsequent version of the License published by Netscape. No one + other than Netscape has the right to modify the terms applicable to + Covered Code created under this License. + . + 6.3. Derivative Works. + . + If You create or use a modified version of this License (which you may + only do in order to apply it to code which is not already Covered Code + governed by this License), You must (a) rename Your license so that the + phrases "Mozilla", "MOZILLAPL", "MOZPL", "Netscape", "MPL", "NPL" or + any confusingly similar phrase do not appear in your license (except to + note that your license differs from this License) and (b) otherwise + make it clear that Your version of the license contains terms which + differ from the Mozilla Public License and Netscape Public License. + (Filling in the name of the Initial Developer, Original Code or + Contributor in the notice described in Exhibit A shall not of + themselves be deemed to be modifications of this License.) + . + 7. DISCLAIMER OF WARRANTY. + . + COVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN "AS IS" BASIS, + WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, + WITHOUT LIMITATION, WARRANTIES THAT THE COVERED CODE IS FREE OF + DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. + THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED CODE + IS WITH YOU. SHOULD ANY COVERED CODE PROVE DEFECTIVE IN ANY RESPECT, + YOU (NOT THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE + COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER + OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF + ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER. + . + 8. TERMINATION. + . + 8.1. This License and the rights granted hereunder will terminate + automatically if You fail to comply with terms herein and fail to cure + such breach within 30 days of becoming aware of the breach. All + sublicenses to the Covered Code which are properly granted shall + survive any termination of this License. Provisions which, by their + nature, must remain in effect beyond the termination of this License + shall survive. + . + 8.2. If You initiate litigation by asserting a patent infringement + claim (excluding declatory judgment actions) against Initial Developer + or a Contributor (the Initial Developer or Contributor against whom You + file such action is referred to as "Participant") alleging that: + (a) such Participant's Contributor Version directly or indirectly + infringes any patent, then any and all rights granted by such + Participant to You under Sections 2.1 and/or 2.2 of this License + shall, upon 60 days notice from Participant terminate + prospectively, unless if within 60 days after receipt of notice + You either: (i) agree in writing to pay Participant a mutually + agreeable reasonable royalty for Your past and future use of + Modifications made by such Participant, or (ii) withdraw Your + litigation claim with respect to the Contributor Version against + such Participant. If within 60 days of notice, a reasonable + royalty and payment arrangement are not mutually agreed upon in + writing by the parties or the litigation claim is not withdrawn, + the rights granted by Participant to You under Sections 2.1 and/or + 2.2 automatically terminate at the expiration of the 60 day notice + period specified above. + . + (b) any software, hardware, or device, other than such Participant's + Contributor Version, directly or indirectly infringes any patent, + then any rights granted to You by such Participant under Sections + 2.1(b) and 2.2(b) are revoked effective as of the date You first + made, used, sold, distributed, or had made, Modifications made by + that Participant. + . + 8.3. If You assert a patent infringement claim against Participant + alleging that such Participant's Contributor Version directly or + indirectly infringes any patent where such claim is resolved (such as + by license or settlement) prior to the initiation of patent + infringement litigation, then the reasonable value of the licenses + granted by such Participant under Sections 2.1 or 2.2 shall be taken + into account in determining the amount or value of any payment or + license. + . + 8.4. In the event of termination under Sections 8.1 or 8.2 above, all + end user license agreements (excluding distributors and resellers) + which have been validly granted by You or any distributor hereunder + prior to termination shall survive termination. + . + 9. LIMITATION OF LIABILITY. + . + UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT + (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE INITIAL + DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED CODE, + OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY + INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY + CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, + WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER + COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN + INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF + LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY + RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW + PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE + EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS + EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU. + . + 10. U.S. GOVERNMENT END USERS. + . + The Covered Code is a "commercial item," as that term is defined in 48 + C.F.R. 2.101 (Oct. 1995), consisting of "commercial computer software" + and "commercial computer software documentation," as such terms are + used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 + and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. + Government End Users acquire Covered Code with only those rights set + forth herein. + . + 11. MISCELLANEOUS. + . + This License represents the complete agreement concerning subject + matter hereof. If any provision of this License is held to be + unenforceable, such provision shall be reformed only to the extent + necessary to make it enforceable. This License shall be governed by + California law provisions (except to the extent applicable law, if any, + provides otherwise), excluding its conflict-of-law provisions. With + respect to disputes in which at least one party is a citizen of, or an + entity chartered or registered to do business in the United States of + America, any litigation relating to this License shall be subject to + the jurisdiction of the Federal Courts of the Northern District of + California, with venue lying in Santa Clara County, California, with + the losing party responsible for costs, including without limitation, + court costs and reasonable attorneys' fees and expenses. The + application of the United Nations Convention on Contracts for the + International Sale of Goods is expressly excluded. Any law or + regulation which provides that the language of a contract shall be + construed against the drafter shall not apply to this License. + . + 12. RESPONSIBILITY FOR CLAIMS. + . + As between Initial Developer and the Contributors, each party is + responsible for claims and damages arising, directly or indirectly, out + of its utilization of rights under this License and You agree to work + with Initial Developer and Contributors to distribute such + responsibility on an equitable basis. Nothing herein is intended or + shall be deemed to constitute any admission of liability. + . + 13. MULTIPLE-LICENSED CODE. + . + Initial Developer may designate portions of the Covered Code as + "Multiple-Licensed". "Multiple-Licensed" means that the Initial + Developer permits you to utilize portions of the Covered Code under + Your choice of the NPL or the alternative licenses, if any, specified + by the Initial Developer in the file described in Exhibit A. + . + EXHIBIT A -Mozilla Public License. + . + ``The contents of this file are subject to the Mozilla Public License + Version 1.1 (the "License"); you may not use this file except in + compliance with the License. You may obtain a copy of the License at + http://www.mozilla.org/MPL/ + . + Software distributed under the License is distributed on an "AS IS" + basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the + License for the specific language governing rights and limitations + under the License. + . + The Original Code is ______________________________________. + . + The Initial Developer of the Original Code is ________________________. + Portions created by ______________________ are Copyright (C) ______ + _______________________. All Rights Reserved. + . + Contributor(s): ______________________________________. + . + Alternatively, the contents of this file may be used under the terms of + the _____ license (the "[___] License"), in which case the provisions + of [______] License are applicable instead of those above. If you wish + to allow use of your version of this file only under the terms of the + [____] License and not to allow others to use your version of this file + under the MPL, indicate your decision by deleting the provisions above + and replace them with the notice and other provisions required by the + [___] License. If you do not delete the provisions above, a recipient + may use your version of this file under either the MPL or the [___] + License." + . + [NOTE: The text of this Exhibit A may differ slightly from the text of + the notices in the Source Code files of the Original Code. You should + use the text of this Exhibit A rather than the text found in the + Original Code Source Code for Your Modifications.] + . + ---------------------------------------------------------------------- + . + AMENDMENTS + . + The Netscape Public License Version 1.1 ("NPL") consists of the Mozilla + Public License Version 1.1 with the following Amendments, including + Exhibit A-Netscape Public License. Files identified with "Exhibit + A-Netscape Public License" are governed by the Netscape Public License + Version 1.1. + . + Additional Terms applicable to the Netscape Public License. + I. Effect. + These additional terms described in this Netscape Public License + -- Amendments shall apply to the Mozilla Communicator client code + and to all Covered Code under this License. + . + II. "Netscape's Branded Code" means Covered Code that Netscape + distributes and/or permits others to distribute under one or more + trademark(s) which are controlled by Netscape but which are not + licensed for use under this License. + . + III. Netscape and logo. + This License does not grant any rights to use the trademarks + "Netscape", the "Netscape N and horizon" logo or the "Netscape + lighthouse" logo, "Netcenter", "Gecko", "Java" or "JavaScript", + "Smart Browsing" even if such marks are included in the Original + Code or Modifications. + . + IV. Inability to Comply Due to Contractual Obligation. + Prior to licensing the Original Code under this License, Netscape + has licensed third party code for use in Netscape's Branded Code. + To the extent that Netscape is limited contractually from making + such third party code available under this License, Netscape may + choose to reintegrate such code into Covered Code without being + required to distribute such code in Source Code form, even if + such code would otherwise be considered "Modifications" under + this License. + . + V. Use of Modifications and Covered Code by Initial Developer. + V.1. In General. + The obligations of Section 3 apply to Netscape, except to + the extent specified in this Amendment, Section V.2 and V.3. + . + V.2. Other Products. + Netscape may include Covered Code in products other than the + Netscape's Branded Code which are released by Netscape during + the two (2) years following the release date of the Original + Code, without such additional products becoming subject to the + terms of this License, and may license such additional products + on different terms from those contained in this License. + . + V.3. Alternative Licensing. + Netscape may license the Source Code of Netscape's Branded Code, + including Modifications incorporated therein, without such + Netscape Branded Code becoming subject to the terms of this + License, and may license such Netscape Branded Code on different + terms from those contained in this License. + . + VI. Litigation. + Notwithstanding the limitations of Section 11 above, the + provisions regarding litigation in Section 11(a), (b) and (c) of + the License shall apply to all disputes relating to this + License. + . + EXHIBIT A-Netscape Public License. + . + "The contents of this file are subject to the Netscape Public License + Version 1.1 (the "License"); you may not use this file except in + compliance with the License. You may obtain a copy of the License at + http://www.mozilla.org/NPL/ + . + Software distributed under the License is distributed on an "AS IS" + basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the + License for the specific language governing rights and limitations + under the License. + . + The Original Code is Mozilla Communicator client code, released March + 31, 1998. + . + The Initial Developer of the Original Code is Netscape Communications + Corporation. Portions created by Netscape are Copyright (C) 1998-1999 + Netscape Communications Corporation. All Rights Reserved. + . + Contributor(s): ______________________________________. + . + Alternatively, the contents of this file may be used under the terms of + the _____ license (the "[___] License"), in which case the provisions + of [______] License are applicable instead of those above. If you + wish to allow use of your version of this file only under the terms of + the [____] License and not to allow others to use your version of this + file under the NPL, indicate your decision by deleting the provisions + above and replace them with the notice and other provisions required by + the [___] License. If you do not delete the provisions above, a + recipient may use your version of this file under either the NPL or the + [___] License." diff --git a/copyright_hints b/copyright_hints new file mode 100644 index 0000000..5fa83fa --- /dev/null +++ b/copyright_hints @@ -0,0 +1,4776 @@ +Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: FIXME +Upstream-Contact: FIXME +Source: FIXME +Disclaimer: Autogenerated by CDBS + +Files: AUTHORS + CMakeLists.txt + ChangeLog + Help/3vs2/Backwards-Compatibility.html + Help/3vs2/SC3vsSC2.html + Help/3vs2/Spawning.html + Help/3vs2/Sync-Async.html + Help/3vs2/SynthDefsVsSynths.html + Help/BinaryOps/absdif.html + Help/BinaryOps/addition.html + Help/BinaryOps/amclip.html + Help/BinaryOps/atan2.html + Help/BinaryOps/clip2.html + Help/BinaryOps/difsqr.html + Help/BinaryOps/division.html + Help/BinaryOps/excess.html + Help/BinaryOps/exponentiation.html + Help/BinaryOps/fold2.html + Help/BinaryOps/greaterorequalthan.html + Help/BinaryOps/greaterthan.html + Help/BinaryOps/hypot.html + Help/BinaryOps/hypotApx.html + Help/BinaryOps/lessorequalthan.html + Help/BinaryOps/lessthan.html + Help/BinaryOps/max.html + Help/BinaryOps/min.html + Help/BinaryOps/modulo.html + Help/BinaryOps/multiplication.html + Help/BinaryOps/pow.html + Help/BinaryOps/ring1.html + Help/BinaryOps/ring2.html + Help/BinaryOps/ring3.html + Help/BinaryOps/ring4.html + Help/BinaryOps/round.html + Help/BinaryOps/scaleneg.html + Help/BinaryOps/sqrdif.html + Help/BinaryOps/sqrsum.html + Help/BinaryOps/subtraction.html + Help/BinaryOps/sumsqr.html + Help/BinaryOps/thresh.html + Help/BinaryOps/trunc.html + Help/BinaryOps/wrap2.html + Help/Collections/Archive.html + Help/Collections/Array.html + Help/Collections/Array2D.html + Help/Collections/ArrayedCollection.html + Help/Collections/Association.html + Help/Collections/Bag.html + Help/Collections/Collection.html + Help/Collections/Collections.html + Help/Collections/Dictionary.html + Help/Collections/DoubleArray.html + Help/Collections/Environment.html + Help/Collections/Event.html + Help/Collections/Event_types.html + Help/Collections/FloatArray.html + Help/Collections/Harmonics.html + Help/Collections/IdentityBag.html + Help/Collections/IdentityDictionary.html + Help/Collections/IdentitySet.html + Help/Collections/Int16Array.html + Help/Collections/Int32Array.html + Help/Collections/Int8Array.html + Help/Collections/Interval.html + Help/Collections/Library.html + Help/Collections/LibraryBase.html + Help/Collections/LinkedList.html + Help/Collections/LinkedListNode.html + Help/Collections/List.html + Help/Collections/MultiLevelIdentityDictionary.html + Help/Collections/ObjectTable.html + Help/Collections/Order.html + Help/Collections/OrderedIdentitySet.html + Help/Collections/Pair.html + Help/Collections/Post.html + Help/Collections/PriorityQueue.html + Help/Collections/RawArray.html + Help/Collections/Scale.html + Help/Collections/SequenceableCollection.html + Help/Collections/Set.html + Help/Collections/Signal.html + Help/Collections/SortedList.html + Help/Collections/SparseArray.html + Help/Collections/String.html + Help/Collections/SymbolArray.html + Help/Collections/Tuning.html + Help/Collections/TwoWayIdentityDictionary.html + Help/Collections/Wavetable.html + Help/Collections/loadPaths example.scd + Help/Control/AbstractServerAction.html + Help/Control/CCResponder.html + Help/Control/CmdPeriod.html + Help/Control/ContiguousBlockAllocator.html + Help/Control/ControlSpec.html + Help/Control/Date.html + Help/Control/DebugNodeWatcher.html + Help/Control/Env.html + Help/Control/GeneralHID.html + Help/Control/GeneralHIDDevice.html + Help/Control/GeneralHIDSlot.html + Help/Control/GeneralHIDSpec.html + Help/Control/HIDDeviceService.html + Help/Control/IEnvGen.htm + Help/Control/InterplEnv.htm + Help/Control/InterplPairs.htm + Help/Control/InterplXYC.htm + Help/Control/MIDI.html + Help/Control/MIDIIn.html + Help/Control/MIDIOut.html + Help/Control/MIDIResponder.html + Help/Control/NetAddr.html + Help/Control/NodeWatcher.html + Help/Control/NoteOnResponder.html + Help/Control/NotificationCenter.html + Help/Control/OSCBundle.html + Help/Control/OSC_communication.html + Help/Control/OSCpathResponder.html + Help/Control/OSCresponder.html + Help/Control/OSCresponderNode.html + Help/Control/Score.html + Help/Control/SerialPort.html + Help/Control/ServerBoot.html + Help/Control/ServerQuit.html + Help/Control/ServerTree.html + Help/Control/Spec.html + Help/Control/StartUp.html + Help/Control/UsingMIDI.html + Help/Control/Warp.html + Help/Control/WiiMote.html + Help/Core/BinaryOpFunction.html + Help/Core/Boolean.html + Help/Core/Char.html + Help/Core/Error.html + Help/Core/Exception.html + Help/Core/False.html + Help/Core/Kernel/AbstractFunction.html + Help/Core/Kernel/Class.html + Help/Core/Kernel/Frame.html + Help/Core/Kernel/Function.html + Help/Core/Kernel/FunctionDef.html + Help/Core/Kernel/FunctionList.html + Help/Core/Kernel/Interpreter.html + Help/Core/Kernel/Main.html + Help/Core/Kernel/Method.html + Help/Core/Kernel/Process.html + Help/Core/Kernel/RawPointer.html + Help/Core/Kernel/Routine.html + Help/Core/Kernel/Thread.html + Help/Core/Kernel/Thunk.html + Help/Core/Kernel/initClass.html + Help/Core/Kernel/randomSeed.html + Help/Core/NAryOpFunction.html + Help/Core/Nil.html + Help/Core/Object.html + Help/Core/Ref.html + Help/Core/RefCopy.html + Help/Core/Symbol.html + Help/Core/True.html + Help/Core/UnaryOpFunction.html + Help/Core/UniqueID.html + Help/Core/if.html + Help/Core/loop.html + Help/Extending and Customizing SC/Creating-Standalone-Applications.html + Help/Extending and Customizing SC/Crossplatform.html + Help/Extending and Customizing SC/Helper/AutoClassHelper.html + Help/Extending and Customizing SC/Helper/HelpSearchResult.html + Help/Extending and Customizing SC/Helper/Helper.html + Help/Extending and Customizing SC/Modifying_Standalones.html + Help/Extending and Customizing SC/Notes-on-the-HTML-Help-System.html + Help/Extending and Customizing SC/Quarks/Quark.html + Help/Extending and Customizing SC/Quarks/Quarks.html + Help/Extending and Customizing SC/Style Guide/ClassHelpTemplate.html + Help/Extending and Customizing SC/Style Guide/Documentation Style Guide.html + Help/Extending and Customizing SC/Style Guide/TopicHelpTemplate.html + Help/Extending and Customizing SC/Style Guide/UGenHelpTemplate.html + Help/Extending and Customizing SC/Using-Extensions.html + Help/Extending and Customizing SC/Using-the-Startup-File.html + Help/Extending and Customizing SC/Writing Primitives.html + Help/Extending and Customizing SC/Writing-Classes.html + Help/Extending and Customizing SC/Writing_Unit_Generators.html + Help/Extending and Customizing SC/publishing_code.html + Help/Files/CSVFileReader.html + Help/Files/File.html + Help/Files/FileReader.html + Help/Files/PathName.html + Help/Files/Pipe.html + Help/Files/SoundFile.html + Help/Files/TabFileReader.html + Help/Files/UnixFILE.html + Help/GUI/Cocoa-GUI/CocoaMenuItem.html + Help/GUI/Cocoa-GUI/Document.html + Help/GUI/Cocoa-GUI/DocumentAutoCompletion.html + Help/GUI/Cocoa-GUI/SC2DSlider.html + Help/GUI/Cocoa-GUI/SC2DTabletSlider.html + Help/GUI/Cocoa-GUI/SCButton.html + Help/GUI/Cocoa-GUI/SCCompositeView.html + Help/GUI/Cocoa-GUI/SCContainerView.html + Help/GUI/Cocoa-GUI/SCControlView.html + Help/GUI/Cocoa-GUI/SCDragBoth.html + Help/GUI/Cocoa-GUI/SCDragSink.html + Help/GUI/Cocoa-GUI/SCDragSource.html + Help/GUI/Cocoa-GUI/SCDragView.html + Help/GUI/Cocoa-GUI/SCEnvelopeEdit.html + Help/GUI/Cocoa-GUI/SCEnvelopeView.html + Help/GUI/Cocoa-GUI/SCFreqScope.html + Help/GUI/Cocoa-GUI/SCFreqScopeWindow.html + Help/GUI/Cocoa-GUI/SCHLayoutView.html + Help/GUI/Cocoa-GUI/SCImage/SCImage.html + Help/GUI/Cocoa-GUI/SCImage/SCImageFilter.html + Help/GUI/Cocoa-GUI/SCImage/SCImageKernel.html + Help/GUI/Cocoa-GUI/SCImage/Swamp.png + Help/GUI/Cocoa-GUI/SCImage/icon.supercollider.png + Help/GUI/Cocoa-GUI/SCImage/vduck2.jpg + Help/GUI/Cocoa-GUI/SCKnob.html + Help/GUI/Cocoa-GUI/SCLayoutView.html + Help/GUI/Cocoa-GUI/SCLevelIndicator.html + Help/GUI/Cocoa-GUI/SCListView.html + Help/GUI/Cocoa-GUI/SCMenuGroup.html + Help/GUI/Cocoa-GUI/SCMenuItem.html + Help/GUI/Cocoa-GUI/SCMenuSeparator.html + Help/GUI/Cocoa-GUI/SCModalSheet.html + Help/GUI/Cocoa-GUI/SCModalWindow.html + Help/GUI/Cocoa-GUI/SCMovieView.html + Help/GUI/Cocoa-GUI/SCMultiSliderView.html + Help/GUI/Cocoa-GUI/SCNumberBox.html + Help/GUI/Cocoa-GUI/SCPen.html + Help/GUI/Cocoa-GUI/SCPopUpMenu.html + Help/GUI/Cocoa-GUI/SCQuartzComposerView/Cells.qtz + Help/GUI/Cocoa-GUI/SCQuartzComposerView/SCLevelMeter.qtz + Help/GUI/Cocoa-GUI/SCQuartzComposerView/SCQCSonogramCount2.qtz + Help/GUI/Cocoa-GUI/SCQuartzComposerView/SCQuartzComposerViewStructureTest.qtz + Help/GUI/Cocoa-GUI/SCQuartzComposerView/Stupid Pan.qtz + Help/GUI/Cocoa-GUI/SCRangeSlider.html + Help/GUI/Cocoa-GUI/SCScope.html + Help/GUI/Cocoa-GUI/SCScrollTopView.html + Help/GUI/Cocoa-GUI/SCScrollView.html + Help/GUI/Cocoa-GUI/SCSlider.html + Help/GUI/Cocoa-GUI/SCSliderBase.html + Help/GUI/Cocoa-GUI/SCSoundFileView.html + Help/GUI/Cocoa-GUI/SCStaticText.html + Help/GUI/Cocoa-GUI/SCStaticTextBase.html + Help/GUI/Cocoa-GUI/SCStethoscope.html + Help/GUI/Cocoa-GUI/SCTabletView.html + Help/GUI/Cocoa-GUI/SCTextField.html + Help/GUI/Cocoa-GUI/SCTextView.html + Help/GUI/Cocoa-GUI/SCTopView.html + Help/GUI/Cocoa-GUI/SCUserView.html + Help/GUI/Cocoa-GUI/SCUserViewSubclassing/SCUserView-Subclassing.html + Help/GUI/Cocoa-GUI/SCUserViewSubclassing/SCUserViewTutorial.sc + Help/GUI/Cocoa-GUI/SCVLayoutView.html + Help/GUI/Cocoa-GUI/SCView.html + Help/GUI/Cocoa-GUI/SCWindow.html + Help/GUI/Cocoa-GUI/SoundFileViewProgressWindow.html + Help/GUI/EZ-GUI/EZGui.html + Help/GUI/EZ-GUI/EZKnob.html + Help/GUI/EZ-GUI/EZListView.html + Help/GUI/EZ-GUI/EZLists.html + Help/GUI/EZ-GUI/EZNumber.html + Help/GUI/EZ-GUI/EZPopUpMenu.html + Help/GUI/EZ-GUI/EZRanger.html + Help/GUI/EZ-GUI/EZScroller.html + Help/GUI/EZ-GUI/EZSlider.html + Help/GUI/EZ-GUI/EZText.html + Help/GUI/FlowView.html + Help/GUI/GUI-Classes.html + Help/GUI/GUI-Overview.html + Help/GUI/GUI-Tools/Color.html + Help/GUI/GUI-Tools/FlowLayout.html + Help/GUI/GUI-Tools/GUI.html + Help/GUI/GUI-Tools/Gradient.html + Help/GUI/GUI-Tools/HiliteGradient.html + Help/GUI/GUI-Tools/Plotter.html + Help/GUI/GUI-Tools/Regenerate-GUI-Help.html + Help/GUI/GUI-Tools/SCFont.html + Help/GUI/GUI-Tools/ViewRedirect.html + Help/GUI/GUI-Tools/modifiers.html + Help/GUI/GUI-Tools/plot.html + Help/GUI/GUI-Tools/resize.html + Help/GUI/HistoryGui.htm + Help/GUI/Main-GUI/Button.html + Help/GUI/Main-GUI/CompositeView.html + Help/GUI/Main-GUI/Dialog.html + Help/GUI/Main-GUI/DragBoth.html + Help/GUI/Main-GUI/DragSink.html + Help/GUI/Main-GUI/DragSource.html + Help/GUI/Main-GUI/EnvelopeView.html + Help/GUI/Main-GUI/Font.html + Help/GUI/Main-GUI/FreqScope.html + Help/GUI/Main-GUI/FreqScopeView.html + Help/GUI/Main-GUI/HLayoutView.html + Help/GUI/Main-GUI/Knob.html + Help/GUI/Main-GUI/ListView.html + Help/GUI/Main-GUI/MovieView.html + Help/GUI/Main-GUI/MultiSliderView.html + Help/GUI/Main-GUI/NumberBox.html + Help/GUI/Main-GUI/Pen.html + Help/GUI/Main-GUI/PopUpMenu.html + Help/GUI/Main-GUI/RangeSlider.html + Help/GUI/Main-GUI/ScopeView.html + Help/GUI/Main-GUI/ScrollView.html + Help/GUI/Main-GUI/Slider.html + Help/GUI/Main-GUI/Slider2D.html + Help/GUI/Main-GUI/SoundFileView.html + Help/GUI/Main-GUI/StaticText.html + Help/GUI/Main-GUI/Stethoscope.html + Help/GUI/Main-GUI/StubTemplate.html + Help/GUI/Main-GUI/TabletSlider2D.html + Help/GUI/Main-GUI/TabletView.html + Help/GUI/Main-GUI/TextField.html + Help/GUI/Main-GUI/TextView.html + Help/GUI/Main-GUI/UserView.html + Help/GUI/Main-GUI/VLayoutView.html + Help/GUI/Main-GUI/View.html + Help/GUI/Main-GUI/Window.html + Help/GUI/SimpleController.html + Help/GUI/guicrucial/ObjectGui.html + Help/GUI/guicrucial/gui.html + Help/Geometry/Point.html + Help/Geometry/Rect.html + Help/Glossary.html + Help/Help.html + Help/Language/Adverbs.html + Help/Language/Assignment.html + Help/Language/Classes.html + Help/Language/Comments.html + Help/Language/Control-Structures.html + Help/Language/Debugging-tips.html + Help/Language/Expression-Sequence.html + Help/Language/Functions.html + Help/Language/Intro-to-Objects.html + Help/Language/J_concepts_in_SC.html + Help/Language/ListComprehensions.html + Help/Language/Literals.html + Help/Language/Method-Calls.html + Help/Language/Operators.html + Help/Language/Partial-Application.html + Help/Language/Polymorphism.html + Help/Language/Scope.html + Help/Language/SymbolicNotations.html + Help/Language/Syntax-Shortcuts.html + Help/Language/Understanding-Errors.html + Help/Language/attachments/Functions/functions.png + Help/Language/isKindOf.htm + Help/Language/switch.htm + Help/Libraries/JITLib/GUI/EnvirGui.html + Help/Libraries/JITLib/GUI/JITGui.html + Help/Libraries/JITLib/GUI/MonitorGui.html + Help/Libraries/JITLib/GUI/NdefGui.html + Help/Libraries/JITLib/GUI/NdefMixer.html + Help/Libraries/JITLib/GUI/NdefMixerOld.html + Help/Libraries/JITLib/GUI/NdefParamGui.html + Help/Libraries/JITLib/GUI/NodeProxyEditor.html + Help/Libraries/JITLib/GUI/PdefAllGui.html + Help/Libraries/JITLib/GUI/PdefEditor.html + Help/Libraries/JITLib/GUI/PdefGui.html + Help/Libraries/JITLib/GUI/ProxyMixer.html + Help/Libraries/JITLib/GUI/ProxyMixerOld.html + Help/Libraries/JITLib/GUI/ProxyMonitorGui.html + Help/Libraries/JITLib/GUI/SkipJack.html + Help/Libraries/JITLib/GUI/TaskProxyGui.html + Help/Libraries/JITLib/GUI/TdefAllGui.html + Help/Libraries/JITLib/GUI/TdefEditor.html + Help/Libraries/JITLib/GUI/TdefGui.html + Help/Libraries/JITLib/GUI/softPut.html + Help/Libraries/JITLib/GUI/softSet.html + Help/Libraries/JITLib/GUI/softVol_.html + Help/Libraries/JITLib/JITLib.html + Help/Libraries/JITLib/Patterns/EventPatternProxy.html + Help/Libraries/JITLib/Patterns/Fdef.html + Help/Libraries/JITLib/Patterns/PatternProxy.html + Help/Libraries/JITLib/Patterns/PbindProxy.html + Help/Libraries/JITLib/Patterns/Pbindef.html + Help/Libraries/JITLib/Patterns/Pdef.html + Help/Libraries/JITLib/Patterns/Pdefn.html + Help/Libraries/JITLib/Patterns/Pdict.html + Help/Libraries/JITLib/Patterns/Pnsym.html + Help/Libraries/JITLib/Patterns/Psym.html + Help/Libraries/JITLib/Patterns/TaskProxy.html + Help/Libraries/JITLib/Patterns/Tdef.html + Help/Libraries/JITLib/environments/EnvironmentRedirect.html + Help/Libraries/JITLib/environments/LazyEnvir.html + Help/Libraries/JITLib/environments/Maybe.html + Help/Libraries/JITLib/environments/ProxySpace.html + Help/Libraries/JITLib/nodeproxy/BusPlug.html + Help/Libraries/JITLib/nodeproxy/EnvGate.html + Help/Libraries/JITLib/nodeproxy/Monitor.html + Help/Libraries/JITLib/nodeproxy/Ndef.html + Help/Libraries/JITLib/nodeproxy/NodeMap.html + Help/Libraries/JITLib/nodeproxy/NodeProxy.html + Help/Libraries/JITLib/nodeproxy/NodeProxy_roles.html + Help/Libraries/JITLib/nodeproxy/ProxySynthDef.html + Help/Libraries/JITLib/nodeproxy/RecNodeProxy.html + Help/Libraries/JITLib/nodeproxy/TempoBusClock.html + Help/Libraries/JITLib/nodeproxy/playN.html + Help/Libraries/JITLib/tutorials/audio_rate_mapping.html + Help/Libraries/JITLib/tutorials/basic_live_coding_techniques.html + Help/Libraries/JITLib/tutorials/jitlib_asCompileString.html + Help/Libraries/JITLib/tutorials/jitlib_basic_concepts_01.html + Help/Libraries/JITLib/tutorials/jitlib_basic_concepts_02.html + Help/Libraries/JITLib/tutorials/jitlib_basic_concepts_03.html + Help/Libraries/JITLib/tutorials/jitlib_basic_concepts_04.html + Help/Libraries/JITLib/tutorials/jitlib_efficiency.html + Help/Libraries/JITLib/tutorials/jitlib_fading.html + Help/Libraries/JITLib/tutorials/proxyspace_examples.html + Help/Libraries/JITLib/tutorials/recursive_phrasing.html + Help/Libraries/JITLib/tutorials/the_lazy_proxy.html + Help/Linux/EmacsEditor.html + Help/Linux/EmacsGUI.help.scd + Help/Linux/LID.html + Help/Linux/Linux_udev_setup.help.scd + Help/Math/Complex.html + Help/Math/Float.html + Help/Math/Infinitum.html + Help/Math/Integer.html + Help/Math/Magnitude.html + Help/Math/Number.html + Help/Math/Polar.html + Help/Math/SimpleNumber.html + Help/More-On-Getting-Help.html + Help/Other Topics/HelpDocsLicensing.html + Help/Other Topics/Internal-Snooping.html + Help/Other Topics/MultiChannel.html + Help/Other Topics/Non-Realtime-Synthesis.html + Help/Other Topics/Randomness.html + Help/Other Topics/Shortcuts.html + Help/Other Topics/Tracing Processes.html + Help/Other Topics/Undocumented-Classes.html + Help/Other Topics/asTarget.html + Help/Other Topics/play.html + Help/Other Topics/usingTheWiki/WikiUsage.html + Help/Other Topics/usingTheWiki/dir/runMe2.html + Help/Other Topics/usingTheWiki/dir/somepage.html + Help/Other Topics/usingTheWiki/runMe.html + Help/Platform/Platform.html + Help/Scheduling/AppClock.html + Help/Scheduling/Clock.html + Help/Scheduling/Condition.html + Help/Scheduling/Quant.html + Help/Scheduling/Scheduler.html + Help/Scheduling/Semaphore.html + Help/Scheduling/SystemClock.html + Help/Scheduling/Task.html + Help/Scheduling/TempoClock.html + Help/ServerArchitecture/Buffer.html + Help/ServerArchitecture/Bus.html + Help/ServerArchitecture/ClientVsServer.html + Help/ServerArchitecture/Group.html + Help/ServerArchitecture/Node.html + Help/ServerArchitecture/NodeControl.html + Help/ServerArchitecture/NodeMessaging.html + Help/ServerArchitecture/Order-of-execution.html + Help/ServerArchitecture/RootNode.html + Help/ServerArchitecture/Server.html + Help/ServerArchitecture/ServerOptions.html + Help/ServerArchitecture/ServerTiming.html + Help/ServerArchitecture/Synth.html + Help/ServerArchitecture/SynthDef.html + Help/ServerArchitecture/SynthDesc.html + Help/ServerArchitecture/SynthDescLib.html + Help/ServerArchitecture/Volume.html + Help/ServerArchitecture/bundledCommands.html + Help/ServerArchitecture/cmds.html + Help/ServerArchitecture/default_group.html + Help/Streams-Patterns-Events/A Practical Guide/PG_01_Introduction.html + Help/Streams-Patterns-Events/A Practical Guide/PG_02_Basic_Vocabulary.html + Help/Streams-Patterns-Events/A Practical Guide/PG_03_What_Is_Pbind.html + Help/Streams-Patterns-Events/A Practical Guide/PG_04_Words_to_Phrases.html + Help/Streams-Patterns-Events/A Practical Guide/PG_05_Math_on_Patterns.html + Help/Streams-Patterns-Events/A Practical Guide/PG_060_Filter_Patterns.html + Help/Streams-Patterns-Events/A Practical Guide/PG_06a_Repetition_Contraint_Patterns.html + Help/Streams-Patterns-Events/A Practical Guide/PG_06b_Time_Based_Patterns.html + Help/Streams-Patterns-Events/A Practical Guide/PG_06c_Composition_of_Patterns.html + Help/Streams-Patterns-Events/A Practical Guide/PG_06d_Parallel_Patterns.html + Help/Streams-Patterns-Events/A Practical Guide/PG_06e_Language_Control.html + Help/Streams-Patterns-Events/A Practical Guide/PG_06f_Server_Control.html + Help/Streams-Patterns-Events/A Practical Guide/PG_06g_Data_Sharing.html + Help/Streams-Patterns-Events/A Practical Guide/PG_07_Value_Conversions.html + Help/Streams-Patterns-Events/A Practical Guide/PG_08_Event_Types_and_Parameters.html + Help/Streams-Patterns-Events/A Practical Guide/PG_Cookbook01_Basic_Sequencing.html + Help/Streams-Patterns-Events/A Practical Guide/PG_Cookbook02_Manipulating_Patterns.html + Help/Streams-Patterns-Events/A Practical Guide/PG_Cookbook03_External_Control.html + Help/Streams-Patterns-Events/A Practical Guide/PG_Cookbook04_Sending_MIDI.html + Help/Streams-Patterns-Events/A Practical Guide/PG_Cookbook05_Using_Samples.html + Help/Streams-Patterns-Events/A Practical Guide/PG_Cookbook06_Phrase_Network.html + Help/Streams-Patterns-Events/A Practical Guide/PG_Cookbook07_Rhythmic_Variations.html + Help/Streams-Patterns-Events/A Practical Guide/PG_Ref01_Pattern_Internals.html + Help/Streams-Patterns-Events/BinaryOpStream.html + Help/Streams-Patterns-Events/EventStream.html + Help/Streams-Patterns-Events/EventStreamPlayer.html + Help/Streams-Patterns-Events/History.html + Help/Streams-Patterns-Events/NAryOpStream.html + Help/Streams-Patterns-Events/NodeEvent.html + Help/Streams-Patterns-Events/Patterns/FilterPattern.html + Help/Streams-Patterns-Events/Patterns/ListPattern.html + Help/Streams-Patterns-Events/Patterns/Padd.html + Help/Streams-Patterns-Events/Patterns/Paddp.html + Help/Streams-Patterns-Events/Patterns/Paddpre.html + Help/Streams-Patterns-Events/Patterns/Pattern.html + Help/Streams-Patterns-Events/Patterns/PatternConductor.html + Help/Streams-Patterns-Events/Patterns/PatternsDocumentedAndNot.html + Help/Streams-Patterns-Events/Patterns/Pavaroh.html + Help/Streams-Patterns-Events/Patterns/Pbeta.html + Help/Streams-Patterns-Events/Patterns/Pbind.html + Help/Streams-Patterns-Events/Patterns/Pbindf.html + Help/Streams-Patterns-Events/Patterns/Pbinop.html + Help/Streams-Patterns-Events/Patterns/Pbrown.html + Help/Streams-Patterns-Events/Patterns/Pbus.html + Help/Streams-Patterns-Events/Patterns/Pcauchy.html + Help/Streams-Patterns-Events/Patterns/Pchain.html + Help/Streams-Patterns-Events/Patterns/Pclutch.html + Help/Streams-Patterns-Events/Patterns/Pcollect.html + Help/Streams-Patterns-Events/Patterns/Pconst.html + Help/Streams-Patterns-Events/Patterns/PdegreeToKey.html + Help/Streams-Patterns-Events/Patterns/Pdfsm.html + Help/Streams-Patterns-Events/Patterns/PdurStutter.html + Help/Streams-Patterns-Events/Patterns/Penvir.html + Help/Streams-Patterns-Events/Patterns/Pexprand.html + Help/Streams-Patterns-Events/Patterns/Pfin.html + Help/Streams-Patterns-Events/Patterns/Pfindur.html + Help/Streams-Patterns-Events/Patterns/Pfinval.html + Help/Streams-Patterns-Events/Patterns/Pflow.html + Help/Streams-Patterns-Events/Patterns/Pfset.html + Help/Streams-Patterns-Events/Patterns/Pfsm.html + Help/Streams-Patterns-Events/Patterns/Pfunc.html + Help/Streams-Patterns-Events/Patterns/Pfuncn.html + Help/Streams-Patterns-Events/Patterns/Pfx.html + Help/Streams-Patterns-Events/Patterns/Pfxb.html + Help/Streams-Patterns-Events/Patterns/Pgate.html + Help/Streams-Patterns-Events/Patterns/Pgauss.html + Help/Streams-Patterns-Events/Patterns/Pgbrown.html + Help/Streams-Patterns-Events/Patterns/Pgeom.html + Help/Streams-Patterns-Events/Patterns/Pgpar.html + Help/Streams-Patterns-Events/Patterns/Pgroup.html + Help/Streams-Patterns-Events/Patterns/Phid.html + Help/Streams-Patterns-Events/Patterns/PhidKey.html + Help/Streams-Patterns-Events/Patterns/PhidSlot.html + Help/Streams-Patterns-Events/Patterns/Phprand.html + Help/Streams-Patterns-Events/Patterns/Pif.html + Help/Streams-Patterns-Events/Patterns/Pindex.html + Help/Streams-Patterns-Events/Patterns/Pkey.html + Help/Streams-Patterns-Events/Patterns/Place.html + Help/Streams-Patterns-Events/Patterns/Plambda.html + Help/Streams-Patterns-Events/Patterns/Plazy.html + Help/Streams-Patterns-Events/Patterns/PlazyEnvir.html + Help/Streams-Patterns-Events/Patterns/PlazyEnvirN.html + Help/Streams-Patterns-Events/Patterns/Plprand.html + Help/Streams-Patterns-Events/Patterns/Pmeanrand.html + Help/Streams-Patterns-Events/Patterns/Pmono.html + Help/Streams-Patterns-Events/Patterns/PmonoArtic.html + Help/Streams-Patterns-Events/Patterns/Pmul.html + Help/Streams-Patterns-Events/Patterns/Pmulp.html + Help/Streams-Patterns-Events/Patterns/Pmulpre.html + Help/Streams-Patterns-Events/Patterns/Pn.html + Help/Streams-Patterns-Events/Patterns/Pnaryop.html + Help/Streams-Patterns-Events/Patterns/Ppar.html + Help/Streams-Patterns-Events/Patterns/Ppatlace.html + Help/Streams-Patterns-Events/Patterns/Ppatmod.html + Help/Streams-Patterns-Events/Patterns/Ppoisson.html + Help/Streams-Patterns-Events/Patterns/Pprob.html + Help/Streams-Patterns-Events/Patterns/Pprotect.html + Help/Streams-Patterns-Events/Patterns/Pproto.html + Help/Streams-Patterns-Events/Patterns/Prand.html + Help/Streams-Patterns-Events/Patterns/Preject.html + Help/Streams-Patterns-Events/Patterns/Prewrite.html + Help/Streams-Patterns-Events/Patterns/Prorate.html + Help/Streams-Patterns-Events/Patterns/Prout.html + Help/Streams-Patterns-Events/Patterns/Proutine.html + Help/Streams-Patterns-Events/Patterns/Pseed.html + Help/Streams-Patterns-Events/Patterns/Pseg.html + Help/Streams-Patterns-Events/Patterns/Pselect.html + Help/Streams-Patterns-Events/Patterns/Pseq.html + Help/Streams-Patterns-Events/Patterns/Pser.html + Help/Streams-Patterns-Events/Patterns/Pseries.html + Help/Streams-Patterns-Events/Patterns/Pset.html + Help/Streams-Patterns-Events/Patterns/Psetp.html + Help/Streams-Patterns-Events/Patterns/Psetpre.html + Help/Streams-Patterns-Events/Patterns/Pshuf.html + Help/Streams-Patterns-Events/Patterns/Pslide.html + Help/Streams-Patterns-Events/Patterns/Pspawn.html + Help/Streams-Patterns-Events/Patterns/Pspawner.html + Help/Streams-Patterns-Events/Patterns/Pstep.html + Help/Streams-Patterns-Events/Patterns/PstepNadd.html + Help/Streams-Patterns-Events/Patterns/PstepNfunc.html + Help/Streams-Patterns-Events/Patterns/Pstutter.html + Help/Streams-Patterns-Events/Patterns/Pswitch.html + Help/Streams-Patterns-Events/Patterns/Pswitch1.html + Help/Streams-Patterns-Events/Patterns/Psync.html + Help/Streams-Patterns-Events/Patterns/Ptime.html + Help/Streams-Patterns-Events/Patterns/Ptpar.html + Help/Streams-Patterns-Events/Patterns/Ptuple.html + Help/Streams-Patterns-Events/Patterns/Punop.html + Help/Streams-Patterns-Events/Patterns/Pwalk.html + Help/Streams-Patterns-Events/Patterns/Pwhile.html + Help/Streams-Patterns-Events/Patterns/Pwhite.html + Help/Streams-Patterns-Events/Patterns/Pwrand.html + Help/Streams-Patterns-Events/Patterns/Pwrap.html + Help/Streams-Patterns-Events/Patterns/Pxrand.html + Help/Streams-Patterns-Events/Stream.html + Help/Streams-Patterns-Events/StreamClutch.html + Help/Streams-Patterns-Events/Streams-Patterns-Events1.html + Help/Streams-Patterns-Events/Streams-Patterns-Events2.html + Help/Streams-Patterns-Events/Streams-Patterns-Events3.html + Help/Streams-Patterns-Events/Streams-Patterns-Events4.html + Help/Streams-Patterns-Events/Streams-Patterns-Events5.html + Help/Streams-Patterns-Events/Streams-Patterns-Events6.html + Help/Streams-Patterns-Events/Streams-Patterns-Events7.html + Help/Streams-Patterns-Events/Streams.html + Help/Streams-Patterns-Events/UnaryOpStream.html + Help/Tutorials/Getting-Started/Buffers.html + Help/Tutorials/Getting-Started/Busses.html + Help/Tutorials/Getting-Started/First Steps.html + Help/Tutorials/Getting-Started/Functions and Other Functionality.html + Help/Tutorials/Getting-Started/Functions and Sound.html + Help/Tutorials/Getting-Started/Getting Help.html + Help/Tutorials/Getting-Started/Getting Started With SC.html + Help/Tutorials/Getting-Started/Groups.html + Help/Tutorials/Getting-Started/Introductory Remarks.html + Help/Tutorials/Getting-Started/Mix it Up.html + Help/Tutorials/Getting-Started/Presented in Living Stereo.html + Help/Tutorials/Getting-Started/Scheduling Events.html + Help/Tutorials/Getting-Started/Scoping and Plotting.html + Help/Tutorials/Getting-Started/Sequencing with Patterns.html + Help/Tutorials/Getting-Started/Sequencing with Routines and Tasks.html + Help/Tutorials/Getting-Started/Start Your Engines.html + Help/Tutorials/Getting-Started/SynthDefs and Synths.html + Help/Tutorials/Getting-Started/attachments/Functions and Sound/Pasted Graphic 2.png + Help/Tutorials/Getting-Started/attachments/Functions and Sound/Pasted Graphic 3.png + Help/Tutorials/Getting-Started/attachments/Functions and Sound/Pasted Graphic 4.png + Help/Tutorials/Getting-Started/attachments/Functions and Sound/Pasted Graphic.png + Help/Tutorials/Getting-Started/attachments/Scoping and Plotting/Pasted Graphic 1.png + Help/Tutorials/How-to-Use-the-Interpreter.html + Help/Tutorials/Mark_Polishook_tutorial/Debugging/1_Debugging.html + Help/Tutorials/Mark_Polishook_tutorial/Debugging/2_Syntax_errors.html + Help/Tutorials/Mark_Polishook_tutorial/Debugging/3_Runtime_errors.html + Help/Tutorials/Mark_Polishook_tutorial/First_steps/1_Startup.html + Help/Tutorials/Mark_Polishook_tutorial/First_steps/2_Evaluating_code.html + Help/Tutorials/Mark_Polishook_tutorial/First_steps/3_Comments.html + Help/Tutorials/Mark_Polishook_tutorial/First_steps/4_Help.html + Help/Tutorials/Mark_Polishook_tutorial/Introductory_tutorial.html + Help/Tutorials/Mark_Polishook_tutorial/Synthesis (Japanese version)/I. Synthesis/0.html + Help/Tutorials/Mark_Polishook_tutorial/Synthesis (Japanese version)/I. Synthesis/1.html + Help/Tutorials/Mark_Polishook_tutorial/Synthesis (Japanese version)/I. Synthesis/10.html + Help/Tutorials/Mark_Polishook_tutorial/Synthesis (Japanese version)/I. Synthesis/11.html + Help/Tutorials/Mark_Polishook_tutorial/Synthesis (Japanese version)/I. Synthesis/12.html + Help/Tutorials/Mark_Polishook_tutorial/Synthesis (Japanese version)/I. Synthesis/13.html + Help/Tutorials/Mark_Polishook_tutorial/Synthesis (Japanese version)/I. Synthesis/14.html + Help/Tutorials/Mark_Polishook_tutorial/Synthesis (Japanese version)/I. Synthesis/15.html + Help/Tutorials/Mark_Polishook_tutorial/Synthesis (Japanese version)/I. Synthesis/2.html + Help/Tutorials/Mark_Polishook_tutorial/Synthesis (Japanese version)/I. Synthesis/3.html + Help/Tutorials/Mark_Polishook_tutorial/Synthesis (Japanese version)/I. Synthesis/4.html + Help/Tutorials/Mark_Polishook_tutorial/Synthesis (Japanese version)/I. Synthesis/5.html + Help/Tutorials/Mark_Polishook_tutorial/Synthesis (Japanese version)/I. Synthesis/6.html + Help/Tutorials/Mark_Polishook_tutorial/Synthesis (Japanese version)/I. Synthesis/7.html + Help/Tutorials/Mark_Polishook_tutorial/Synthesis (Japanese version)/I. Synthesis/8.html + Help/Tutorials/Mark_Polishook_tutorial/Synthesis (Japanese version)/I. Synthesis/9.html + Help/Tutorials/Mark_Polishook_tutorial/Synthesis (Japanese version)/README (Japanese) + Help/Tutorials/Mark_Polishook_tutorial/Synthesis/10_Subtractive_synthesis.html + Help/Tutorials/Mark_Polishook_tutorial/Synthesis/11_Groups.html + Help/Tutorials/Mark_Polishook_tutorial/Synthesis/12_Playbuf.html + Help/Tutorials/Mark_Polishook_tutorial/Synthesis/13_Delays_reverbs.html + Help/Tutorials/Mark_Polishook_tutorial/Synthesis/14_Frequency_modulation.html + Help/Tutorials/Mark_Polishook_tutorial/Synthesis/15_Scheduling.html + Help/Tutorials/Mark_Polishook_tutorial/Synthesis/1_The_network.html + Help/Tutorials/Mark_Polishook_tutorial/Synthesis/2_Prerequisites.html + Help/Tutorials/Mark_Polishook_tutorial/Synthesis/3_SynthDefs.html + Help/Tutorials/Mark_Polishook_tutorial/Synthesis/4_Rates.html + Help/Tutorials/Mark_Polishook_tutorial/Synthesis/5_Buses.html + Help/Tutorials/Mark_Polishook_tutorial/Synthesis/6_Controls.html + Help/Tutorials/Mark_Polishook_tutorial/Synthesis/7_Test_functions.html + Help/Tutorials/Mark_Polishook_tutorial/Synthesis/8_UnaryOp_synthesis.html + Help/Tutorials/Mark_Polishook_tutorial/Synthesis/9_BinaryOp_synthesis.html + Help/Tutorials/Tutorial.html + Help/Tutorials/UGens-and-Synths.html + Help/UGens/Algebraic/BasicOpUGen.html + Help/UGens/Algebraic/BinaryOpUGen.html + Help/UGens/Algebraic/UnaryOpUGen.html + Help/UGens/Analysis/Amplitude.html + Help/UGens/Analysis/Compander.html + Help/UGens/Analysis/Pitch.html + Help/UGens/Analysis/RunningSum.html + Help/UGens/Analysis/Slope.html + Help/UGens/Analysis/ZeroCrossing.html + Help/UGens/Chaos/CuspL.html + Help/UGens/Chaos/CuspN.html + Help/UGens/Chaos/FBSineC.html + Help/UGens/Chaos/FBSineL.html + Help/UGens/Chaos/FBSineN.html + Help/UGens/Chaos/GbmanL.html + Help/UGens/Chaos/GbmanN.html + Help/UGens/Chaos/HenonC.html + Help/UGens/Chaos/HenonL.html + Help/UGens/Chaos/HenonN.html + Help/UGens/Chaos/LatoocarfianC.html + Help/UGens/Chaos/LatoocarfianL.html + Help/UGens/Chaos/LatoocarfianN.html + Help/UGens/Chaos/LinCongC.html + Help/UGens/Chaos/LinCongL.html + Help/UGens/Chaos/LinCongN.html + Help/UGens/Chaos/LorenzL.html + Help/UGens/Chaos/QuadC.html + Help/UGens/Chaos/QuadL.html + Help/UGens/Chaos/QuadN.html + Help/UGens/Chaos/StandardL.html + Help/UGens/Chaos/StandardN.html + Help/UGens/ChaosGen.html + Help/UGens/Delays/AllpassC.html + Help/UGens/Delays/AllpassL.html + Help/UGens/Delays/AllpassN.html + Help/UGens/Delays/BufAllpassC.html + Help/UGens/Delays/BufAllpassL.html + Help/UGens/Delays/BufAllpassN.html + Help/UGens/Delays/BufCombC.html + Help/UGens/Delays/BufCombL.html + Help/UGens/Delays/BufCombN.html + Help/UGens/Delays/BufDelayC.html + Help/UGens/Delays/BufDelayL.html + Help/UGens/Delays/BufDelayN.html + Help/UGens/Delays/CombC.html + Help/UGens/Delays/CombL.html + Help/UGens/Delays/CombN.html + Help/UGens/Delays/DelTapRd.htm + Help/UGens/Delays/DelTapWr.htm + Help/UGens/Delays/Delay1.html + Help/UGens/Delays/Delay2.html + Help/UGens/Delays/DelayC.html + Help/UGens/Delays/DelayL.html + Help/UGens/Delays/DelayN.html + Help/UGens/Delays/MultiTap.html + Help/UGens/Delays/PingPong.html + Help/UGens/Delays/PitchShift.html + Help/UGens/Delays/Pluck.html + Help/UGens/Delays/Tap.html + Help/UGens/FFT/Convolution.html + Help/UGens/FFT/Convolution2.html + Help/UGens/FFT/Convolution2L.html + Help/UGens/FFT/Convolution3.html + Help/UGens/FFT/FFT Overview.html + Help/UGens/FFT/FFT.html + Help/UGens/FFT/FFTTrigger.html + Help/UGens/FFT/IFFT.html + Help/UGens/FFT/PV_Add.html + Help/UGens/FFT/PV_BinScramble.html + Help/UGens/FFT/PV_BinShift.html + Help/UGens/FFT/PV_BinWipe.html + Help/UGens/FFT/PV_BrickWall.html + Help/UGens/FFT/PV_ConformalMap.html + Help/UGens/FFT/PV_Conj.html + Help/UGens/FFT/PV_Copy.html + Help/UGens/FFT/PV_CopyPhase.html + Help/UGens/FFT/PV_Diffuser.html + Help/UGens/FFT/PV_Div.html + Help/UGens/FFT/PV_HainsworthFoote.html + Help/UGens/FFT/PV_JensenAndersen.html + Help/UGens/FFT/PV_LocalMax.html + Help/UGens/FFT/PV_MagAbove.html + Help/UGens/FFT/PV_MagBelow.html + Help/UGens/FFT/PV_MagClip.html + Help/UGens/FFT/PV_MagDiv.html + Help/UGens/FFT/PV_MagFreeze.html + Help/UGens/FFT/PV_MagMul.html + Help/UGens/FFT/PV_MagNoise.html + Help/UGens/FFT/PV_MagShift.html + Help/UGens/FFT/PV_MagSmear.html + Help/UGens/FFT/PV_MagSquared.html + Help/UGens/FFT/PV_Max.html + Help/UGens/FFT/PV_Min.html + Help/UGens/FFT/PV_Mul.html + Help/UGens/FFT/PV_PhaseShift.html + Help/UGens/FFT/PV_PhaseShift270.html + Help/UGens/FFT/PV_PhaseShift90.html + Help/UGens/FFT/PV_RandComb.html + Help/UGens/FFT/PV_RandWipe.html + Help/UGens/FFT/PV_RectComb.html + Help/UGens/FFT/PV_RectComb2.html + Help/UGens/FFT/PackFFT.html + Help/UGens/FFT/PartConv.html + Help/UGens/FFT/SpecCentroid.html + Help/UGens/FFT/SpecFlatness.html + Help/UGens/FFT/SpecPcile.html + Help/UGens/FFT/StereoConvolution2L.html + Help/UGens/FFT/Unpack1FFT.html + Help/UGens/FFT/UnpackFFT.html + Help/UGens/FFT/pvcalc.html + Help/UGens/FFT/pvcalc2.html + Help/UGens/FFT/pvcollect.html + Help/UGens/Filter.html + Help/UGens/Filters/AmpComp.html + Help/UGens/Filters/AmpCompA.html + Help/UGens/Filters/BEQSuite/BAllPass.html + Help/UGens/Filters/BEQSuite/BBandPass.html + Help/UGens/Filters/BEQSuite/BBandStop.html + Help/UGens/Filters/BEQSuite/BEQSuite.html + Help/UGens/Filters/BEQSuite/BHiPass.html + Help/UGens/Filters/BEQSuite/BHiPass4.html + Help/UGens/Filters/BEQSuite/BHiShelf.html + Help/UGens/Filters/BEQSuite/BLowPass.html + Help/UGens/Filters/BEQSuite/BLowPass4.html + Help/UGens/Filters/BEQSuite/BLowShelf.html + Help/UGens/Filters/BEQSuite/BPeakEQ.html + Help/UGens/Filters/BPF.html + Help/UGens/Filters/BPZ2.html + Help/UGens/Filters/BRF.html + Help/UGens/Filters/BRZ2.html + Help/UGens/Filters/Changed.html + Help/UGens/Filters/Clip.html + Help/UGens/Filters/DynKlank.html + Help/UGens/Filters/FOS.html + Help/UGens/Filters/Fold.html + Help/UGens/Filters/Formlet.html + Help/UGens/Filters/FreqShift.html + Help/UGens/Filters/HPF.html + Help/UGens/Filters/HPZ1.html + Help/UGens/Filters/HPZ2.html + Help/UGens/Filters/Klank.html + Help/UGens/Filters/LPF.html + Help/UGens/Filters/LPZ1.html + Help/UGens/Filters/LPZ2.html + Help/UGens/Filters/Lag.html + Help/UGens/Filters/Lag2.html + Help/UGens/Filters/Lag2UD.html + Help/UGens/Filters/Lag3.html + Help/UGens/Filters/Lag3UD.html + Help/UGens/Filters/LagUD.html + Help/UGens/Filters/LeakDC.html + Help/UGens/Filters/Limiter.html + Help/UGens/Filters/LinExp.html + Help/UGens/Filters/LinLin.html + Help/UGens/Filters/Median.html + Help/UGens/Filters/MidEQ.html + Help/UGens/Filters/MoogFF.html + Help/UGens/Filters/MulAdd.html + Help/UGens/Filters/Normalizer.html + Help/UGens/Filters/OnePole.html + Help/UGens/Filters/OneZero.html + Help/UGens/Filters/RHPF.html + Help/UGens/Filters/RLPF.html + Help/UGens/Filters/Ramp.html + Help/UGens/Filters/Resonz.html + Help/UGens/Filters/Ringz.html + Help/UGens/Filters/SOS.html + Help/UGens/Filters/TwoPole.html + Help/UGens/Filters/TwoZero.html + Help/UGens/Filters/Wrap.html + Help/UGens/Generators/Granular/GrainBuf.html + Help/UGens/Generators/Granular/GrainFM.html + Help/UGens/Generators/Granular/GrainIn.html + Help/UGens/Generators/Granular/GrainSin.html + Help/UGens/Generators/PhysicalModels/Ball.html + Help/UGens/Generators/PhysicalModels/Spring.html + Help/UGens/Generators/PhysicalModels/TBall.html + Help/UGens/InOut/AbstractIn.html + Help/UGens/InOut/AbstractOut.html + Help/UGens/InOut/AudioIn.html + Help/UGens/InOut/In.html + Help/UGens/InOut/InFeedback.html + Help/UGens/InOut/InTrig.html + Help/UGens/InOut/LocalBuf.html + Help/UGens/InOut/LocalIn.html + Help/UGens/InOut/LocalOut.html + Help/UGens/InOut/MaxLocalBufs.html + Help/UGens/InOut/OffsetOut.html + Help/UGens/InOut/Out.html + Help/UGens/InOut/ReplaceOut.html + Help/UGens/InOut/SharedIn.html + Help/UGens/InOut/SharedOut.html + Help/UGens/InOut/SoundIn.html + Help/UGens/InOut/XOut.html + Help/UGens/Info/BufChannels.html + Help/UGens/Info/BufDur.html + Help/UGens/Info/BufFrames.html + Help/UGens/Info/BufRateScale.html + Help/UGens/Info/BufSampleRate.html + Help/UGens/Info/BufSamples.html + Help/UGens/Info/CheckBadValues.html + Help/UGens/Info/ControlDur.html + Help/UGens/Info/ControlRate.html + Help/UGens/Info/NumRunningSynths.html + Help/UGens/Info/SampleDur.html + Help/UGens/Info/SampleRate.html + Help/UGens/Info/SubsampleOffset.html + Help/UGens/MachineListening/BeatTrack.html + Help/UGens/MachineListening/BeatTrack2.html + Help/UGens/MachineListening/KeyTrack.html + Help/UGens/MachineListening/Loudness.html + Help/UGens/MachineListening/MFCC.html + Help/UGens/MachineListening/Onsets.html + Help/UGens/Multichannel/Mix.html + Help/UGens/Multichannel/MultiOutUGen.html + Help/UGens/Multichannel/OutputProxy.html + Help/UGens/Multichannel/Panners/Balance2.html + Help/UGens/Multichannel/Panners/BiPanB2.html + Help/UGens/Multichannel/Panners/DecodeB2.html + Help/UGens/Multichannel/Panners/LinPan2.html + Help/UGens/Multichannel/Panners/LinXFade2.html + Help/UGens/Multichannel/Panners/Pan2.html + Help/UGens/Multichannel/Panners/Pan4.html + Help/UGens/Multichannel/Panners/PanAz.html + Help/UGens/Multichannel/Panners/PanB.html + Help/UGens/Multichannel/Panners/PanB2.html + Help/UGens/Multichannel/Panners/Rotate2.html + Help/UGens/Multichannel/Panners/SelectX.html + Help/UGens/Multichannel/Panners/SelectXFocus.html + Help/UGens/Multichannel/Panners/Splay.html + Help/UGens/Multichannel/Panners/SplayAz.html + Help/UGens/Multichannel/Panners/SplayZ.html + Help/UGens/Multichannel/Panners/XFade2.html + Help/UGens/Multichannel/Select.html + Help/UGens/Noise/BrownNoise.html + Help/UGens/Noise/ClipNoise.html + Help/UGens/Noise/Crackle.html + Help/UGens/Noise/Dust.html + Help/UGens/Noise/Dust2.html + Help/UGens/Noise/GrayNoise.html + Help/UGens/Noise/Hasher.html + Help/UGens/Noise/LFClipNoise.html + Help/UGens/Noise/LFDClipNoise.html + Help/UGens/Noise/LFDNoise0.html + Help/UGens/Noise/LFDNoise1.html + Help/UGens/Noise/LFDNoise3.html + Help/UGens/Noise/LFNoise0.html + Help/UGens/Noise/LFNoise1.html + Help/UGens/Noise/LFNoise2.html + Help/UGens/Noise/Logistic.html + Help/UGens/Noise/MantissaMask.html + Help/UGens/Noise/PinkNoise.html + Help/UGens/Noise/PinkerNoise.html + Help/UGens/Noise/Rossler.html + Help/UGens/Noise/WhiteNoise.html + Help/UGens/Oscillators/Blip.html + Help/UGens/Oscillators/BufRd.html + Help/UGens/Oscillators/BufWr.html + Help/UGens/Oscillators/COsc.html + Help/UGens/Oscillators/DynKlang.html + Help/UGens/Oscillators/FSinOsc.html + Help/UGens/Oscillators/Formant.html + Help/UGens/Oscillators/Gendy1.html + Help/UGens/Oscillators/Gendy2.html + Help/UGens/Oscillators/Gendy3.html + Help/UGens/Oscillators/Impulse.html + Help/UGens/Oscillators/Klang.html + Help/UGens/Oscillators/LFCub.html + Help/UGens/Oscillators/LFGauss.html + Help/UGens/Oscillators/LFPar.html + Help/UGens/Oscillators/LFPulse.html + Help/UGens/Oscillators/LFSaw.html + Help/UGens/Oscillators/LFTri.html + Help/UGens/Oscillators/Osc.html + Help/UGens/Oscillators/OscN.html + Help/UGens/Oscillators/PMOsc.html + Help/UGens/Oscillators/Pulse.html + Help/UGens/Oscillators/Saw.html + Help/UGens/Oscillators/Shaper.html + Help/UGens/Oscillators/SinOsc.html + Help/UGens/Oscillators/SyncSaw.html + Help/UGens/Oscillators/VOsc.html + Help/UGens/Oscillators/VOsc3.html + Help/UGens/Oscillators/VarSaw.html + Help/UGens/PV_ChainUGen.html + Help/UGens/Playback and Recording/DiskIn.html + Help/UGens/Playback and Recording/DiskOut.html + Help/UGens/Playback and Recording/PlayBuf.html + Help/UGens/Playback and Recording/RecordBuf.html + Help/UGens/Playback and Recording/TGrains.html + Help/UGens/Playback and Recording/VDiskIn.html + Help/UGens/Playback and Recording/Warp1.html + Help/UGens/Random/CoinGate.html + Help/UGens/Random/ExpRand.html + Help/UGens/Random/IRand.html + Help/UGens/Random/LinRand.html + Help/UGens/Random/NRand.html + Help/UGens/Random/Rand.html + Help/UGens/Random/RandID.html + Help/UGens/Random/RandSeed.html + Help/UGens/Random/TExpRand.html + Help/UGens/Random/TIRand.html + Help/UGens/Random/TRand.html + Help/UGens/Reverbs/FreeVerb.html + Help/UGens/Reverbs/FreeVerb2.html + Help/UGens/Reverbs/GVerb.html + Help/UGens/Synth control/A2K.html + Help/UGens/Synth control/Control.html + Help/UGens/Synth control/ControlName.html + Help/UGens/Synth control/DC.html + Help/UGens/Synth control/DegreeToKey.html + Help/UGens/Synth control/Demand Rate/Dbrown.html + Help/UGens/Synth control/Demand Rate/Dbufrd.html + Help/UGens/Synth control/Demand Rate/Dbufwr.html + Help/UGens/Synth control/Demand Rate/Demand.html + Help/UGens/Synth control/Demand Rate/DemandEnvGen.html + Help/UGens/Synth control/Demand Rate/Dgeom.html + Help/UGens/Synth control/Demand Rate/Dpoll.html + Help/UGens/Synth control/Demand Rate/Drand.html + Help/UGens/Synth control/Demand Rate/Dreset.html + Help/UGens/Synth control/Demand Rate/Dseq.html + Help/UGens/Synth control/Demand Rate/Dser.html + Help/UGens/Synth control/Demand Rate/Dseries.html + Help/UGens/Synth control/Demand Rate/Dshuf.html + Help/UGens/Synth control/Demand Rate/Dstutter.html + Help/UGens/Synth control/Demand Rate/Dswitch.htm + Help/UGens/Synth control/Demand Rate/Dswitch1.html + Help/UGens/Synth control/Demand Rate/Duty.html + Help/UGens/Synth control/Demand Rate/Dwhite.html + Help/UGens/Synth control/Demand Rate/Dwrand.html + Help/UGens/Synth control/Demand Rate/TDuty.html + Help/UGens/Synth control/DetectIndex.htm + Help/UGens/Synth control/Envelopes/Decay.html + Help/UGens/Synth control/Envelopes/Decay2.html + Help/UGens/Synth control/Envelopes/DetectSilence.html + Help/UGens/Synth control/Envelopes/Done.html + Help/UGens/Synth control/Envelopes/EnvGen.html + Help/UGens/Synth control/Envelopes/Free.html + Help/UGens/Synth control/Envelopes/FreeSelf.html + Help/UGens/Synth control/Envelopes/FreeSelfWhenDone.html + Help/UGens/Synth control/Envelopes/Line.html + Help/UGens/Synth control/Envelopes/Linen.html + Help/UGens/Synth control/Envelopes/Pause.html + Help/UGens/Synth control/Envelopes/PauseSelf.html + Help/UGens/Synth control/Envelopes/UGen-doneActions.html + Help/UGens/Synth control/Envelopes/XLine.html + Help/UGens/Synth control/Index.html + Help/UGens/Synth control/IndexInBetween.html + Help/UGens/Synth control/IndexL.html + Help/UGens/Synth control/Integrator.html + Help/UGens/Synth control/K2A.html + Help/UGens/Synth control/KeyState.html + Help/UGens/Synth control/Latch.html + Help/UGens/Synth control/MouseButton.html + Help/UGens/Synth control/MouseX.html + Help/UGens/Synth control/MouseY.html + Help/UGens/Synth control/NamedControl.html + Help/UGens/Synth control/Silent.html + Help/UGens/Synth control/Slew.html + Help/UGens/Synth control/Synth-Controlling-UGens.html + Help/UGens/Synth control/T2A.html + Help/UGens/Synth control/T2K.html + Help/UGens/Synth control/WrapIndex.html + Help/UGens/Tour_of_UGens.html + Help/UGens/Triggers/Gate.html + Help/UGens/Triggers/InRange.html + Help/UGens/Triggers/InRect.html + Help/UGens/Triggers/LastValue.html + Help/UGens/Triggers/LeastChange.html + Help/UGens/Triggers/MostChange.html + Help/UGens/Triggers/Peak.html + Help/UGens/Triggers/PeakFollower.html + Help/UGens/Triggers/Phasor.html + Help/UGens/Triggers/Poll.html + Help/UGens/Triggers/PulseCount.html + Help/UGens/Triggers/PulseDivider.html + Help/UGens/Triggers/RunningMax.html + Help/UGens/Triggers/RunningMin.html + Help/UGens/Triggers/Schmidt.html + Help/UGens/Triggers/SendReply.html + Help/UGens/Triggers/SendTrig.html + Help/UGens/Triggers/SetResetFF.html + Help/UGens/Triggers/Stepper.html + Help/UGens/Triggers/Sweep.html + Help/UGens/Triggers/TChoose.html + Help/UGens/Triggers/TDelay.html + Help/UGens/Triggers/TWChoose.html + Help/UGens/Triggers/TWindex.html + Help/UGens/Triggers/Timer.html + Help/UGens/Triggers/ToggleFF.html + Help/UGens/Triggers/Trig.html + Help/UGens/Triggers/Trig1.html + Help/UGens/UGen.html + Help/UGens/UGens.html + Help/UnaryOps/abs.html + Help/UnaryOps/acos.html + Help/UnaryOps/ampdb.html + Help/UnaryOps/asin.html + Help/UnaryOps/atan.html + Help/UnaryOps/ceil.html + Help/UnaryOps/convertRhythm.html + Help/UnaryOps/cos.html + Help/UnaryOps/cosh.html + Help/UnaryOps/cpsmidi.html + Help/UnaryOps/cpsoct.html + Help/UnaryOps/cubed.html + Help/UnaryOps/dbamp.html + Help/UnaryOps/distort.html + Help/UnaryOps/exp.html + Help/UnaryOps/floor.html + Help/UnaryOps/frac.html + Help/UnaryOps/isNegative.html + Help/UnaryOps/isPositive.html + Help/UnaryOps/isStrictlyPositive.html + Help/UnaryOps/log.html + Help/UnaryOps/log10.html + Help/UnaryOps/log2.html + Help/UnaryOps/midicps.html + Help/UnaryOps/neg.html + Help/UnaryOps/octcps.html + Help/UnaryOps/reciprocal.html + Help/UnaryOps/sign.html + Help/UnaryOps/sin.html + Help/UnaryOps/sinh.html + Help/UnaryOps/softclip.html + Help/UnaryOps/sqrt.html + Help/UnaryOps/squared.html + Help/UnaryOps/tan.html + Help/UnaryOps/tanh.html + Help/attachments/Help/SC_icon.png + Help/attachments/Help/empty.png + Help/help-scripts/Show All Documented Classes.html + Help/help-scripts/Show All Documented Extension Classes.html + Help/help-scripts/Show All Undocumented Classes.html + Help/help-scripts/tab-template.html + Help/interfaces/matchItem.html + HelpSource/BrokenLink.html + HelpSource/Browse.html + HelpSource/Classes/A2K.schelp + HelpSource/Classes/APF.schelp + HelpSource/Classes/AbstractDispatcher.schelp + HelpSource/Classes/AbstractFunction.schelp + HelpSource/Classes/AbstractIn.schelp + HelpSource/Classes/AbstractMessageMatcher.schelp + HelpSource/Classes/AbstractOut.schelp + HelpSource/Classes/AbstractResponderFunc.schelp + HelpSource/Classes/AbstractServerAction.schelp + HelpSource/Classes/AbstractSystemAction.schelp + HelpSource/Classes/AbstractWrappingDispatcher.schelp + HelpSource/Classes/AllpassC.schelp + HelpSource/Classes/AllpassL.schelp + HelpSource/Classes/AllpassN.schelp + HelpSource/Classes/AmpComp.schelp + HelpSource/Classes/AmpCompA.schelp + HelpSource/Classes/Amplitude.schelp + HelpSource/Classes/AppClock.schelp + HelpSource/Classes/ApplicationStart.schelp + HelpSource/Classes/Archive.schelp + HelpSource/Classes/Array.schelp + HelpSource/Classes/Array2D.schelp + HelpSource/Classes/ArrayedCollection.schelp + HelpSource/Classes/Association.schelp + HelpSource/Classes/AudioIn.schelp + HelpSource/Classes/BAllPass.schelp + HelpSource/Classes/BBandPass.schelp + HelpSource/Classes/BBandStop.schelp + HelpSource/Classes/BEQSuite.schelp + HelpSource/Classes/BHiPass.schelp + HelpSource/Classes/BHiPass4.schelp + HelpSource/Classes/BHiShelf.schelp + HelpSource/Classes/BLowPass.schelp + HelpSource/Classes/BLowPass4.schelp + HelpSource/Classes/BLowShelf.schelp + HelpSource/Classes/BPF.schelp + HelpSource/Classes/BPZ2.schelp + HelpSource/Classes/BPeakEQ.schelp + HelpSource/Classes/BRF.schelp + HelpSource/Classes/BRZ2.schelp + HelpSource/Classes/Bag.schelp + HelpSource/Classes/Balance2.schelp + HelpSource/Classes/Ball.schelp + HelpSource/Classes/BasicOpUGen.schelp + HelpSource/Classes/BeatTrack.schelp + HelpSource/Classes/BeatTrack2.schelp + HelpSource/Classes/BendResponder.schelp + HelpSource/Classes/BiPanB2.schelp + HelpSource/Classes/BinaryOpFunction.schelp + HelpSource/Classes/BinaryOpStream.schelp + HelpSource/Classes/BinaryOpUGen.schelp + HelpSource/Classes/Blip.schelp + HelpSource/Classes/Boolean.schelp + HelpSource/Classes/BrownNoise.schelp + HelpSource/Classes/BufAllpassC.schelp + HelpSource/Classes/BufAllpassL.schelp + HelpSource/Classes/BufAllpassN.schelp + HelpSource/Classes/BufChannels.schelp + HelpSource/Classes/BufCombC.schelp + HelpSource/Classes/BufCombL.schelp + HelpSource/Classes/BufCombN.schelp + HelpSource/Classes/BufDelayC.schelp + HelpSource/Classes/BufDelayL.schelp + HelpSource/Classes/BufDelayN.schelp + HelpSource/Classes/BufDur.schelp + HelpSource/Classes/BufFrames.schelp + HelpSource/Classes/BufInfoUGenBase.schelp + HelpSource/Classes/BufRateScale.schelp + HelpSource/Classes/BufRd.schelp + HelpSource/Classes/BufSampleRate.schelp + HelpSource/Classes/BufSamples.schelp + HelpSource/Classes/BufWr.schelp + HelpSource/Classes/Buffer.schelp + HelpSource/Classes/Bus.schelp + HelpSource/Classes/BusPlug.schelp + HelpSource/Classes/Button.schelp + HelpSource/Classes/CCResponder.schelp + HelpSource/Classes/COsc.schelp + HelpSource/Classes/CSVFileReader.schelp + HelpSource/Classes/Changed.schelp + HelpSource/Classes/ChaosGen.schelp + HelpSource/Classes/Char.schelp + HelpSource/Classes/CheckBadValues.schelp + HelpSource/Classes/CheckBox.schelp + HelpSource/Classes/Class.schelp + HelpSource/Classes/Clip.schelp + HelpSource/Classes/ClipNoise.schelp + HelpSource/Classes/Clock.schelp + HelpSource/Classes/CmdPeriod.schelp + HelpSource/Classes/Cocoa.schelp + HelpSource/Classes/CocoaDialog.schelp + HelpSource/Classes/CocoaDocument.schelp + HelpSource/Classes/CocoaMenuItem.schelp + HelpSource/Classes/CoinGate.schelp + HelpSource/Classes/Collection.schelp + HelpSource/Classes/Color.schelp + HelpSource/Classes/CombC.schelp + HelpSource/Classes/CombL.schelp + HelpSource/Classes/CombN.schelp + HelpSource/Classes/Compander.schelp + HelpSource/Classes/CompanderD.schelp + HelpSource/Classes/Complex.schelp + HelpSource/Classes/CompositeView.schelp + HelpSource/Classes/Condition.schelp + HelpSource/Classes/ContiguousBlockAllocator.schelp + HelpSource/Classes/Control.schelp + HelpSource/Classes/ControlDur.schelp + HelpSource/Classes/ControlName.schelp + HelpSource/Classes/ControlRate.schelp + HelpSource/Classes/ControlSpec.schelp + HelpSource/Classes/Convolution.schelp + HelpSource/Classes/Convolution2.schelp + HelpSource/Classes/Convolution2L.schelp + HelpSource/Classes/Convolution3.schelp + HelpSource/Classes/Crackle.schelp + HelpSource/Classes/CuspL.schelp + HelpSource/Classes/CuspN.schelp + HelpSource/Classes/DC.schelp + HelpSource/Classes/Date.schelp + HelpSource/Classes/Dbrown.schelp + HelpSource/Classes/Dbufrd.schelp + HelpSource/Classes/Dbufwr.schelp + HelpSource/Classes/DebugNodeWatcher.schelp + HelpSource/Classes/Decay.schelp + HelpSource/Classes/Decay2.schelp + HelpSource/Classes/DecodeB2.schelp + HelpSource/Classes/DegreeToKey.schelp + HelpSource/Classes/DelTapRd.schelp + HelpSource/Classes/DelTapWr.schelp + HelpSource/Classes/Delay1.schelp + HelpSource/Classes/Delay2.schelp + HelpSource/Classes/DelayC.schelp + HelpSource/Classes/DelayL.schelp + HelpSource/Classes/DelayN.schelp + HelpSource/Classes/Demand.schelp + HelpSource/Classes/DemandEnvGen.schelp + HelpSource/Classes/DetectIndex.schelp + HelpSource/Classes/DetectSilence.schelp + HelpSource/Classes/Dgeom.schelp + HelpSource/Classes/Dialog.schelp + HelpSource/Classes/Dibrown.schelp + HelpSource/Classes/Dictionary.schelp + HelpSource/Classes/DiskIn.schelp + HelpSource/Classes/DiskOut.schelp + HelpSource/Classes/Diwhite.schelp + HelpSource/Classes/Document.schelp + HelpSource/Classes/Done.schelp + HelpSource/Classes/DoubleArray.schelp + HelpSource/Classes/Dpoll.schelp + HelpSource/Classes/DragBoth.schelp + HelpSource/Classes/DragSink.schelp + HelpSource/Classes/DragSource.schelp + HelpSource/Classes/Drand.schelp + HelpSource/Classes/DrawGrid.schelp + HelpSource/Classes/Dreset.schelp + HelpSource/Classes/Dseq.schelp + HelpSource/Classes/Dser.schelp + HelpSource/Classes/Dseries.schelp + HelpSource/Classes/Dshuf.schelp + HelpSource/Classes/Dstutter.schelp + HelpSource/Classes/Dswitch.schelp + HelpSource/Classes/Dswitch1.schelp + HelpSource/Classes/Dust.schelp + HelpSource/Classes/Dust2.schelp + HelpSource/Classes/Duty.schelp + HelpSource/Classes/Dwhite.schelp + HelpSource/Classes/Dwrand.schelp + HelpSource/Classes/Dxrand.schelp + HelpSource/Classes/DynKlang.schelp + HelpSource/Classes/DynKlank.schelp + HelpSource/Classes/EZGui.schelp + HelpSource/Classes/EZKnob.schelp + HelpSource/Classes/EZListView.schelp + HelpSource/Classes/EZLists.schelp + HelpSource/Classes/EZNumber.schelp + HelpSource/Classes/EZPopUpMenu.schelp + HelpSource/Classes/EZRanger.schelp + HelpSource/Classes/EZScroller.schelp + HelpSource/Classes/EZSlider.schelp + HelpSource/Classes/EZText.schelp + HelpSource/Classes/Env.schelp + HelpSource/Classes/EnvGate.schelp + HelpSource/Classes/EnvGen.schelp + HelpSource/Classes/EnvelopeView.schelp + HelpSource/Classes/EnvirGui.schelp + HelpSource/Classes/Environment.schelp + HelpSource/Classes/EnvironmentRedirect.schelp + HelpSource/Classes/Error.schelp + HelpSource/Classes/Event.schelp + HelpSource/Classes/EventPatternProxy.schelp + HelpSource/Classes/EventStreamPlayer.schelp + HelpSource/Classes/Exception.schelp + HelpSource/Classes/ExpRand.schelp + HelpSource/Classes/FBSineC.schelp + HelpSource/Classes/FBSineL.schelp + HelpSource/Classes/FBSineN.schelp + HelpSource/Classes/FFT.schelp + HelpSource/Classes/FFTTrigger.schelp + HelpSource/Classes/FOS.schelp + HelpSource/Classes/FSinOsc.schelp + HelpSource/Classes/False.schelp + HelpSource/Classes/Fdef.schelp + HelpSource/Classes/File.schelp + HelpSource/Classes/FileReader.schelp + HelpSource/Classes/Filter.schelp + HelpSource/Classes/FilterPattern.schelp + HelpSource/Classes/Float.schelp + HelpSource/Classes/FloatArray.schelp + HelpSource/Classes/FlowLayout.schelp + HelpSource/Classes/FlowView.schelp + HelpSource/Classes/Fold.schelp + HelpSource/Classes/Font.schelp + HelpSource/Classes/Formant.schelp + HelpSource/Classes/Formlet.schelp + HelpSource/Classes/Frame.schelp + HelpSource/Classes/Free.schelp + HelpSource/Classes/FreeSelf.schelp + HelpSource/Classes/FreeSelfWhenDone.schelp + HelpSource/Classes/FreeVerb.schelp + HelpSource/Classes/FreeVerb2.schelp + HelpSource/Classes/FreqScope.schelp + HelpSource/Classes/FreqScopeView.schelp + HelpSource/Classes/FreqShift.schelp + HelpSource/Classes/FuncFilterPattern.schelp + HelpSource/Classes/Function.schelp + HelpSource/Classes/FunctionDef.schelp + HelpSource/Classes/FunctionList.schelp + HelpSource/Classes/GUI.schelp + HelpSource/Classes/GVerb.schelp + HelpSource/Classes/Gate.schelp + HelpSource/Classes/GbmanL.schelp + HelpSource/Classes/GbmanN.schelp + HelpSource/Classes/Gendy1.schelp + HelpSource/Classes/Gendy2.schelp + HelpSource/Classes/Gendy3.schelp + HelpSource/Classes/GeneralHID.schelp + HelpSource/Classes/GeneralHIDDevice.schelp + HelpSource/Classes/GeneralHIDSlot.schelp + HelpSource/Classes/GeneralHIDSpec.schelp + HelpSource/Classes/Gradient.schelp + HelpSource/Classes/GrainBuf.schelp + HelpSource/Classes/GrainFM.schelp + HelpSource/Classes/GrainIn.schelp + HelpSource/Classes/GrainSin.schelp + HelpSource/Classes/GrayNoise.schelp + HelpSource/Classes/GridLayout.schelp + HelpSource/Classes/GridLines.schelp + HelpSource/Classes/Group.schelp + HelpSource/Classes/HIDDevice.schelp + HelpSource/Classes/HIDDeviceElement.schelp + HelpSource/Classes/HIDDeviceService.schelp + HelpSource/Classes/HLayout.schelp + HelpSource/Classes/HLayoutView.schelp + HelpSource/Classes/HPF.schelp + HelpSource/Classes/HPZ1.schelp + HelpSource/Classes/HPZ2.schelp + HelpSource/Classes/Harmonics.schelp + HelpSource/Classes/Hasher.schelp + HelpSource/Classes/HelpBrowser.schelp + HelpSource/Classes/HenonC.schelp + HelpSource/Classes/HenonL.schelp + HelpSource/Classes/HenonN.schelp + HelpSource/Classes/Hilbert.schelp + HelpSource/Classes/HilbertFIR.schelp + HelpSource/Classes/HiliteGradient.schelp + HelpSource/Classes/History.schelp + HelpSource/Classes/HistoryGui.schelp + HelpSource/Classes/IEnvGen.schelp + HelpSource/Classes/IFFT.schelp + HelpSource/Classes/IODesc.schelp + HelpSource/Classes/IRand.schelp + HelpSource/Classes/IdentityBag.schelp + HelpSource/Classes/IdentityDictionary.schelp + HelpSource/Classes/IdentitySet.schelp + HelpSource/Classes/Impulse.schelp + HelpSource/Classes/In.schelp + HelpSource/Classes/InFeedback.schelp + HelpSource/Classes/InRange.schelp + HelpSource/Classes/InRect.schelp + HelpSource/Classes/InTrig.schelp + HelpSource/Classes/Index.schelp + HelpSource/Classes/IndexInBetween.schelp + HelpSource/Classes/IndexL.schelp + HelpSource/Classes/InfoUGenBase.schelp + HelpSource/Classes/Int16Array.schelp + HelpSource/Classes/Int32Array.schelp + HelpSource/Classes/Int8Array.schelp + HelpSource/Classes/Integer.schelp + HelpSource/Classes/Integrator.schelp + HelpSource/Classes/InterplEnv.schelp + HelpSource/Classes/InterplPairs.schelp + HelpSource/Classes/InterplXYC.schelp + HelpSource/Classes/Interpreter.schelp + HelpSource/Classes/Interval.schelp + HelpSource/Classes/JITGui.schelp + HelpSource/Classes/K2A.schelp + HelpSource/Classes/KeyState.schelp + HelpSource/Classes/KeyTrack.schelp + HelpSource/Classes/Klang.schelp + HelpSource/Classes/Klank.schelp + HelpSource/Classes/Knob.schelp + HelpSource/Classes/LFClipNoise.schelp + HelpSource/Classes/LFCub.schelp + HelpSource/Classes/LFDClipNoise.schelp + HelpSource/Classes/LFDNoise0.schelp + HelpSource/Classes/LFDNoise1.schelp + HelpSource/Classes/LFDNoise3.schelp + HelpSource/Classes/LFGauss.schelp + HelpSource/Classes/LFNoise0.schelp + HelpSource/Classes/LFNoise1.schelp + HelpSource/Classes/LFNoise2.schelp + HelpSource/Classes/LFPar.schelp + HelpSource/Classes/LFPulse.schelp + HelpSource/Classes/LFSaw.schelp + HelpSource/Classes/LFTri.schelp + HelpSource/Classes/LID.schelp + HelpSource/Classes/LPF.schelp + HelpSource/Classes/LPZ1.schelp + HelpSource/Classes/LPZ2.schelp + HelpSource/Classes/Lag.schelp + HelpSource/Classes/Lag2.schelp + HelpSource/Classes/Lag2UD.schelp + HelpSource/Classes/Lag3.schelp + HelpSource/Classes/Lag3UD.schelp + HelpSource/Classes/LagControl.schelp + HelpSource/Classes/LagIn.schelp + HelpSource/Classes/LagUD.schelp + HelpSource/Classes/LanguageConfig.schelp + HelpSource/Classes/LastValue.schelp + HelpSource/Classes/Latch.schelp + HelpSource/Classes/LatoocarfianC.schelp + HelpSource/Classes/LatoocarfianL.schelp + HelpSource/Classes/LatoocarfianN.schelp + HelpSource/Classes/LazyEnvir.schelp + HelpSource/Classes/LeakDC.schelp + HelpSource/Classes/LeastChange.schelp + HelpSource/Classes/LevelIndicator.schelp + HelpSource/Classes/Library.schelp + HelpSource/Classes/LibraryBase.schelp + HelpSource/Classes/Limiter.schelp + HelpSource/Classes/LinCongC.schelp + HelpSource/Classes/LinCongL.schelp + HelpSource/Classes/LinCongN.schelp + HelpSource/Classes/LinExp.schelp + HelpSource/Classes/LinLin.schelp + HelpSource/Classes/LinPan2.schelp + HelpSource/Classes/LinRand.schelp + HelpSource/Classes/LinSelectX.schelp + HelpSource/Classes/LinXFade2.schelp + HelpSource/Classes/Line.schelp + HelpSource/Classes/Linen.schelp + HelpSource/Classes/LinkedList.schelp + HelpSource/Classes/LinkedListNode.schelp + HelpSource/Classes/List.schelp + HelpSource/Classes/ListPattern.schelp + HelpSource/Classes/ListView.schelp + HelpSource/Classes/LocalBuf.schelp + HelpSource/Classes/LocalIn.schelp + HelpSource/Classes/LocalOut.schelp + HelpSource/Classes/Logistic.schelp + HelpSource/Classes/LorenzL.schelp + HelpSource/Classes/Loudness.schelp + HelpSource/Classes/MFCC.schelp + HelpSource/Classes/MIDIFunc.schelp + HelpSource/Classes/MIDIFuncBothCAMessageMatcher.schelp + HelpSource/Classes/MIDIFuncBothMessageMatcher.schelp + HelpSource/Classes/MIDIFuncChanArrayMessageMatcher.schelp + HelpSource/Classes/MIDIFuncChanMessageMatcher.schelp + HelpSource/Classes/MIDIFuncSrcMessageMatcher.schelp + HelpSource/Classes/MIDIFuncSrcMessageMatcherNV.schelp + HelpSource/Classes/MIDIIn.schelp + HelpSource/Classes/MIDIMessageDispatcher.schelp + HelpSource/Classes/MIDIMessageDispatcherNV.schelp + HelpSource/Classes/MIDIOut.schelp + HelpSource/Classes/MIDIResponder.schelp + HelpSource/Classes/MIDIdef.schelp + HelpSource/Classes/Magnitude.schelp + HelpSource/Classes/Main.schelp + HelpSource/Classes/MantissaMask.schelp + HelpSource/Classes/MaxLocalBufs.schelp + HelpSource/Classes/Maybe.schelp + HelpSource/Classes/Median.schelp + HelpSource/Classes/Method.schelp + HelpSource/Classes/MidEQ.schelp + HelpSource/Classes/Mix.schelp + HelpSource/Classes/Monitor.schelp + HelpSource/Classes/MonitorGui.schelp + HelpSource/Classes/MoogFF.schelp + HelpSource/Classes/MostChange.schelp + HelpSource/Classes/MouseButton.schelp + HelpSource/Classes/MouseX.schelp + HelpSource/Classes/MouseY.schelp + HelpSource/Classes/MovieView.schelp + HelpSource/Classes/MulAdd.schelp + HelpSource/Classes/MultiLevelIdentityDictionary.schelp + HelpSource/Classes/MultiOutUGen.schelp + HelpSource/Classes/MultiSliderView.schelp + HelpSource/Classes/MultiTap.schelp + HelpSource/Classes/NAryOpFunction.schelp + HelpSource/Classes/NAryOpStream.schelp + HelpSource/Classes/NRand.schelp + HelpSource/Classes/NamedControl.schelp + HelpSource/Classes/Ndef.schelp + HelpSource/Classes/NdefGui.schelp + HelpSource/Classes/NdefMixer.schelp + HelpSource/Classes/NdefMixerOld.schelp + HelpSource/Classes/NdefParamGui.schelp + HelpSource/Classes/NetAddr.schelp + HelpSource/Classes/Nil.schelp + HelpSource/Classes/Node.schelp + HelpSource/Classes/NodeControl.schelp + HelpSource/Classes/NodeMap.schelp + HelpSource/Classes/NodeProxy.schelp + HelpSource/Classes/NodeProxyEditor.schelp + HelpSource/Classes/NodeWatcher.schelp + HelpSource/Classes/Normalizer.schelp + HelpSource/Classes/NoteOffResponder.schelp + HelpSource/Classes/NoteOnResponder.schelp + HelpSource/Classes/NotificationCenter.schelp + HelpSource/Classes/NumAudioBuses.schelp + HelpSource/Classes/NumBuffers.schelp + HelpSource/Classes/NumChannels.schelp + HelpSource/Classes/NumControlBuses.schelp + HelpSource/Classes/NumInputBuses.schelp + HelpSource/Classes/NumOutputBuses.schelp + HelpSource/Classes/NumRunningSynths.schelp + HelpSource/Classes/Number.schelp + HelpSource/Classes/NumberBox.schelp + HelpSource/Classes/OSCArgsMatcher.schelp + HelpSource/Classes/OSCBundle.schelp + HelpSource/Classes/OSCFunc.schelp + HelpSource/Classes/OSCFuncAddrMessageMatcher.schelp + HelpSource/Classes/OSCFuncBothMessageMatcher.schelp + HelpSource/Classes/OSCFuncRecvPortMessageMatcher.schelp + HelpSource/Classes/OSCMessageDispatcher.schelp + HelpSource/Classes/OSCMessagePatternDispatcher.schelp + HelpSource/Classes/OSCdef.schelp + HelpSource/Classes/OSCpathResponder.schelp + HelpSource/Classes/OSCresponder.schelp + HelpSource/Classes/OSCresponderNode.schelp + HelpSource/Classes/Object.schelp + HelpSource/Classes/ObjectGui.schelp + HelpSource/Classes/ObjectTable.schelp + HelpSource/Classes/OffsetOut.schelp + HelpSource/Classes/OnError.schelp + HelpSource/Classes/OnePole.schelp + HelpSource/Classes/OneZero.schelp + HelpSource/Classes/Onsets.schelp + HelpSource/Classes/Order.schelp + HelpSource/Classes/OrderedIdentitySet.schelp + HelpSource/Classes/Osc.schelp + HelpSource/Classes/OscN.schelp + HelpSource/Classes/Out.schelp + HelpSource/Classes/OutputProxy.schelp + HelpSource/Classes/PMOsc.schelp + HelpSource/Classes/PSinGrain.schelp + HelpSource/Classes/PV_Add.schelp + HelpSource/Classes/PV_BinScramble.schelp + HelpSource/Classes/PV_BinShift.schelp + HelpSource/Classes/PV_BinWipe.schelp + HelpSource/Classes/PV_BrickWall.schelp + HelpSource/Classes/PV_ChainUGen.schelp + HelpSource/Classes/PV_ConformalMap.schelp + HelpSource/Classes/PV_Conj.schelp + HelpSource/Classes/PV_Copy.schelp + HelpSource/Classes/PV_CopyPhase.schelp + HelpSource/Classes/PV_Diffuser.schelp + HelpSource/Classes/PV_Div.schelp + HelpSource/Classes/PV_HainsworthFoote.schelp + HelpSource/Classes/PV_JensenAndersen.schelp + HelpSource/Classes/PV_LocalMax.schelp + HelpSource/Classes/PV_MagAbove.schelp + HelpSource/Classes/PV_MagBelow.schelp + HelpSource/Classes/PV_MagClip.schelp + HelpSource/Classes/PV_MagDiv.schelp + HelpSource/Classes/PV_MagFreeze.schelp + HelpSource/Classes/PV_MagMul.schelp + HelpSource/Classes/PV_MagNoise.schelp + HelpSource/Classes/PV_MagShift.schelp + HelpSource/Classes/PV_MagSmear.schelp + HelpSource/Classes/PV_MagSquared.schelp + HelpSource/Classes/PV_Max.schelp + HelpSource/Classes/PV_Min.schelp + HelpSource/Classes/PV_Mul.schelp + HelpSource/Classes/PV_PhaseShift.schelp + HelpSource/Classes/PV_PhaseShift270.schelp + HelpSource/Classes/PV_PhaseShift90.schelp + HelpSource/Classes/PV_RandComb.schelp + HelpSource/Classes/PV_RandWipe.schelp + HelpSource/Classes/PV_RectComb.schelp + HelpSource/Classes/PV_RectComb2.schelp + HelpSource/Classes/PackFFT.schelp + HelpSource/Classes/Padd.schelp + HelpSource/Classes/Paddp.schelp + HelpSource/Classes/Paddpre.schelp + HelpSource/Classes/PageLayout.schelp + HelpSource/Classes/Pair.schelp + HelpSource/Classes/Pan2.schelp + HelpSource/Classes/Pan4.schelp + HelpSource/Classes/PanAz.schelp + HelpSource/Classes/PanB.schelp + HelpSource/Classes/PanB2.schelp + HelpSource/Classes/ParGroup.schelp + HelpSource/Classes/PartConv.schelp + HelpSource/Classes/PathName.schelp + HelpSource/Classes/Pattern.schelp + HelpSource/Classes/PatternConductor.schelp + HelpSource/Classes/PatternProxy.schelp + HelpSource/Classes/Pause.schelp + HelpSource/Classes/PauseSelf.schelp + HelpSource/Classes/PauseSelfWhenDone.schelp + HelpSource/Classes/Pavaroh.schelp + HelpSource/Classes/Pbeta.schelp + HelpSource/Classes/Pbind.schelp + HelpSource/Classes/PbindProxy.schelp + HelpSource/Classes/Pbindef.schelp + HelpSource/Classes/Pbindf.schelp + HelpSource/Classes/Pbinop.schelp + HelpSource/Classes/Pbrown.schelp + HelpSource/Classes/Pbus.schelp + HelpSource/Classes/Pcauchy.schelp + HelpSource/Classes/Pchain.schelp + HelpSource/Classes/Pclutch.schelp + HelpSource/Classes/Pcollect.schelp + HelpSource/Classes/Pconst.schelp + HelpSource/Classes/Pdef.schelp + HelpSource/Classes/PdefAllGui.schelp + HelpSource/Classes/PdefEditor.schelp + HelpSource/Classes/PdefGui.schelp + HelpSource/Classes/Pdefn.schelp + HelpSource/Classes/PdegreeToKey.schelp + HelpSource/Classes/Pdfsm.schelp + HelpSource/Classes/Pdict.schelp + HelpSource/Classes/PdurStutter.schelp + HelpSource/Classes/Peak.schelp + HelpSource/Classes/PeakFollower.schelp + HelpSource/Classes/Pen.schelp + HelpSource/Classes/Penvir.schelp + HelpSource/Classes/Pexprand.schelp + HelpSource/Classes/Pfin.schelp + HelpSource/Classes/Pfindur.schelp + HelpSource/Classes/Pfinval.schelp + HelpSource/Classes/Pfset.schelp + HelpSource/Classes/Pfsm.schelp + HelpSource/Classes/Pfunc.schelp + HelpSource/Classes/Pfuncn.schelp + HelpSource/Classes/Pfx.schelp + HelpSource/Classes/Pfxb.schelp + HelpSource/Classes/Pgate.schelp + HelpSource/Classes/Pgauss.schelp + HelpSource/Classes/Pgbrown.schelp + HelpSource/Classes/Pgeom.schelp + HelpSource/Classes/Pgpar.schelp + HelpSource/Classes/Pgroup.schelp + HelpSource/Classes/Phasor.schelp + HelpSource/Classes/Phid.schelp + HelpSource/Classes/PhidKey.schelp + HelpSource/Classes/PhidSlot.schelp + HelpSource/Classes/Phprand.schelp + HelpSource/Classes/Pif.schelp + HelpSource/Classes/Pindex.schelp + HelpSource/Classes/PingPong.schelp + HelpSource/Classes/PinkNoise.schelp + HelpSource/Classes/Pipe.schelp + HelpSource/Classes/Pitch.schelp + HelpSource/Classes/PitchShift.schelp + HelpSource/Classes/Pkey.schelp + HelpSource/Classes/Place.schelp + HelpSource/Classes/Plambda.schelp + HelpSource/Classes/Platform.schelp + HelpSource/Classes/PlayBuf.schelp + HelpSource/Classes/Plazy.schelp + HelpSource/Classes/PlazyEnvir.schelp + HelpSource/Classes/PlazyEnvirN.schelp + HelpSource/Classes/Plotter.schelp + HelpSource/Classes/Plprand.schelp + HelpSource/Classes/Pluck.schelp + HelpSource/Classes/Pmeanrand.schelp + HelpSource/Classes/Pmono.schelp + HelpSource/Classes/PmonoArtic.schelp + HelpSource/Classes/Pmul.schelp + HelpSource/Classes/Pmulp.schelp + HelpSource/Classes/Pmulpre.schelp + HelpSource/Classes/Pn.schelp + HelpSource/Classes/Pnaryop.schelp + HelpSource/Classes/Pnsym.schelp + HelpSource/Classes/Point.schelp + HelpSource/Classes/Polar.schelp + HelpSource/Classes/Poll.schelp + HelpSource/Classes/PopUpMenu.schelp + HelpSource/Classes/Post.schelp + HelpSource/Classes/Ppar.schelp + HelpSource/Classes/PparGroup.schelp + HelpSource/Classes/Ppatlace.schelp + HelpSource/Classes/Ppatmod.schelp + HelpSource/Classes/Ppoisson.schelp + HelpSource/Classes/Pprob.schelp + HelpSource/Classes/Pprotect.schelp + HelpSource/Classes/Pproto.schelp + HelpSource/Classes/Prand.schelp + HelpSource/Classes/Preject.schelp + HelpSource/Classes/Prewrite.schelp + HelpSource/Classes/PriorityQueue.schelp + HelpSource/Classes/Process.schelp + HelpSource/Classes/ProgramChangeResponder.schelp + HelpSource/Classes/Prorate.schelp + HelpSource/Classes/Prout.schelp + HelpSource/Classes/Proutine.schelp + HelpSource/Classes/ProxyMixer.schelp + HelpSource/Classes/ProxyMixerOld.schelp + HelpSource/Classes/ProxyMonitorGui.schelp + HelpSource/Classes/ProxySpace.schelp + HelpSource/Classes/ProxySynthDef.schelp + HelpSource/Classes/Pseed.schelp + HelpSource/Classes/Pseg.schelp + HelpSource/Classes/Pselect.schelp + HelpSource/Classes/Pseq.schelp + HelpSource/Classes/Pser.schelp + HelpSource/Classes/Pseries.schelp + HelpSource/Classes/Pset.schelp + HelpSource/Classes/Psetp.schelp + HelpSource/Classes/Psetpre.schelp + HelpSource/Classes/Pshuf.schelp + HelpSource/Classes/Pslide.schelp + HelpSource/Classes/Pspawn.schelp + HelpSource/Classes/Pspawner.schelp + HelpSource/Classes/Pstep.schelp + HelpSource/Classes/PstepNadd.schelp + HelpSource/Classes/PstepNfunc.schelp + HelpSource/Classes/Pstutter.schelp + HelpSource/Classes/Pswitch.schelp + HelpSource/Classes/Pswitch1.schelp + HelpSource/Classes/Psym.schelp + HelpSource/Classes/Psync.schelp + HelpSource/Classes/Ptime.schelp + HelpSource/Classes/Ptpar.schelp + HelpSource/Classes/Ptuple.schelp + HelpSource/Classes/Pulse.schelp + HelpSource/Classes/PulseCount.schelp + HelpSource/Classes/PulseDivider.schelp + HelpSource/Classes/Punop.schelp + HelpSource/Classes/Pwalk.schelp + HelpSource/Classes/Pwhile.schelp + HelpSource/Classes/Pwhite.schelp + HelpSource/Classes/Pwrand.schelp + HelpSource/Classes/Pwrap.schelp + HelpSource/Classes/Pxrand.schelp + HelpSource/Classes/QLayout.schelp + HelpSource/Classes/QLineLayout.schelp + HelpSource/Classes/QPalette.schelp + HelpSource/Classes/QPenPrinter.schelp + HelpSource/Classes/QTreeViewItem.schelp + HelpSource/Classes/QuadC.schelp + HelpSource/Classes/QuadL.schelp + HelpSource/Classes/QuadN.schelp + HelpSource/Classes/Quant.schelp + HelpSource/Classes/Quark.schelp + HelpSource/Classes/Quarks.schelp + HelpSource/Classes/RHPF.schelp + HelpSource/Classes/RLPF.schelp + HelpSource/Classes/RadiansPerSample.schelp + HelpSource/Classes/Ramp.schelp + HelpSource/Classes/Rand.schelp + HelpSource/Classes/RandID.schelp + HelpSource/Classes/RandSeed.schelp + HelpSource/Classes/RangeSlider.schelp + HelpSource/Classes/RawArray.schelp + HelpSource/Classes/RawPointer.schelp + HelpSource/Classes/RecNodeProxy.schelp + HelpSource/Classes/RecordBuf.schelp + HelpSource/Classes/Rect.schelp + HelpSource/Classes/Ref.schelp + HelpSource/Classes/RefCopy.schelp + HelpSource/Classes/ReplaceOut.schelp + HelpSource/Classes/Resonz.schelp + HelpSource/Classes/Rest.schelp + HelpSource/Classes/Ringz.schelp + HelpSource/Classes/RootNode.schelp + HelpSource/Classes/Rotate2.schelp + HelpSource/Classes/Routine.schelp + HelpSource/Classes/RunningMax.schelp + HelpSource/Classes/RunningMin.schelp + HelpSource/Classes/RunningSum.schelp + HelpSource/Classes/SCContainerView.schelp + HelpSource/Classes/SCControlView.schelp + HelpSource/Classes/SCDoc.schelp + HelpSource/Classes/SCDocEntry.schelp + HelpSource/Classes/SCDocHTMLRenderer.schelp + HelpSource/Classes/SCDocNode.schelp + HelpSource/Classes/SCDragView.schelp + HelpSource/Classes/SCEnvelopeEdit.schelp + HelpSource/Classes/SCImage.schelp + HelpSource/Classes/SCImageFilter.schelp + HelpSource/Classes/SCImageKernel.schelp + HelpSource/Classes/SCNSObject.schelp + HelpSource/Classes/SCViewHolder.schelp + HelpSource/Classes/SOS.schelp + HelpSource/Classes/SampleDur.schelp + HelpSource/Classes/SampleRate.schelp + HelpSource/Classes/Saw.schelp + HelpSource/Classes/Scale.schelp + HelpSource/Classes/Scheduler.schelp + HelpSource/Classes/Schmidt.schelp + HelpSource/Classes/ScopeOut.schelp + HelpSource/Classes/ScopeView.schelp + HelpSource/Classes/Score.schelp + HelpSource/Classes/ScrollView.schelp + HelpSource/Classes/Select.schelp + HelpSource/Classes/SelectX.schelp + HelpSource/Classes/SelectXFocus.schelp + HelpSource/Classes/Semaphore.schelp + HelpSource/Classes/SemiColonFileReader.schelp + HelpSource/Classes/SendPeakRMS.schelp + HelpSource/Classes/SendReply.schelp + HelpSource/Classes/SendTrig.schelp + HelpSource/Classes/SequenceableCollection.schelp + HelpSource/Classes/SerialPort.schelp + HelpSource/Classes/Server.schelp + HelpSource/Classes/ServerBoot.schelp + HelpSource/Classes/ServerOptions.schelp + HelpSource/Classes/ServerQuit.schelp + HelpSource/Classes/ServerTree.schelp + HelpSource/Classes/Set.schelp + HelpSource/Classes/SetResetFF.schelp + HelpSource/Classes/Shaper.schelp + HelpSource/Classes/SharedIn.schelp + HelpSource/Classes/SharedOut.schelp + HelpSource/Classes/ShutDown.schelp + HelpSource/Classes/Signal.schelp + HelpSource/Classes/Silent.schelp + HelpSource/Classes/SimpleController.schelp + HelpSource/Classes/SimpleNumber.schelp + HelpSource/Classes/SinOsc.schelp + HelpSource/Classes/SinOscFB.schelp + HelpSource/Classes/SkipJack.schelp + HelpSource/Classes/Slew.schelp + HelpSource/Classes/Slider.schelp + HelpSource/Classes/Slider2D.schelp + HelpSource/Classes/Slope.schelp + HelpSource/Classes/SortedList.schelp + HelpSource/Classes/SoundFile.schelp + HelpSource/Classes/SoundFileView.schelp + HelpSource/Classes/SoundIn.schelp + HelpSource/Classes/SparseArray.schelp + HelpSource/Classes/Spec.schelp + HelpSource/Classes/SpecCentroid.schelp + HelpSource/Classes/SpecFlatness.schelp + HelpSource/Classes/SpecPcile.schelp + HelpSource/Classes/Speech.schelp + HelpSource/Classes/Splay.schelp + HelpSource/Classes/SplayAz.schelp + HelpSource/Classes/SplayZ.schelp + HelpSource/Classes/Spring.schelp + HelpSource/Classes/StackLayout.schelp + HelpSource/Classes/StandardL.schelp + HelpSource/Classes/StandardN.schelp + HelpSource/Classes/StartUp.schelp + HelpSource/Classes/StaticText.schelp + HelpSource/Classes/Stepper.schelp + HelpSource/Classes/StereoConvolution2L.schelp + HelpSource/Classes/Stethoscope.schelp + HelpSource/Classes/Stream.schelp + HelpSource/Classes/StreamClutch.schelp + HelpSource/Classes/String.ext.schelp + HelpSource/Classes/String.schelp + HelpSource/Classes/SubsampleOffset.schelp + HelpSource/Classes/Sweep.schelp + HelpSource/Classes/Symbol.schelp + HelpSource/Classes/SymbolArray.schelp + HelpSource/Classes/SyncSaw.schelp + HelpSource/Classes/Synth.schelp + HelpSource/Classes/SynthDef.schelp + HelpSource/Classes/SynthDesc.schelp + HelpSource/Classes/SynthDescLib.schelp + HelpSource/Classes/SystemClock.schelp + HelpSource/Classes/T2A.schelp + HelpSource/Classes/T2K.schelp + HelpSource/Classes/TBall.schelp + HelpSource/Classes/TChoose.schelp + HelpSource/Classes/TDelay.schelp + HelpSource/Classes/TDuty.schelp + HelpSource/Classes/TDuty_old.schelp + HelpSource/Classes/TExpRand.schelp + HelpSource/Classes/TGrains.schelp + HelpSource/Classes/TIRand.schelp + HelpSource/Classes/TRand.schelp + HelpSource/Classes/TWChoose.schelp + HelpSource/Classes/TWindex.schelp + HelpSource/Classes/TabFileReader.schelp + HelpSource/Classes/TabletSlider2D.schelp + HelpSource/Classes/TabletView.schelp + HelpSource/Classes/Tap.schelp + HelpSource/Classes/Task.schelp + HelpSource/Classes/TaskProxy.schelp + HelpSource/Classes/TaskProxyGui.schelp + HelpSource/Classes/Tdef.schelp + HelpSource/Classes/TdefAllGui.schelp + HelpSource/Classes/TdefEditor.schelp + HelpSource/Classes/TdefGui.schelp + HelpSource/Classes/TempoBusClock.schelp + HelpSource/Classes/TempoClock.schelp + HelpSource/Classes/TextField.schelp + HelpSource/Classes/TextView.schelp + HelpSource/Classes/Thread.schelp + HelpSource/Classes/Thunk.schelp + HelpSource/Classes/Timer.schelp + HelpSource/Classes/ToggleFF.schelp + HelpSource/Classes/TouchResponder.schelp + HelpSource/Classes/TreeView.schelp + HelpSource/Classes/Trig.schelp + HelpSource/Classes/Trig1.schelp + HelpSource/Classes/TrigControl.schelp + HelpSource/Classes/True.schelp + HelpSource/Classes/Tuning.schelp + HelpSource/Classes/TwoPole.schelp + HelpSource/Classes/TwoWayIdentityDictionary.schelp + HelpSource/Classes/TwoZero.schelp + HelpSource/Classes/UGen.schelp + HelpSource/Classes/UnaryOpFunction.schelp + HelpSource/Classes/UnaryOpStream.schelp + HelpSource/Classes/UnaryOpUGen.schelp + HelpSource/Classes/UniqueID.schelp + HelpSource/Classes/UnixFILE.schelp + HelpSource/Classes/Unpack1FFT.schelp + HelpSource/Classes/UnpackFFT.schelp + HelpSource/Classes/UserView.schelp + HelpSource/Classes/VDiskIn.schelp + HelpSource/Classes/VLayout.schelp + HelpSource/Classes/VLayoutView.schelp + HelpSource/Classes/VOsc.schelp + HelpSource/Classes/VOsc3.schelp + HelpSource/Classes/VarLag.schelp + HelpSource/Classes/VarSaw.schelp + HelpSource/Classes/Vibrato.schelp + HelpSource/Classes/View.schelp + HelpSource/Classes/ViewRedirect.schelp + HelpSource/Classes/Volume.schelp + HelpSource/Classes/Warp.schelp + HelpSource/Classes/Warp1.schelp + HelpSource/Classes/Wavetable.schelp + HelpSource/Classes/WebView.schelp + HelpSource/Classes/WhiteNoise.schelp + HelpSource/Classes/WiiMote.schelp + HelpSource/Classes/Window.schelp + HelpSource/Classes/Wrap.schelp + HelpSource/Classes/WrapIndex.schelp + HelpSource/Classes/XFade2.schelp + HelpSource/Classes/XLine.schelp + HelpSource/Classes/XOut.schelp + HelpSource/Classes/ZeroCrossing.schelp + HelpSource/Guides/AggregateDevice.schelp + HelpSource/Guides/Backwards-Compatibility.schelp + HelpSource/Guides/Bundled-Messages.schelp + HelpSource/Guides/ClientVsServer.schelp + HelpSource/Guides/Debugging-tips.schelp + HelpSource/Guides/EmacsGUI.schelp + HelpSource/Guides/FFT-Overview.schelp + HelpSource/Guides/GUI-Introduction.schelp + HelpSource/Guides/GUI-Layout-Management.schelp + HelpSource/Guides/Glossary.schelp + HelpSource/Guides/How-to-Use-the-Interpreter.schelp + HelpSource/Guides/Internal-Snooping.schelp + HelpSource/Guides/Intro-to-Objects.schelp + HelpSource/Guides/J-concepts-in-SC.schelp + HelpSource/Guides/Linux_udev_setup.schelp + HelpSource/Guides/ListComprehensions.schelp + HelpSource/Guides/MIDI.schelp + HelpSource/Guides/More-On-Getting-Help.schelp + HelpSource/Guides/Multichannel-Expansion.schelp + HelpSource/Guides/News-3_5.schelp + HelpSource/Guides/News-Qt-GUI.schelp + HelpSource/Guides/NodeMessaging.schelp + HelpSource/Guides/Non-Realtime-Synthesis.schelp + HelpSource/Guides/OSC_communication.schelp + HelpSource/Guides/Order-of-execution.schelp + HelpSource/Guides/Polymorphism.schelp + HelpSource/Guides/Randomness.schelp + HelpSource/Guides/ServerTiming.schelp + HelpSource/Guides/Spawning.schelp + HelpSource/Guides/SuperColliderAU.schelp + HelpSource/Guides/Sync-Async.schelp + HelpSource/Guides/SynthDefsVsSynths.schelp + HelpSource/Guides/Tour_of_UGens.schelp + HelpSource/Guides/Tracing-Processes.schelp + HelpSource/Guides/UGens-and-Synths.schelp + HelpSource/Guides/Understanding-Errors.schelp + HelpSource/Guides/UserView-Subclassing.schelp + HelpSource/Guides/UsingExtensions.schelp + HelpSource/Guides/UsingMIDI.schelp + HelpSource/Guides/UsingQuarks.schelp + HelpSource/Guides/WritingClasses.schelp + HelpSource/Guides/WritingHelp.schelp + HelpSource/Guides/WritingPrimitives.schelp + HelpSource/Guides/WritingUGens.schelp + HelpSource/Help.schelp + HelpSource/MathJax/config/scmathjax.js + HelpSource/MathJax/fonts/HTML-CSS/TeX/svg/MathJax_AMS-Regular.svg + HelpSource/MathJax/fonts/HTML-CSS/TeX/svg/MathJax_Caligraphic-Bold.svg + HelpSource/MathJax/fonts/HTML-CSS/TeX/svg/MathJax_Caligraphic-Regular.svg + HelpSource/MathJax/fonts/HTML-CSS/TeX/svg/MathJax_Fraktur-Bold.svg + HelpSource/MathJax/fonts/HTML-CSS/TeX/svg/MathJax_Fraktur-Regular.svg + HelpSource/MathJax/fonts/HTML-CSS/TeX/svg/MathJax_Main-Bold.svg + HelpSource/MathJax/fonts/HTML-CSS/TeX/svg/MathJax_Main-Italic.svg + HelpSource/MathJax/fonts/HTML-CSS/TeX/svg/MathJax_Main-Regular.svg + HelpSource/MathJax/fonts/HTML-CSS/TeX/svg/MathJax_Math-BoldItalic.svg + HelpSource/MathJax/fonts/HTML-CSS/TeX/svg/MathJax_Math-Italic.svg + HelpSource/MathJax/fonts/HTML-CSS/TeX/svg/MathJax_Math-Regular.svg + HelpSource/MathJax/fonts/HTML-CSS/TeX/svg/MathJax_SansSerif-Bold.svg + HelpSource/MathJax/fonts/HTML-CSS/TeX/svg/MathJax_SansSerif-Italic.svg + HelpSource/MathJax/fonts/HTML-CSS/TeX/svg/MathJax_SansSerif-Regular.svg + HelpSource/MathJax/fonts/HTML-CSS/TeX/svg/MathJax_Script-Regular.svg + HelpSource/MathJax/fonts/HTML-CSS/TeX/svg/MathJax_Size1-Regular.svg + HelpSource/MathJax/fonts/HTML-CSS/TeX/svg/MathJax_Size2-Regular.svg + HelpSource/MathJax/fonts/HTML-CSS/TeX/svg/MathJax_Size3-Regular.svg + HelpSource/MathJax/fonts/HTML-CSS/TeX/svg/MathJax_Size4-Regular.svg + HelpSource/MathJax/fonts/HTML-CSS/TeX/svg/MathJax_Typewriter-Regular.svg + HelpSource/MathJax/fonts/HTML-CSS/TeX/svg/MathJax_WinChrome-Regular.svg + HelpSource/OldHelpWrapper.html + HelpSource/Other/HelpDocsLicensing.html + HelpSource/Overviews/ClassTree.schelp + HelpSource/Overviews/Classes.html + HelpSource/Overviews/Collections.schelp + HelpSource/Overviews/Documents.html + HelpSource/Overviews/Event_types.schelp + HelpSource/Overviews/GUI-Classes.schelp + HelpSource/Overviews/JITLib.schelp + HelpSource/Overviews/Methods.html + HelpSource/Overviews/Operators.schelp + HelpSource/Overviews/SC3vsSC2.schelp + HelpSource/Overviews/Streams.schelp + HelpSource/Overviews/SymbolicNotations.schelp + HelpSource/Reference/Adverbs.schelp + HelpSource/Reference/Assignment.schelp + HelpSource/Reference/Classes.schelp + HelpSource/Reference/Comments.schelp + HelpSource/Reference/Control-Structures.schelp + HelpSource/Reference/DocumentAutoCompletion.schelp + HelpSource/Reference/EmacsEditor.schelp + HelpSource/Reference/EventStream.schelp + HelpSource/Reference/Expression-Sequence.schelp + HelpSource/Reference/Functions.schelp + HelpSource/Reference/KeyboardShortcuts.schelp + HelpSource/Reference/Literals.schelp + HelpSource/Reference/Messages.schelp + HelpSource/Reference/Modifiers.schelp + HelpSource/Reference/NodeEvent.schelp + HelpSource/Reference/NodeProxy_roles.schelp + HelpSource/Reference/Partial-Application.schelp + HelpSource/Reference/Resize.schelp + HelpSource/Reference/SCDocSyntax.schelp + HelpSource/Reference/Scope.schelp + HelpSource/Reference/StartupFile.schelp + HelpSource/Reference/Syntax-Shortcuts.schelp + HelpSource/Reference/UGen-doneActions.schelp + HelpSource/Reference/asTarget.schelp + HelpSource/Reference/default_group.schelp + HelpSource/Reference/functions.png + HelpSource/Reference/gui.schelp + HelpSource/Reference/if.schelp + HelpSource/Reference/initClass.schelp + HelpSource/Reference/loop.schelp + HelpSource/Reference/matchItem.schelp + HelpSource/Reference/palette_color_groups.schelp + HelpSource/Reference/palette_color_roles.schelp + HelpSource/Reference/play.schelp + HelpSource/Reference/playN.schelp + HelpSource/Reference/plot.schelp + HelpSource/Reference/randomSeed.schelp + HelpSource/Reference/softPut.schelp + HelpSource/Reference/softSet.schelp + HelpSource/Reference/softVol_.schelp + HelpSource/Search.html + HelpSource/Tutorials/A-Practical-Guide/PG_01_Introduction.schelp + HelpSource/Tutorials/A-Practical-Guide/PG_02_Basic_Vocabulary.schelp + HelpSource/Tutorials/A-Practical-Guide/PG_03_What_Is_Pbind.schelp + HelpSource/Tutorials/A-Practical-Guide/PG_04_Words_to_Phrases.schelp + HelpSource/Tutorials/A-Practical-Guide/PG_05_Math_on_Patterns.schelp + HelpSource/Tutorials/A-Practical-Guide/PG_060_Filter_Patterns.schelp + HelpSource/Tutorials/A-Practical-Guide/PG_06a_Repetition_Contraint_Patterns.schelp + HelpSource/Tutorials/A-Practical-Guide/PG_06b_Time_Based_Patterns.schelp + HelpSource/Tutorials/A-Practical-Guide/PG_06c_Composition_of_Patterns.schelp + HelpSource/Tutorials/A-Practical-Guide/PG_06d_Parallel_Patterns.schelp + HelpSource/Tutorials/A-Practical-Guide/PG_06e_Language_Control.schelp + HelpSource/Tutorials/A-Practical-Guide/PG_06f_Server_Control.schelp + HelpSource/Tutorials/A-Practical-Guide/PG_06g_Data_Sharing.schelp + HelpSource/Tutorials/A-Practical-Guide/PG_07_Value_Conversions.schelp + HelpSource/Tutorials/A-Practical-Guide/PG_08_Event_Types_and_Parameters.schelp + HelpSource/Tutorials/A-Practical-Guide/PG_Cookbook01_Basic_Sequencing.schelp + HelpSource/Tutorials/A-Practical-Guide/PG_Cookbook02_Manipulating_Patterns.schelp + HelpSource/Tutorials/A-Practical-Guide/PG_Cookbook03_External_Control.schelp + HelpSource/Tutorials/A-Practical-Guide/PG_Cookbook04_Sending_MIDI.schelp + HelpSource/Tutorials/A-Practical-Guide/PG_Cookbook05_Using_Samples.schelp + HelpSource/Tutorials/A-Practical-Guide/PG_Cookbook06_Phrase_Network.schelp + HelpSource/Tutorials/A-Practical-Guide/PG_Cookbook07_Rhythmic_Variations.schelp + HelpSource/Tutorials/A-Practical-Guide/PG_Ref01_Pattern_Internals.schelp + HelpSource/Tutorials/Getting-Started/00-Getting-Started-With-SC.schelp + HelpSource/Tutorials/Getting-Started/01-Introductory-Remarks.schelp + HelpSource/Tutorials/Getting-Started/02-First-Steps.schelp + HelpSource/Tutorials/Getting-Started/03-Start-Your-Engines.schelp + HelpSource/Tutorials/Getting-Started/04-Functions-and-Other-Functionality.schelp + HelpSource/Tutorials/Getting-Started/05-Functions-and-Sound.schelp + HelpSource/Tutorials/Getting-Started/06-Presented-in-Living-Stereo.schelp + HelpSource/Tutorials/Getting-Started/07-Mix-it-Up.schelp + HelpSource/Tutorials/Getting-Started/08-Scoping-and-Plotting.schelp + HelpSource/Tutorials/Getting-Started/09-Getting-Help.schelp + HelpSource/Tutorials/Getting-Started/10-SynthDefs-and-Synths.schelp + HelpSource/Tutorials/Getting-Started/11-Busses.schelp + HelpSource/Tutorials/Getting-Started/12-Groups.schelp + HelpSource/Tutorials/Getting-Started/13-Buffers.schelp + HelpSource/Tutorials/Getting-Started/14-Scheduling-Events.schelp + HelpSource/Tutorials/Getting-Started/15-Sequencing-with-Routines-and-Tasks.schelp + HelpSource/Tutorials/Getting-Started/16-Sequencing-with-Patterns.schelp + HelpSource/Tutorials/Getting-Started/Functions-and-Sound-00.png + HelpSource/Tutorials/Getting-Started/Functions-and-Sound-02.png + HelpSource/Tutorials/Getting-Started/Functions-and-Sound-03.png + HelpSource/Tutorials/Getting-Started/Functions-and-Sound-04.png + HelpSource/Tutorials/Getting-Started/Scoping-and-Plotting01.png + HelpSource/Tutorials/JITLib/audio_rate_mapping.schelp + HelpSource/Tutorials/JITLib/basic_live_coding_techniques.schelp + HelpSource/Tutorials/JITLib/jitlib_asCompileString.schelp + HelpSource/Tutorials/JITLib/jitlib_basic_concepts_01.schelp + HelpSource/Tutorials/JITLib/jitlib_basic_concepts_02.schelp + HelpSource/Tutorials/JITLib/jitlib_basic_concepts_03.schelp + HelpSource/Tutorials/JITLib/jitlib_basic_concepts_04.schelp + HelpSource/Tutorials/JITLib/jitlib_efficiency.schelp + HelpSource/Tutorials/JITLib/jitlib_fading.schelp + HelpSource/Tutorials/JITLib/proxyspace_examples.schelp + HelpSource/Tutorials/JITLib/recursive_phrasing.schelp + HelpSource/Tutorials/JITLib/the_lazy_proxy.schelp + HelpSource/Tutorials/Mark_Polishook_tutorial/00_Introductory_tutorial.schelp + HelpSource/Tutorials/Mark_Polishook_tutorial/01_Startup.schelp + HelpSource/Tutorials/Mark_Polishook_tutorial/02_Evaluating_code.schelp + HelpSource/Tutorials/Mark_Polishook_tutorial/03_Comments.schelp + HelpSource/Tutorials/Mark_Polishook_tutorial/04_Help.schelp + HelpSource/Tutorials/Mark_Polishook_tutorial/05_The_network.schelp + HelpSource/Tutorials/Mark_Polishook_tutorial/06_Prerequisites.schelp + HelpSource/Tutorials/Mark_Polishook_tutorial/07_SynthDefs.schelp + HelpSource/Tutorials/Mark_Polishook_tutorial/08_Rates.schelp + HelpSource/Tutorials/Mark_Polishook_tutorial/09_Buses.schelp + HelpSource/Tutorials/Mark_Polishook_tutorial/10_Controls.schelp + HelpSource/Tutorials/Mark_Polishook_tutorial/11_Test_functions.schelp + HelpSource/Tutorials/Mark_Polishook_tutorial/12_UnaryOp_synthesis.schelp + HelpSource/Tutorials/Mark_Polishook_tutorial/13_BinaryOp_synthesis.schelp + HelpSource/Tutorials/Mark_Polishook_tutorial/14_Subtractive_synthesis.schelp + HelpSource/Tutorials/Mark_Polishook_tutorial/15_Groups.schelp + HelpSource/Tutorials/Mark_Polishook_tutorial/16_Playbuf.schelp + HelpSource/Tutorials/Mark_Polishook_tutorial/17_Delays_reverbs.schelp + HelpSource/Tutorials/Mark_Polishook_tutorial/18_Frequency_modulation.schelp + HelpSource/Tutorials/Mark_Polishook_tutorial/19_Scheduling.schelp + HelpSource/Tutorials/Mark_Polishook_tutorial/20_Debugging.schelp + HelpSource/Tutorials/Mark_Polishook_tutorial/21_Syntax_errors.schelp + HelpSource/Tutorials/Mark_Polishook_tutorial/22_Runtime_errors.schelp + HelpSource/Tutorials/Mark_Polishook_tutorial/Japanese_version/00.schelp + HelpSource/Tutorials/Mark_Polishook_tutorial/Japanese_version/01.schelp + HelpSource/Tutorials/Mark_Polishook_tutorial/Japanese_version/02.schelp + HelpSource/Tutorials/Mark_Polishook_tutorial/Japanese_version/03.schelp + HelpSource/Tutorials/Mark_Polishook_tutorial/Japanese_version/04.schelp + HelpSource/Tutorials/Mark_Polishook_tutorial/Japanese_version/05.schelp + HelpSource/Tutorials/Mark_Polishook_tutorial/Japanese_version/06.schelp + HelpSource/Tutorials/Mark_Polishook_tutorial/Japanese_version/07.schelp + HelpSource/Tutorials/Mark_Polishook_tutorial/Japanese_version/08.schelp + HelpSource/Tutorials/Mark_Polishook_tutorial/Japanese_version/09.schelp + HelpSource/Tutorials/Mark_Polishook_tutorial/Japanese_version/10.schelp + HelpSource/Tutorials/Mark_Polishook_tutorial/Japanese_version/11.schelp + HelpSource/Tutorials/Mark_Polishook_tutorial/Japanese_version/12.schelp + HelpSource/Tutorials/Mark_Polishook_tutorial/Japanese_version/13.schelp + HelpSource/Tutorials/Mark_Polishook_tutorial/Japanese_version/14.schelp + HelpSource/Tutorials/Mark_Polishook_tutorial/Japanese_version/15.schelp + HelpSource/Tutorials/Streams-Patterns-Events1.schelp + HelpSource/Tutorials/Streams-Patterns-Events2.schelp + HelpSource/Tutorials/Streams-Patterns-Events3.schelp + HelpSource/Tutorials/Streams-Patterns-Events4.schelp + HelpSource/Tutorials/Streams-Patterns-Events5.schelp + HelpSource/Tutorials/Streams-Patterns-Events6.schelp + HelpSource/Tutorials/Streams-Patterns-Events7.schelp + HelpSource/Tutorials/Tutorial.schelp + HelpSource/images/SC_icon.png + HelpSource/images/Swamp.png + HelpSource/images/icon.supercollider.png + HelpSource/images/lastnode.png + HelpSource/images/node.png + HelpSource/images/vduck2.jpg + HelpSource/images/vline.png + HelpSource/lang-sc.js + HelpSource/prettify.js + HelpSource/scdoc.css + HelpSource/scdoc.js + HelpSource/syntax_colors.html + INSTALL + QtCollider/CMakeLists.txt + QtCollider/Common.cpp + QtCollider/QcHelper.h + QtCollider/resources.qrc + QtCollider/style/ProxyStyle.cpp + QtCollider/style/ProxyStyle.hpp + QtCollider/style/routines.hpp + QtCollider/style/slider_style.cpp + QtCollider/style/style.cpp + QtCollider/style/style.hpp + README_IPHONE.txt + README_JAILBROKEN_IPHONE.txt + README_LINUX.txt + README_OS_X.txt + README_WINDOWS.txt + SCClassLibrary/Common/Audio/AudioIn.sc + SCClassLibrary/Common/Audio/BEQSuite.sc + SCClassLibrary/Common/Audio/BasicOpsUGen.sc + SCClassLibrary/Common/Audio/BufIO.sc + SCClassLibrary/Common/Audio/Chaos.sc + SCClassLibrary/Common/Audio/CheckBadValues.sc + SCClassLibrary/Common/Audio/Compander.sc + SCClassLibrary/Common/Audio/DelayWr.sc + SCClassLibrary/Common/Audio/Delays.sc + SCClassLibrary/Common/Audio/Demand.sc + SCClassLibrary/Common/Audio/DiskIO.sc + SCClassLibrary/Common/Audio/Env.sc + SCClassLibrary/Common/Audio/EnvGen.sc + SCClassLibrary/Common/Audio/FFT.sc + SCClassLibrary/Common/Audio/FFT2.sc + SCClassLibrary/Common/Audio/FSinOsc.sc + SCClassLibrary/Common/Audio/Filter.sc + SCClassLibrary/Common/Audio/FreeVerb.sc + SCClassLibrary/Common/Audio/GVerb.sc + SCClassLibrary/Common/Audio/Gendyn.sc + SCClassLibrary/Common/Audio/GrainUGens.sc + SCClassLibrary/Common/Audio/Hilbert.sc + SCClassLibrary/Common/Audio/IEnvGen.sc + SCClassLibrary/Common/Audio/InOut.sc + SCClassLibrary/Common/Audio/InfoUGens.sc + SCClassLibrary/Common/Audio/InterplEnv.sc + SCClassLibrary/Common/Audio/Line.sc + SCClassLibrary/Common/Audio/MacUGens.sc + SCClassLibrary/Common/Audio/MachineListening.sc + SCClassLibrary/Common/Audio/Mix.sc + SCClassLibrary/Common/Audio/MoogFF.sc + SCClassLibrary/Common/Audio/Noise.sc + SCClassLibrary/Common/Audio/Osc.sc + SCClassLibrary/Common/Audio/PSinGrain.sc + SCClassLibrary/Common/Audio/Pan.sc + SCClassLibrary/Common/Audio/PartConv.sc + SCClassLibrary/Common/Audio/PhysicalModel.sc + SCClassLibrary/Common/Audio/PitchShift.sc + SCClassLibrary/Common/Audio/Pluck.sc + SCClassLibrary/Common/Audio/Poll.sc + SCClassLibrary/Common/Audio/Splay.sc + SCClassLibrary/Common/Audio/SynthDef.sc + SCClassLibrary/Common/Audio/SynthDesc.sc + SCClassLibrary/Common/Audio/SystemSynthDefs.sc + SCClassLibrary/Common/Audio/Trig.sc + SCClassLibrary/Common/Audio/UGen.sc + SCClassLibrary/Common/Audio/UGenCategories.sc + SCClassLibrary/Common/Audio/canFreeSynth.sc + SCClassLibrary/Common/Collections/Array.sc + SCClassLibrary/Common/Collections/Array2D.sc + SCClassLibrary/Common/Collections/ArrayedCollection.sc + SCClassLibrary/Common/Collections/Association.sc + SCClassLibrary/Common/Collections/Bag.sc + SCClassLibrary/Common/Collections/Collection.sc + SCClassLibrary/Common/Collections/Dictionary.sc + SCClassLibrary/Common/Collections/Environment.sc + SCClassLibrary/Common/Collections/EnvironmentRedirect.sc + SCClassLibrary/Common/Collections/Event.sc + SCClassLibrary/Common/Collections/EventTypesWithCleanup.sc + SCClassLibrary/Common/Collections/Harmonics.sc + SCClassLibrary/Common/Collections/Interval.sc + SCClassLibrary/Common/Collections/Library.sc + SCClassLibrary/Common/Collections/LinkedList.sc + SCClassLibrary/Common/Collections/List.sc + SCClassLibrary/Common/Collections/ObjectTable.sc + SCClassLibrary/Common/Collections/Pair.sc + SCClassLibrary/Common/Collections/PriorityQueue.sc + SCClassLibrary/Common/Collections/RingBuffer.sc + SCClassLibrary/Common/Collections/Scale.sc + SCClassLibrary/Common/Collections/SequenceableCollection.sc + SCClassLibrary/Common/Collections/Set.sc + SCClassLibrary/Common/Collections/SortedList.sc + SCClassLibrary/Common/Collections/SparseArray.sc + SCClassLibrary/Common/Collections/String.sc + SCClassLibrary/Common/Collections/linux/extString_linux.sc + SCClassLibrary/Common/Control/Buffer.sc + SCClassLibrary/Common/Control/Bus.sc + SCClassLibrary/Common/Control/Engine.sc + SCClassLibrary/Common/Control/GeneralHID.sc + SCClassLibrary/Common/Control/GeneralHIDSpec.sc + SCClassLibrary/Common/Control/GraphBuilder.sc + SCClassLibrary/Common/Control/HIDDeviceService.sc + SCClassLibrary/Common/Control/MIDIOut.sc + SCClassLibrary/Common/Control/MIDIResponder.sc + SCClassLibrary/Common/Control/Module.sc + SCClassLibrary/Common/Control/NetAddr.sc + SCClassLibrary/Common/Control/Node.sc + SCClassLibrary/Common/Control/NodeControl.sc + SCClassLibrary/Common/Control/NodeWatcher.sc + SCClassLibrary/Common/Control/OSC.sc + SCClassLibrary/Common/Control/OSCBundle.sc + SCClassLibrary/Common/Control/OSCService.sc + SCClassLibrary/Common/Control/OSCpathResponder.sc + SCClassLibrary/Common/Control/OSCresponder.sc + SCClassLibrary/Common/Control/ResponseDefs.sc + SCClassLibrary/Common/Control/ScopeBuffer.sc + SCClassLibrary/Common/Control/Score.sc + SCClassLibrary/Common/Control/SerialPort.sc + SCClassLibrary/Common/Control/SkipJack.sc + SCClassLibrary/Common/Control/SystemActions.sc + SCClassLibrary/Common/Control/Volume.sc + SCClassLibrary/Common/Control/WII.sc + SCClassLibrary/Common/Control/asBus.sc + SCClassLibrary/Common/Control/asDefName.sc + SCClassLibrary/Common/Control/asGroup.sc + SCClassLibrary/Common/Control/asMIDIPort.sc + SCClassLibrary/Common/Control/asNodeArg.sc + SCClassLibrary/Common/Control/asScore/RenderNotePlayer.sc + SCClassLibrary/Common/Control/asScore/ScoreStreamPlayer.sc + SCClassLibrary/Common/Control/asScore/asScore.sc + SCClassLibrary/Common/Control/asTarget.sc + SCClassLibrary/Common/Control/extSystemActions.sc + SCClassLibrary/Common/Control/ignore/GeneralHID.sc + SCClassLibrary/Common/Control/schedBundle.sc + SCClassLibrary/Common/Core/AbstractFunction.sc + SCClassLibrary/Common/Core/Boolean.sc + SCClassLibrary/Common/Core/Char.sc + SCClassLibrary/Common/Core/Clock.sc + SCClassLibrary/Common/Core/Color.sc + SCClassLibrary/Common/Core/Condition.sc + SCClassLibrary/Common/Core/Error.sc + SCClassLibrary/Common/Core/Finalize.sc + SCClassLibrary/Common/Core/Function.sc + SCClassLibrary/Common/Core/Infinitum.sc + SCClassLibrary/Common/Core/Kernel.sc + SCClassLibrary/Common/Core/LanguageConfig.sc + SCClassLibrary/Common/Core/Message.sc + SCClassLibrary/Common/Core/Nil.sc + SCClassLibrary/Common/Core/Object.sc + SCClassLibrary/Common/Core/Ref.sc + SCClassLibrary/Common/Core/Semaphore.sc + SCClassLibrary/Common/Core/Symbol.sc + SCClassLibrary/Common/Core/Thread.sc + SCClassLibrary/Common/Core/debug.sc + SCClassLibrary/Common/Files/Directory.sc + SCClassLibrary/Common/Files/File.sc + SCClassLibrary/Common/Files/Help.sc + SCClassLibrary/Common/Files/PathName.sc + SCClassLibrary/Common/Files/SoundFile.sc + SCClassLibrary/Common/GUI/Base/EZKnob.sc + SCClassLibrary/Common/GUI/Base/EZListView.sc + SCClassLibrary/Common/GUI/Base/EZNumber.sc + SCClassLibrary/Common/GUI/Base/EZPopUpMenu.sc + SCClassLibrary/Common/GUI/Base/EZRangerSC.sc + SCClassLibrary/Common/GUI/Base/EZScroller.sc + SCClassLibrary/Common/GUI/Base/EZSlider.sc + SCClassLibrary/Common/GUI/Base/EZSpecEditor.sc + SCClassLibrary/Common/GUI/Base/EZText.sc + SCClassLibrary/Common/GUI/Base/EZgui.sc + SCClassLibrary/Common/GUI/Base/Gradient.sc + SCClassLibrary/Common/GUI/ControlModel.sc + SCClassLibrary/Common/GUI/Document.sc + SCClassLibrary/Common/GUI/FlowLayout.sc + SCClassLibrary/Common/GUI/GUI.sc + SCClassLibrary/Common/GUI/Grid.sc + SCClassLibrary/Common/GUI/HelpBrowser.sc + SCClassLibrary/Common/GUI/Inspector.sc + SCClassLibrary/Common/GUI/Model.sc + SCClassLibrary/Common/GUI/PlusGUI/Collections/StringPlusGUI.sc + SCClassLibrary/Common/GUI/PlusGUI/Control/FreqScope.sc + SCClassLibrary/Common/GUI/PlusGUI/Control/GeneralHIDGUI.sc + SCClassLibrary/Common/GUI/PlusGUI/Control/ServerPlusGUI.sc + SCClassLibrary/Common/GUI/PlusGUI/Control/SynthDescLibPlusGUI.sc + SCClassLibrary/Common/GUI/PlusGUI/Control/SynthDescPlusGUI.sc + SCClassLibrary/Common/GUI/PlusGUI/Control/UGen-scope.sc + SCClassLibrary/Common/GUI/PlusGUI/Control/WiiMoteGUI.sc + SCClassLibrary/Common/GUI/PlusGUI/Control/scopeResponse.sc + SCClassLibrary/Common/GUI/PlusGUI/Control/server-meter.sc + SCClassLibrary/Common/GUI/PlusGUI/Control/server-scope.sc + SCClassLibrary/Common/GUI/PlusGUI/Core/ClassBrowser.sc + SCClassLibrary/Common/GUI/PlusGUI/Core/HelperPlus.sc + SCClassLibrary/Common/GUI/PlusGUI/Core/HistoryGui.sc + SCClassLibrary/Common/GUI/PlusGUI/Core/KernelPlusGUI.sc + SCClassLibrary/Common/GUI/PlusGUI/Core/NilPlusGUI.sc + SCClassLibrary/Common/GUI/PlusGUI/Core/ObjectPlusGUI.sc + SCClassLibrary/Common/GUI/PlusGUI/Files/FilePlusGUI.sc + SCClassLibrary/Common/GUI/PlusGUI/Math/PlotView.sc + SCClassLibrary/Common/GUI/SCViewHolder.sc + SCClassLibrary/Common/GUI/ServerMeter.sc + SCClassLibrary/Common/GUI/ViewRedirect.sc + SCClassLibrary/Common/GUI/guicrucial/ObjectGui.sc + SCClassLibrary/Common/GUI/guicrucial/StringGui.sc + SCClassLibrary/Common/GUI/guicrucial/gui.sc + SCClassLibrary/Common/GUI/viewExtensions.sc + SCClassLibrary/Common/Geometry/Point.sc + SCClassLibrary/Common/Geometry/Rect.sc + SCClassLibrary/Common/Geometry/Size.sc + SCClassLibrary/Common/Math/Complex.sc + SCClassLibrary/Common/Math/Date.sc + SCClassLibrary/Common/Math/Float.sc + SCClassLibrary/Common/Math/Integer.sc + SCClassLibrary/Common/Math/Magnitude.sc + SCClassLibrary/Common/Math/Number.sc + SCClassLibrary/Common/Math/Polar.sc + SCClassLibrary/Common/Math/Signal.sc + SCClassLibrary/Common/Math/SimpleNumber.sc + SCClassLibrary/Common/Quarks/LocalQuarks.sc + SCClassLibrary/Common/Quarks/Quark.sc + SCClassLibrary/Common/Quarks/QuarkSVNRepository.sc + SCClassLibrary/Common/Quarks/Quarks.sc + SCClassLibrary/Common/Quarks/packages.sc + SCClassLibrary/Common/Streams/BasicOpsStream.sc + SCClassLibrary/Common/Streams/ControlPatterns.sc + SCClassLibrary/Common/Streams/EventStreamCleanup.sc + SCClassLibrary/Common/Streams/FilterPatterns.sc + SCClassLibrary/Common/Streams/FuncStreamAsRoutine.sc + SCClassLibrary/Common/Streams/History.sc + SCClassLibrary/Common/Streams/IOStream.sc + SCClassLibrary/Common/Streams/ListPatterns.sc + SCClassLibrary/Common/Streams/NodeEvents.sc + SCClassLibrary/Common/Streams/PatternCategories.sc + SCClassLibrary/Common/Streams/PatternConductor.sc + SCClassLibrary/Common/Streams/Patterns.sc + SCClassLibrary/Common/Streams/Penv.sc + SCClassLibrary/Common/Streams/Pfx.sc + SCClassLibrary/Common/Streams/PgeneralHid.sc + SCClassLibrary/Common/Streams/Plambda.sc + SCClassLibrary/Common/Streams/PmonoStreams.sc + SCClassLibrary/Common/Streams/Ppar.sc + SCClassLibrary/Common/Streams/Ppatmod.sc + SCClassLibrary/Common/Streams/Pproto.sc + SCClassLibrary/Common/Streams/Prewrite.sc + SCClassLibrary/Common/Streams/Pseed.sc + SCClassLibrary/Common/Streams/Pspawner.sc + SCClassLibrary/Common/Streams/Quant.sc + SCClassLibrary/Common/Streams/RandomDistPatterns.sc + SCClassLibrary/Common/Streams/Rest.sc + SCClassLibrary/Common/Streams/Stream.sc + SCClassLibrary/Common/Streams/TabFileReader.sc + SCClassLibrary/Common/Streams/TimePatterns.sc + SCClassLibrary/Common/Unix/Unix.sc + SCClassLibrary/Common/Unix/UnixFILE.sc + SCClassLibrary/DefaultLibrary/Main.sc + SCClassLibrary/DefaultLibrary/dumpFullInterface.sc + SCClassLibrary/DefaultLibrary/extHelpMethodArgs.sc + SCClassLibrary/DefaultLibrary/extNumber.sc + SCClassLibrary/JITLib/GUI/EnvirGui.sc + SCClassLibrary/JITLib/GUI/JITGui.sc + SCClassLibrary/JITLib/GUI/MonitorGui.sc + SCClassLibrary/JITLib/GUI/NdefGui.sc + SCClassLibrary/JITLib/GUI/NdefParamGui.sc + SCClassLibrary/JITLib/GUI/NodeProxyEditor.sc + SCClassLibrary/JITLib/GUI/ProxyMixer.sc + SCClassLibrary/JITLib/GUI/ProxyMixerOld.sc + SCClassLibrary/JITLib/GUI/ProxyMonitorGui.sc + SCClassLibrary/JITLib/GUI/TaskProxyGui.sc + SCClassLibrary/JITLib/GUI/extJITgui.sc + SCClassLibrary/JITLib/GUI/extSoftSet.sc + SCClassLibrary/JITLib/Patterns/Fdef.sc + SCClassLibrary/JITLib/Patterns/OpFunctionProxy.sc + SCClassLibrary/JITLib/Patterns/Pdef.sc + SCClassLibrary/JITLib/Patterns/Psym.sc + SCClassLibrary/JITLib/Patterns/Pxfade.sc + SCClassLibrary/JITLib/Patterns/extFunction.sc + SCClassLibrary/JITLib/Patterns/extPostAsCode.sc + SCClassLibrary/JITLib/Patterns/extRoutine.sc + SCClassLibrary/JITLib/ProxySpace/BusPlug.sc + SCClassLibrary/JITLib/ProxySpace/InBus.sc + SCClassLibrary/JITLib/ProxySpace/NodeMap.sc + SCClassLibrary/JITLib/ProxySpace/NodeMapSetting.sc + SCClassLibrary/JITLib/ProxySpace/NodeProxy.sc + SCClassLibrary/JITLib/ProxySpace/ProxyInterfaces.sc + SCClassLibrary/JITLib/ProxySpace/ProxySpace.sc + SCClassLibrary/JITLib/ProxySpace/ProxySynthDef.sc + SCClassLibrary/JITLib/ProxySpace/TempoBusClock.sc + SCClassLibrary/JITLib/ProxySpace/extStoreOn.sc + SCClassLibrary/JITLib/ProxySpace/operators.sc + SCClassLibrary/JITLib/ProxySpace/wrapForNodeProxy.sc + SCClassLibrary/Platform/Platform.sc + SCClassLibrary/Platform/linux/GLID.sc + SCClassLibrary/Platform/linux/LID.sc + SCClassLibrary/Platform/linux/LinuxPlatform.sc + SCClassLibrary/Platform/linux/extMIDIOut.sc + SCClassLibrary/Platform/linux/extMain.sc + SCClassLibrary/QtCollider/BasicViews.sc + SCClassLibrary/QtCollider/QDialog.sc + SCClassLibrary/QtCollider/QEnvelopeView.sc + SCClassLibrary/QtCollider/QFont.sc + SCClassLibrary/QtCollider/QKnob.sc + SCClassLibrary/QtCollider/QLayout.sc + SCClassLibrary/QtCollider/QLevelIndicator.sc + SCClassLibrary/QtCollider/QListView.sc + SCClassLibrary/QtCollider/QMultiSliderView.sc + SCClassLibrary/QtCollider/QNumberBox.sc + SCClassLibrary/QtCollider/QObject.sc + SCClassLibrary/QtCollider/QPalette.sc + SCClassLibrary/QtCollider/QPen.sc + SCClassLibrary/QtCollider/QPenPrinter.sc + SCClassLibrary/QtCollider/QRangeSlider.sc + SCClassLibrary/QtCollider/QScope.sc + SCClassLibrary/QtCollider/QScope2.sc + SCClassLibrary/QtCollider/QSlider.sc + SCClassLibrary/QtCollider/QSlider2D.sc + SCClassLibrary/QtCollider/QSoundFileView.sc + SCClassLibrary/QtCollider/QStethoscope.sc + SCClassLibrary/QtCollider/QStethoscope2.sc + SCClassLibrary/QtCollider/QTextView.sc + SCClassLibrary/QtCollider/QTreeView.sc + SCClassLibrary/QtCollider/QUserView.sc + SCClassLibrary/QtCollider/QView.sc + SCClassLibrary/QtCollider/QWebView.sc + SCClassLibrary/QtCollider/QWindow.sc + SCClassLibrary/QtCollider/QtGUI.sc + SCClassLibrary/QtCollider/deprecated-3.5.sc + SCClassLibrary/QtCollider/dnd_views.sc + SCClassLibrary/QtCollider/enums.sc + SCClassLibrary/QtCollider/flowViewSupportQt.sc + SCClassLibrary/QtCollider/viewExtensionsQt.sc + SCClassLibrary/SCDoc/SCDoc.sc + SCClassLibrary/SCDoc/SCDocRenderer.sc + SCClassLibrary/SCDoc/TODO + SCClassLibrary/backwards_compatibility/PMOsc.sc + SCClassLibrary/backwards_compatibility/extMethods.sc + SCClassLibrary/deprecated/Helper/autoClassHelper.sc + SCClassLibrary/deprecated/Helper/autoClassHelperTest.sc + SCClassLibrary/deprecated/Helper/classHelper.sc + SCClassLibrary/deprecated/Helper/docParser.sc + SCClassLibrary/deprecated/Helper/helper.sc + SCClassLibrary/deprecated/Helper/helperExt.sc + SCClassLibrary/deprecated/Helper/topicHelper.sc + SCClassLibrary/deprecated/Helper/uGenHelper.sc + SCClassLibrary/deprecated/deprecated-3.5.sc + SCDoc/CMakeLists.txt + SCDoc/SCDoc.h + SCDoc/SCDocPrim.h + SCDoc/build_parser.sh + SCDoc/main.cpp + SCVersion.txt + bindings/CMakeLists.txt + bindings/PySCLang/CMakeLists.txt + bindings/PySCLang/PySCLang.cpp + bindings/PySCLang/PySCLang.def + bindings/PySCLang/ReadMe.txt + bindings/PySCLang/setup.py + bindings/PySCLang/stdafx.cpp + bindings/PySCLang/stdafx.h + build_sclang.cfg.in + cmake_modules/FinalFile.cmake + cmake_modules/FindAvahi.cmake + cmake_modules/FindBluetooth.cmake + cmake_modules/FindCWiid.cmake + cmake_modules/FindFFTW3f.cmake + cmake_modules/FindICU.cmake + cmake_modules/FindPortmidi.cmake + cmake_modules/FindPthreads.cmake + cmake_modules/FindReadline.cmake + cmake_modules/FindSndfile.cmake + cmake_modules/MacAppFolder.cmake + cmake_modules/cmake_uninstall.cmake.in + common/SC_StandAloneInfo_Darwin.cpp + common/fftlib.c + common/sc_popen.cpp + debian/README.extensions + debian/README.source + debian/compat + debian/control + debian/gbp.conf + debian/libscsynth1.install + debian/patches/series + debian/patches/update_boostlockfree_prefixhpp.patch + debian/rules + debian/scel.desktop + debian/sclang.1 + debian/sclangpipe_app.1 + debian/scsynth.1 + debian/scvim.1 + debian/scvim.desktop + debian/scvim_make_help.1 + debian/source/format + debian/supercollider-common.install + debian/supercollider-common.linktrees + debian/supercollider-dev.install + debian/supercollider-doc.install + debian/supercollider-emacs.emacsen-install + debian/supercollider-emacs.emacsen-remove + debian/supercollider-emacs.emacsen-startup + debian/supercollider-emacs.install + debian/supercollider-emacs.lintian-overrides + debian/supercollider-emacs.menu + debian/supercollider-gedit.install + debian/supercollider-server.install + debian/supercollider-supernova.install + debian/supercollider-vim.README.Debian + debian/supercollider-vim.install + debian/supercollider-vim.lintian-overrides + debian/supercollider-vim.menu + debian/supercollider-vim.yaml + debian/supercollider.install + debian/supernova.1 + debian/watch + editors/CMakeLists.txt + editors/sced/AUTHORS + editors/sced/CMakeLists.txt + editors/sced/ChangeLog + editors/sced/README + editors/sced/TODO + editors/sced/data/supercollider.lang + editors/sced/data/supercollider.xml + editors/sced/scedwin/CMakeLists.txt + editors/sced/scedwin/ext/cppspecs + editors/scel/CMakeLists.txt + editors/scel/README + editors/scel/el/CMakeLists.txt + editors/scel/el/sclang-dev.el + editors/scel/sc/CMakeLists.txt + editors/scel/sc/EmacsBuffer.sc + editors/scel/sc/extBuffer.sc + editors/scel/sc/extClassBrowser.sc + editors/scel/sc/homeContext.sc + editors/scvim/BUGS + editors/scvim/CMakeLists.txt + editors/scvim/NEWS + editors/scvim/README + editors/scvim/SCVim.scd + editors/scvim/TODO + editors/scvim/extra/VimDocument.sc + editors/scvim/extra/alex-darkblue.vim + editors/scvim/indent/supercollider.vim + editors/scvim/registry/supercollider-vim.yaml.in + editors/scvim/scvimrc + editors/scvim/syntax/supercollider_objects.vim + examples/CocoaBridge/NSControl-SCWindow.scd + examples/CocoaBridge/NSPopupButton.scd + examples/CocoaBridge/NSTableView.scd + examples/CocoaBridge/SCNSObject control actions.scd + examples/CocoaBridge/SCNSObjectsTest.scd + examples/CocoaBridge/boolean.scd + examples/CocoaBridge/notification.scd + examples/GUI examples/GUI_examples1.scd + examples/GUI examples/GUI_examples2.scd + examples/GUI examples/Nick's LetterGimmick.scd + examples/GUI examples/SCScope view x,y plot.scd + examples/GUI examples/ScopeExample.scd + examples/GUI examples/TwoMultiSlidersInOne.scd + examples/GUI examples/analog-drum-tuner.scd + examples/GUI examples/rotary hommage duchamp.scd + examples/GUI examples/scimage_animation.scd + examples/GUI examples/strike.scd + examples/between_languages/fortran_supercollider.scd + examples/demonstrations/100 FM Synths.scd + examples/demonstrations/Atari2600.scd + examples/demonstrations/Chaotic Patterns.scd + examples/demonstrations/DemandingStudies.scd + examples/demonstrations/DrumSynths.scd + examples/demonstrations/GetTheTwits.scd + examples/demonstrations/HarmonicsVoice.html + examples/demonstrations/Modal Space.scd + examples/demonstrations/SC2-examples_1.scd + examples/demonstrations/SC2-examples_2.scd + examples/demonstrations/SC_website_example.scd + examples/demonstrations/Theremin.scd + examples/demonstrations/TriggerBufferGranulator.scd + examples/demonstrations/babbling brook.scd + examples/demonstrations/bit_reduction.scd + examples/demonstrations/env automation.scd + examples/demonstrations/fft.scd + examples/demonstrations/more graphs.scd + examples/demonstrations/oh yes more fibs.scd + examples/demonstrations/sc_onliner.scd + examples/demonstrations/single_sample_feedback.scd + examples/demonstrations/single_sample_feedback_02.scd + examples/demonstrations/snare909.scd + examples/misuse_and_hacks/generate_titles.scd + examples/misuse_and_hacks/redFrik2.scd + examples/misuse_and_hacks/redSnail.scd + examples/misuse_and_hacks/redSnake.scd + examples/misuse_and_hacks/redWorm.scd + examples/other/Exploring_SCLang.scd + examples/other/KeyboardWindow.scd + examples/other/quines.scd + examples/pieces/DreamHouse.scd + examples/pieces/DrummerSynthDef.scd + examples/pieces/Little_Man_From_Another_Place.scd + examples/pieces/Poeme Symphonique.scd + examples/pieces/RM-octaver.scd + examples/pieces/Record Scratcher.scd + examples/pieces/Termite_College.scd + examples/pieces/Trains.scd + examples/pieces/acid_otophilia.scd + examples/pieces/deap_sea.scd + examples/pieces/hommage_a_duerer.scd + examples/pieces/microhelix_study.scd + examples/pieces/some_constellations.scd + examples/pieces/spacelab.scd + examples/research_and_tools/ASA.scd + examples/research_and_tools/Diamond.scd + examples/research_and_tools/SeminaireMusical.scd + examples/research_and_tools/ShepardTones SignalBuf.scd + examples/research_and_tools/html-help-color-fixer.scd + examples/research_and_tools/trochoid curve.scd + external_libraries/CMakeLists.txt + external_libraries/TLSF-2.4.6/COPYING + external_libraries/TLSF-2.4.6/Changelog + external_libraries/TLSF-2.4.6/TODO + external_libraries/TLSF-2.4.6/examples/Makefile + external_libraries/TLSF-2.4.6/examples/test.c + external_libraries/TLSF-2.4.6/examples/test1.c + external_libraries/TLSF-2.4.6/examples/test2.c + external_libraries/TLSF-2.4.6/examples/test3.c + external_libraries/TLSF-2.4.6/examples/test4.c + external_libraries/TLSF-2.4.6/src/Makefile + external_libraries/TLSF-2.4.6/src/target.h + external_libraries/boost_endian/libs/integer/test/endian-in-sandbox/binary_stream_test/binary_stream_test.vcproj + external_libraries/boost_endian/libs/integer/test/endian-in-sandbox/common.vsprops + external_libraries/boost_endian/libs/integer/test/endian-in-sandbox/endian-in-sandbox.sln + external_libraries/boost_endian/libs/integer/test/endian-in-sandbox/endian_binary_stream_test/endian_binary_stream_test.vcproj + external_libraries/boost_endian/libs/integer/test/endian-in-sandbox/endian_example/endian_example.vcproj + external_libraries/boost_endian/libs/integer/test/endian-in-sandbox/endian_hello_world/endian_hello_world.vcproj + external_libraries/boost_endian/libs/integer/test/endian-in-sandbox/endian_in_union_test/endian_in_union_test.vcproj + external_libraries/boost_endian/libs/integer/test/endian-in-sandbox/endian_operations_test/endian_operations_test.vcproj + external_libraries/boost_endian/libs/integer/test/endian-in-sandbox/endian_test/endian_test.vcproj + external_libraries/boost_endian/libs/integer/test/endian-in-sandbox/scoped_enum_emulation_test/scoped_enum_emulation_test.vcproj + external_libraries/boost_endian/libs/integer/test/test.bat + external_libraries/boost_endian/libs/integer/zip-endian.bat + external_libraries/boost_lockfree/CMakeLists.txt + external_libraries/boost_lockfree/boost/lockfree/detail/atomic.hpp + external_libraries/boost_lockfree/doxygen.conf + external_libraries/boost_lockfree/libs/atomic/doc/examples.qbk + external_libraries/boost_lockfree/libs/atomic/doc/platform.qbk + external_libraries/boost_lockfree/libs/atomic/test/simple.cpp + external_libraries/boost_lockfree/libs/lockfree/doc/CMakeLists.txt + external_libraries/boost_lockfree/libs/lockfree/examples/CMakeLists.txt + external_libraries/boost_lockfree/libs/lockfree/test/CMakeLists.txt + external_libraries/boost_lockfree/libs/lockfree/test/bench_1.cpp + external_libraries/boost_lockfree/libs/lockfree/test/fifo_test.cpp + external_libraries/boost_lockfree/libs/lockfree/test/freelist_test.cpp + external_libraries/boost_lockfree/libs/lockfree/test/ringbuffer_test.cpp + external_libraries/boost_lockfree/libs/lockfree/test/stack_test.cpp + external_libraries/boost_lockfree/libs/lockfree/test/tagged_ptr_test.cpp + external_libraries/boost_lockfree/libs/lockfree/test/test_helpers.hpp + external_libraries/boost_lockfree/make-tarball.sh + external_libraries/extract_boost.sh + external_libraries/nova-simd/CMakeLists.txt + external_libraries/nova-simd/README + external_libraries/nova-simd/benchmarks/CMakeLists.txt + external_libraries/nova-simd/benchmarks/abs_benchmarks.cpp + external_libraries/nova-simd/benchmarks/clear_benchmark.cpp + external_libraries/nova-simd/benchmarks/clip_benchmarks.cpp + external_libraries/nova-simd/benchmarks/copy_benchmark.cpp + external_libraries/nova-simd/benchmarks/inplace_benchmark.cpp + external_libraries/nova-simd/benchmarks/round_benchmark.cpp + external_libraries/nova-simd/benchmarks/simd_ampmod_benchmarks.cpp + external_libraries/nova-simd/benchmarks/simd_mix_benchmark.cpp + external_libraries/nova-simd/benchmarks/simd_pan2_benchmark.cpp + external_libraries/nova-simd/benchmarks/simd_peakmeter_benchmarks.cpp + external_libraries/nova-simd/benchmarks/simd_plus_benchmarks.cpp + external_libraries/nova-simd/benchmarks/simd_pow_benchmarks.cpp + external_libraries/nova-simd/benchmarks/simd_slope_benchmarks.cpp + external_libraries/nova-simd/benchmarks/simd_softclip_benchmarks.cpp + external_libraries/nova-simd/benchmarks/simd_tan_benchmarks.cpp + external_libraries/nova-simd/benchmarks/simd_tanh_benchmarks.cpp + external_libraries/nova-simd/benchmarks/simd_unroll_benchmarks.cpp + external_libraries/nova-simd/benchmarks/simd_unroll_benchmarks2.cpp + external_libraries/nova-simd/testsuite/CMakeLists.txt + external_libraries/nova-simd/testsuite/ampmod_test.cpp + external_libraries/nova-simd/testsuite/simd_binary_tests.cpp + external_libraries/nova-simd/testsuite/simd_horizontal_tests.cpp + external_libraries/nova-simd/testsuite/simd_math_tests.cpp + external_libraries/nova-simd/testsuite/simd_memory_tests.cpp + external_libraries/nova-simd/testsuite/simd_mix_tests.cpp + external_libraries/nova-simd/testsuite/simd_pan_tests.cpp + external_libraries/nova-simd/testsuite/simd_peak_tests.cpp + external_libraries/nova-simd/testsuite/simd_round_tests.cpp + external_libraries/nova-simd/testsuite/simd_ternary_tests.cpp + external_libraries/nova-simd/testsuite/simd_tests.cpp + external_libraries/nova-simd/testsuite/simd_unary_tests.cpp + external_libraries/nova-simd/testsuite/simd_unit_conversion_tests.cpp + external_libraries/nova-simd/testsuite/softclip_test.cpp + external_libraries/nova-simd/testsuite/test_helper.hpp + external_libraries/nova-simd/testsuite/vec_test.cpp + external_libraries/nova-tt/CMakeLists.txt + external_libraries/nova-tt/Doxyfile + external_libraries/nova-tt/README + external_libraries/nova-tt/nova-tt.kdev4 + external_libraries/nova-tt/testsuite/CMakeLists.txt + external_libraries/nova-tt/testsuite/mlock_test.cpp + external_libraries/nova-tt/testsuite/nanosleep.cpp + external_libraries/nova-tt/testsuite/nanosleep_test.cpp + external_libraries/nova-tt/testsuite/rw_mutex_test.cpp + external_libraries/nova-tt/testsuite/rw_spinlock_test.cpp + external_libraries/nova-tt/testsuite/semaphore_test.cpp + external_libraries/nova-tt/testsuite/spin_lock_test.cpp + external_libraries/nova-tt/testsuite/thread_affinity_test.cpp + external_libraries/nova-tt/testsuite/thread_priority_test.cpp + external_libraries/oscpack/CHANGES + external_libraries/oscpack/Makefile + external_libraries/oscpack/TODO + external_libraries/oscpack/examples/SimpleReceive.cpp + external_libraries/oscpack/examples/SimpleSend.cpp + external_libraries/oscpack/make.MinGW32.bat + external_libraries/oscpack_build.cpp + external_libraries/pycxx-6.2.2/CXX/IndirectPythonInterface.hxx + external_libraries/pycxx-6.2.2/README.html + external_libraries/threadpool/CHANGE_LOG + external_libraries/threadpool/TODO + external_libraries/yaml-cpp-0.3.0/CMakeLists.txt + external_libraries/yaml-cpp-0.3.0/include/yaml-cpp/aliasmanager.h + external_libraries/yaml-cpp-0.3.0/include/yaml-cpp/anchor.h + external_libraries/yaml-cpp-0.3.0/include/yaml-cpp/binary.h + external_libraries/yaml-cpp-0.3.0/include/yaml-cpp/contrib/anchordict.h + external_libraries/yaml-cpp-0.3.0/include/yaml-cpp/contrib/graphbuilder.h + external_libraries/yaml-cpp-0.3.0/include/yaml-cpp/conversion.h + external_libraries/yaml-cpp-0.3.0/include/yaml-cpp/dll.h + external_libraries/yaml-cpp-0.3.0/include/yaml-cpp/emitfromevents.h + external_libraries/yaml-cpp-0.3.0/include/yaml-cpp/emitter.h + external_libraries/yaml-cpp-0.3.0/include/yaml-cpp/emittermanip.h + external_libraries/yaml-cpp-0.3.0/include/yaml-cpp/eventhandler.h + external_libraries/yaml-cpp-0.3.0/include/yaml-cpp/exceptions.h + external_libraries/yaml-cpp-0.3.0/include/yaml-cpp/iterator.h + external_libraries/yaml-cpp-0.3.0/include/yaml-cpp/ltnode.h + external_libraries/yaml-cpp-0.3.0/include/yaml-cpp/mark.h + external_libraries/yaml-cpp-0.3.0/include/yaml-cpp/node.h + external_libraries/yaml-cpp-0.3.0/include/yaml-cpp/nodeimpl.h + external_libraries/yaml-cpp-0.3.0/include/yaml-cpp/nodereadimpl.h + external_libraries/yaml-cpp-0.3.0/include/yaml-cpp/nodeutil.h + external_libraries/yaml-cpp-0.3.0/include/yaml-cpp/noncopyable.h + external_libraries/yaml-cpp-0.3.0/include/yaml-cpp/null.h + external_libraries/yaml-cpp-0.3.0/include/yaml-cpp/ostream.h + external_libraries/yaml-cpp-0.3.0/include/yaml-cpp/parser.h + external_libraries/yaml-cpp-0.3.0/include/yaml-cpp/stlemitter.h + external_libraries/yaml-cpp-0.3.0/include/yaml-cpp/stlnode.h + external_libraries/yaml-cpp-0.3.0/include/yaml-cpp/traits.h + external_libraries/yaml-cpp-0.3.0/include/yaml-cpp/yaml.h + external_libraries/yaml-cpp-0.3.0/install.txt + external_libraries/yaml-cpp-0.3.0/src/aliasmanager.cpp + external_libraries/yaml-cpp-0.3.0/src/binary.cpp + external_libraries/yaml-cpp-0.3.0/src/collectionstack.h + external_libraries/yaml-cpp-0.3.0/src/contrib/graphbuilder.cpp + external_libraries/yaml-cpp-0.3.0/src/contrib/graphbuilderadapter.cpp + external_libraries/yaml-cpp-0.3.0/src/contrib/graphbuilderadapter.h + external_libraries/yaml-cpp-0.3.0/src/conversion.cpp + external_libraries/yaml-cpp-0.3.0/src/directives.cpp + external_libraries/yaml-cpp-0.3.0/src/directives.h + external_libraries/yaml-cpp-0.3.0/src/emitfromevents.cpp + external_libraries/yaml-cpp-0.3.0/src/emitter.cpp + external_libraries/yaml-cpp-0.3.0/src/emitterstate.cpp + external_libraries/yaml-cpp-0.3.0/src/emitterstate.h + external_libraries/yaml-cpp-0.3.0/src/emitterutils.cpp + external_libraries/yaml-cpp-0.3.0/src/emitterutils.h + external_libraries/yaml-cpp-0.3.0/src/exp.cpp + external_libraries/yaml-cpp-0.3.0/src/exp.h + external_libraries/yaml-cpp-0.3.0/src/indentation.h + external_libraries/yaml-cpp-0.3.0/src/iterator.cpp + external_libraries/yaml-cpp-0.3.0/src/iterpriv.h + external_libraries/yaml-cpp-0.3.0/src/node.cpp + external_libraries/yaml-cpp-0.3.0/src/nodebuilder.cpp + external_libraries/yaml-cpp-0.3.0/src/nodebuilder.h + external_libraries/yaml-cpp-0.3.0/src/nodeownership.cpp + external_libraries/yaml-cpp-0.3.0/src/nodeownership.h + external_libraries/yaml-cpp-0.3.0/src/null.cpp + external_libraries/yaml-cpp-0.3.0/src/ostream.cpp + external_libraries/yaml-cpp-0.3.0/src/parser.cpp + external_libraries/yaml-cpp-0.3.0/src/ptr_stack.h + external_libraries/yaml-cpp-0.3.0/src/ptr_vector.h + external_libraries/yaml-cpp-0.3.0/src/regex.cpp + external_libraries/yaml-cpp-0.3.0/src/regex.h + external_libraries/yaml-cpp-0.3.0/src/regeximpl.h + external_libraries/yaml-cpp-0.3.0/src/scanner.cpp + external_libraries/yaml-cpp-0.3.0/src/scanner.h + external_libraries/yaml-cpp-0.3.0/src/scanscalar.cpp + external_libraries/yaml-cpp-0.3.0/src/scanscalar.h + external_libraries/yaml-cpp-0.3.0/src/scantag.cpp + external_libraries/yaml-cpp-0.3.0/src/scantag.h + external_libraries/yaml-cpp-0.3.0/src/scantoken.cpp + external_libraries/yaml-cpp-0.3.0/src/setting.h + external_libraries/yaml-cpp-0.3.0/src/simplekey.cpp + external_libraries/yaml-cpp-0.3.0/src/singledocparser.cpp + external_libraries/yaml-cpp-0.3.0/src/singledocparser.h + external_libraries/yaml-cpp-0.3.0/src/stream.cpp + external_libraries/yaml-cpp-0.3.0/src/stream.h + external_libraries/yaml-cpp-0.3.0/src/streamcharsource.h + external_libraries/yaml-cpp-0.3.0/src/stringsource.h + external_libraries/yaml-cpp-0.3.0/src/tag.cpp + external_libraries/yaml-cpp-0.3.0/src/tag.h + external_libraries/yaml-cpp-0.3.0/src/token.h + external_libraries/yaml-cpp-0.3.0/test/CMakeLists.txt + external_libraries/yaml-cpp-0.3.0/test/emittertests.cpp + external_libraries/yaml-cpp-0.3.0/test/emittertests.h + external_libraries/yaml-cpp-0.3.0/test/main.cpp + external_libraries/yaml-cpp-0.3.0/test/nodetests.h + external_libraries/yaml-cpp-0.3.0/test/old-api/parsertests.cpp + external_libraries/yaml-cpp-0.3.0/test/old-api/spectests.cpp + external_libraries/yaml-cpp-0.3.0/test/parsertests.h + external_libraries/yaml-cpp-0.3.0/test/specexamples.h + external_libraries/yaml-cpp-0.3.0/test/spectests.cpp + external_libraries/yaml-cpp-0.3.0/test/spectests.h + external_libraries/yaml-cpp-0.3.0/test/tests.cpp + external_libraries/yaml-cpp-0.3.0/test/tests.h + external_libraries/yaml-cpp-0.3.0/util/CMakeLists.txt + external_libraries/yaml-cpp-0.3.0/util/api.cpp + external_libraries/yaml-cpp-0.3.0/util/parse.cpp + external_libraries/yaml-cpp-0.3.0/yaml-cpp.pc.cmake + icons/sc_cube_128x128.png + icons/sc_cube_16x16.png + icons/sc_cube_32x32.png + icons/sc_cube_48x48.png + include/QtCollider/QC_Export.h + include/QtCollider/QtCollider.h + include/common/SC_StandAloneInfo_Darwin.h + include/common/SC_VFP11.h + include/common/dfftlib.h + include/common/fftlib.h + include/common/sc_popen.h + lang/CMakeLists.txt + lang/LangSource/Bison/lang11d + lang/LangSource/Bison/lang11d_tab.h + lang/LangSource/Bison/make_parser.sh + package/OPTIONALS_README_OSX.rtf + package/OPTIONALS_README_SOURCE.txt + package/USAGE + package/background.png + package/dmg_with_optionals.ds_store + package/dmg_without_optionals.ds_store + package/ds_store + package/git-archive-all.sh + package/package + platform/CMakeLists.txt + platform/SCVersion.sc.in + platform/disable_startup_files/extPlatform.sc + platform/linux/CMakeLists.txt + platform/linux/examples/onetwoonetwo.sc + platform/linux/icons/supercollider.png + platform/linux/icons/supercollider.xpm + platform/renderAllHelp.scd + server/CMakeLists.txt + server/plugins/CMakeLists.txt + server/scsynth/CMakeLists.txt + server/supernova/CMakeLists.txt + server/supernova/sc/CMakeLists.txt + sounds/a11wlk01.wav + testsuite/CMakeLists.txt + testsuite/sclang/CMakeLists.txt + testsuite/sclang/sclang_crash_1.scd + testsuite/sclang/sclang_crash_3.scd + testsuite/supernova/CMakeLists.txt + testsuite/supernova/approximation_test.cpp + testsuite/supernova/audio_backend_test.cpp + testsuite/supernova/audio_frontend_test.cpp + testsuite/supernova/boost_test.cpp + testsuite/supernova/buffer_manager_test.cpp + testsuite/supernova/callback_interpreter_system.cpp + testsuite/supernova/default.scsyndef + testsuite/supernova/help-In.scsyndef + testsuite/supernova/help_Demand.scsyndef + testsuite/supernova/help_InFeedback.scsyndef + testsuite/supernova/help_LocalBuf.scsyndef + testsuite/supernova/help_LocalIn.scsyndef + testsuite/supernova/help_PlayBuf.scsyndef + testsuite/supernova/help_RecordBuf.scsyndef + testsuite/supernova/help_RecordBuf_overdub.scsyndef + testsuite/supernova/help_out.scsyndef + testsuite/supernova/help_out2.scsyndef + testsuite/supernova/memory-pool_test.cpp + testsuite/supernova/osc_dispatcher_test.cpp + testsuite/supernova/osc_server_test.cpp + testsuite/supernova/perf_counter_test.cpp + testsuite/supernova/sc_plugin_loader_test.cpp + testsuite/supernova/sc_synth_prototype_test.cpp + testsuite/supernova/sc_synthdef_test.cpp + testsuite/supernova/server_dsp_thread_queue_test.cpp + testsuite/supernova/server_dsp_thread_test.cpp + testsuite/supernova/server_node_graph_test.cpp + testsuite/supernova/server_sc_osc_handler_test.cpp + testsuite/supernova/server_scheduler_test.cpp + testsuite/supernova/server_synth_factory_test.cpp + testsuite/supernova/server_test.cpp + testsuite/supernova/simple_pool_test.cpp + testsuite/supernova/sized_array_test.cpp + testsuite/supernova/sndfile_backend_test.cpp + testsuite/supernova/static_allocator_test.cpp + testsuite/supernova/static_pool_test.cpp + testsuite/supernova/test_synth.hpp + testsuite/supernova/ticket_scheduler_test.cpp + testsuite/supernova/timetag_test.cpp + testsuite/supernova/tl_allocator_test.cpp +Copyright: *No copyright* +License: UNKNOWN + FIXME + +Files: common/SC_AllocPool.cpp + common/SC_Sem.cpp + common/SC_Win32Utils.cpp + common/scsynthsend.cpp + include/common/MsgFifo.h + include/common/SC_AllocPool.h + include/common/SC_Altivec.h + include/common/SC_BoundsMacros.h + include/common/SC_Endian.h + include/common/SC_FIFO.h + include/common/SC_List.h + include/common/SC_Lock.h + include/common/SC_Reply.h + include/common/SC_Sem.h + include/common/SC_SyncCondition.h + include/common/SC_Types.h + include/common/SC_Win32Utils.h + include/common/clz.h + include/common/scsynthsend.h + include/lang/AdvancingAllocPool.h + include/lang/AllocPools.h + include/lang/ByteCodeArray.h + include/lang/FIFOT.h + include/lang/GC.h + include/lang/HashTable.h + include/lang/InitAlloc.h + include/lang/MiscInlineMath.h + include/lang/OSCData.h + include/lang/Opcodes.h + include/lang/PowerOfTwoAllocPool.h + include/lang/PredefinedSymbols.h + include/lang/PriorityQueue.h + include/lang/PyrArchiverT.h + include/lang/PyrDeepCopier.h + include/lang/PyrDeepFreezer.h + include/lang/PyrErrors.h + include/lang/PyrFilePrim.h + include/lang/PyrFileUtils.h + include/lang/PyrInterpreter.h + include/lang/PyrKernel.h + include/lang/PyrKernelProto.h + include/lang/PyrLexer.h + include/lang/PyrListPrim.h + include/lang/PyrMathPrim.h + include/lang/PyrMessage.h + include/lang/PyrObject.h + include/lang/PyrObjectProto.h + include/lang/PyrParseNode.h + include/lang/PyrPrimitive.h + include/lang/PyrPrimitiveProto.h + include/lang/PyrSched.h + include/lang/PyrSignal.h + include/lang/PyrSignalPrim.h + include/lang/PyrSlot.h + include/lang/PyrSlot32.h + include/lang/PyrSymbolTable.h + include/lang/ReadWriteMacros.h + include/lang/SCBase.h + include/lang/SC_ComPort.h + include/lang/SC_LogFile.h + include/lang/SC_Msg.h + include/lang/SC_SynthImpl.h + include/lang/SC_UnorderedList.h + include/lang/SFHeaders.h + include/lang/Samp.h + include/lang/SimpleStack.h + include/lang/VMGlobals.h + include/lang/readSamples.h + include/plugin_interface/FFT_UGens.h + include/plugin_interface/Hash.h + include/plugin_interface/SCComplex.h + include/plugin_interface/SC_BufGen.h + include/plugin_interface/SC_Complex.h + include/plugin_interface/SC_Constants.h + include/plugin_interface/SC_DemandUnit.h + include/plugin_interface/SC_FifoMsg.h + include/plugin_interface/SC_Graph.h + include/plugin_interface/SC_InlineBinaryOp.h + include/plugin_interface/SC_InlineUnaryOp.h + include/plugin_interface/SC_InterfaceTable.h + include/plugin_interface/SC_Node.h + include/plugin_interface/SC_PlugIn.h + include/plugin_interface/SC_RGen.h + include/plugin_interface/SC_Rate.h + include/plugin_interface/SC_SndBuf.h + include/plugin_interface/SC_Unit.h + include/plugin_interface/SC_Wire.h + include/plugin_interface/SC_World.h + include/plugin_interface/Unroll.h + include/plugin_interface/sc_msg_iter.h + include/server/HashTable.h + include/server/PriorityQueue.h + include/server/ReadWriteMacros.h + include/server/Rendezvous.h + include/server/SC_AU.h + include/server/SC_ComPort.h + include/server/SC_Complex.h + include/server/SC_CoreAudio.h + include/server/SC_Errors.h + include/server/SC_GraphDef.h + include/server/SC_Group.h + include/server/SC_HiddenWorld.h + include/server/SC_Lib.h + include/server/SC_Lib_Cintf.h + include/server/SC_OSC_Commands.h + include/server/SC_Prototypes.h + include/server/SC_Samp.h + include/server/SC_SequencedCommand.h + include/server/SC_Str4.h + include/server/SC_SynthDef.h + include/server/SC_UnitDef.h + include/server/SC_UnitSpec.h + include/server/SC_WireSpec.h + include/server/SC_WorldOptions.h + lang/LangPrimSource/OSCData.cpp + lang/LangPrimSource/PyrArchiver.cpp + lang/LangPrimSource/PyrBitPrim.cpp + lang/LangPrimSource/PyrCharPrim.cpp + lang/LangPrimSource/PyrListPrim.cpp + lang/LangPrimSource/PyrPlatformPrim.cpp + lang/LangPrimSource/PyrPrimitive.cpp + lang/LangPrimSource/PyrSched.cpp + lang/LangPrimSource/PyrSignalPrim.cpp + lang/LangPrimSource/PyrSymbolPrim.cpp + lang/LangPrimSource/PyrUnixPrim.cpp + lang/LangPrimSource/SC_ComPort.cpp + lang/LangPrimSource/SC_CoreAudioPrim.cpp + lang/LangPrimSource/SC_CoreMIDI.cpp + lang/LangPrimSource/SC_PortMIDI.cpp + lang/LangSource/AdvancingAllocPool.cpp + lang/LangSource/ByteCodeArray.cpp + lang/LangSource/DumpParseNode.cpp + lang/LangSource/GC.cpp + lang/LangSource/InitAlloc.cpp + lang/LangSource/PyrFileUtils.cpp + lang/LangSource/PyrInterpreter3.cpp + lang/LangSource/PyrMathOps.cpp + lang/LangSource/PyrMathSupport.cpp + lang/LangSource/PyrMessage.cpp + lang/LangSource/PyrObject.cpp + lang/LangSource/PyrParseNode.cpp + lang/LangSource/PyrSignal.cpp + lang/LangSource/PyrSymbolTable.cpp + lang/LangSource/Samp.cpp + lang/LangSource/SimpleStack.cpp + lang/LangSource/VMGlobals.cpp + lang/LangSource/cmdLineFuncs.cpp + lang/LangSource/dumpByteCodes.cpp + server/plugins/BeatTrack.cpp + server/plugins/BeatTrack.h + server/plugins/BeatTrack2.cpp + server/plugins/BeatTrack2.h + server/plugins/BinaryOpUGens.cpp + server/plugins/ChaosUGens.cpp + server/plugins/Convolution.cpp + server/plugins/DelayUGens.cpp + server/plugins/DemandUGens.cpp + server/plugins/DiskIO_UGens.cpp + server/plugins/FFT2InterfaceTable.cpp + server/plugins/FFTInterfaceTable.cpp + server/plugins/FeatureDetection.cpp + server/plugins/GendynUGens.cpp + server/plugins/IOUGens.cpp + server/plugins/KeyTrack.cpp + server/plugins/KeyboardUGens.cpp + server/plugins/LFUGens.cpp + server/plugins/Loudness.cpp + server/plugins/MFCC.cpp + server/plugins/ML.cpp + server/plugins/ML.h + server/plugins/MouseUGens.cpp + server/plugins/MulAddUGens.cpp + server/plugins/NoiseUGens.cpp + server/plugins/OscUGens.cpp + server/plugins/PV_ThirdParty.cpp + server/plugins/PV_UGens.cpp + server/plugins/PanUGens.cpp + server/plugins/PartitionedConvolution.cpp + server/plugins/PhysicalModelingUGens.cpp + server/plugins/TriggerUGens.cpp + server/plugins/UnaryOpUGens.cpp + server/scsynth/SC_BufGen.cpp + server/scsynth/SC_ComPort.cpp + server/scsynth/SC_Complex.cpp + server/scsynth/SC_CoreAudio.cpp + server/scsynth/SC_Errors.cpp + server/scsynth/SC_Graph.cpp + server/scsynth/SC_GraphDef.cpp + server/scsynth/SC_Group.cpp + server/scsynth/SC_Lib.cpp + server/scsynth/SC_Lib_Cintf.cpp + server/scsynth/SC_MiscCmds.cpp + server/scsynth/SC_Node.cpp + server/scsynth/SC_Rate.cpp + server/scsynth/SC_SequencedCommand.cpp + server/scsynth/SC_Str4.cpp + server/scsynth/SC_Unit.cpp + server/scsynth/SC_UnitDef.cpp + server/scsynth/SC_World.cpp + server/scsynth/Samp.cpp + server/scsynth/scsynth_main.cpp +Copyright: 2002, James McCartney. + 2003, James McCartney. +License: GPL-2+ + FIXME + +Files: external_libraries/nova-simd/benchmarks/benchmark_helpers.hpp + external_libraries/nova-simd/benchmarks/malloc_aligned.hpp + external_libraries/nova-simd/detail/define_macros.hpp + external_libraries/nova-simd/detail/math.hpp + external_libraries/nova-simd/detail/unroll_helpers.hpp + external_libraries/nova-simd/detail/vec_math.hpp + external_libraries/nova-simd/detail/wrap_argument_vector.hpp + external_libraries/nova-simd/simd_binary_arithmetic.hpp + external_libraries/nova-simd/simd_horizontal_functions.hpp + external_libraries/nova-simd/simd_math.hpp + external_libraries/nova-simd/simd_mix.hpp + external_libraries/nova-simd/simd_pan.hpp + external_libraries/nova-simd/simd_peakmeter.hpp + external_libraries/nova-simd/simd_unary_arithmetic.hpp + external_libraries/nova-simd/simd_unit_conversion.hpp + external_libraries/nova-simd/simd_unroll_constraints.hpp + external_libraries/nova-simd/simd_utils.hpp + external_libraries/nova-simd/softclip.hpp + external_libraries/nova-simd/vec.hpp + external_libraries/nova-simd/vec_altivec.hpp + external_libraries/nova-simd/vec_avx_double.hpp + external_libraries/nova-simd/vec_avx_float.hpp + external_libraries/nova-simd/vec_base.hpp + external_libraries/nova-simd/vec_generic.hpp + external_libraries/nova-simd/vec_int_altivec.hpp + external_libraries/nova-simd/vec_int_avx.hpp + external_libraries/nova-simd/vec_int_neon.hpp + external_libraries/nova-simd/vec_int_sse2.hpp + external_libraries/nova-simd/vec_sse.hpp + external_libraries/nova-simd/vec_sse2.hpp + external_libraries/nova-simd/wrap_arguments.hpp + external_libraries/nova-tt/nova-tt/branch_hints.hpp + external_libraries/nova-tt/nova-tt/dummy_mutex.hpp + external_libraries/nova-tt/nova-tt/mlock.hpp + external_libraries/nova-tt/nova-tt/name_thread.hpp + external_libraries/nova-tt/nova-tt/nanosleep.hpp + external_libraries/nova-tt/nova-tt/rw_mutex.hpp + external_libraries/nova-tt/nova-tt/rw_spinlock.hpp + external_libraries/nova-tt/nova-tt/semaphore.hpp + external_libraries/nova-tt/nova-tt/semaphore_boost_fallback.hpp + external_libraries/nova-tt/nova-tt/semaphore_mach.hpp + external_libraries/nova-tt/nova-tt/semaphore_posix.hpp + external_libraries/nova-tt/nova-tt/semaphore_pthreads.hpp + external_libraries/nova-tt/nova-tt/spin_lock.hpp + external_libraries/nova-tt/nova-tt/thread_affinity.hpp + external_libraries/nova-tt/nova-tt/thread_priority.hpp + external_libraries/nova-tt/nova-tt/thread_priority_fallback.hpp + external_libraries/nova-tt/nova-tt/thread_priority_mach.hpp + external_libraries/nova-tt/nova-tt/thread_priority_pthread.hpp + server/supernova/audio_backend/audio_backend.hpp + server/supernova/audio_backend/audio_backend_common.hpp + server/supernova/audio_backend/audio_frontend.hpp + server/supernova/audio_backend/cpu_time_info.hpp + server/supernova/audio_backend/jack_backend.hpp + server/supernova/audio_backend/portaudio_backend.hpp + server/supernova/audio_backend/sndfile_backend.hpp + server/supernova/dsp_thread_queue/dsp_thread.hpp + server/supernova/dsp_thread_queue/dsp_thread_queue.hpp + server/supernova/sc/sc_osc_handler.cpp + server/supernova/sc/sc_osc_handler.hpp + server/supernova/sc/sc_plugin_interface.hpp + server/supernova/sc/sc_synth.cpp + server/supernova/sc/sc_synth.hpp + server/supernova/sc/sc_synth_prototype.cpp + server/supernova/sc/sc_synth_prototype.hpp + server/supernova/sc/sc_synthdef.cpp + server/supernova/sc/sc_synthdef.hpp + server/supernova/sc/sc_ugen_factory.cpp + server/supernova/sc/sc_ugen_factory.hpp + server/supernova/server/audio_bus_manager.hpp + server/supernova/server/buffer_manager.cpp + server/supernova/server/buffer_manager.hpp + server/supernova/server/dependency_graph_generator.hpp + server/supernova/server/dsp_context.cpp + server/supernova/server/dsp_context.hpp + server/supernova/server/dsp_thread_queue_node.hpp + server/supernova/server/dynamic_endpoint.hpp + server/supernova/server/group.hpp + server/supernova/server/main.cpp + server/supernova/server/memory_pool.cpp + server/supernova/server/memory_pool.hpp + server/supernova/server/node_graph.cpp + server/supernova/server/node_graph.hpp + server/supernova/server/node_types.hpp + server/supernova/server/nrt_synthesis.hpp + server/supernova/server/sample_types.hpp + server/supernova/server/server.cpp + server/supernova/server/server.hpp + server/supernova/server/server_args.cpp + server/supernova/server/server_args.hpp + server/supernova/server/server_scheduler.hpp + server/supernova/server/sync_commands.hpp + server/supernova/server/synth.hpp + server/supernova/server/synth_factory.hpp + server/supernova/server/synth_prototype.hpp + server/supernova/utilities/aligned_class.hpp + server/supernova/utilities/asynchronous_log.hpp + server/supernova/utilities/branch_hints.hpp + server/supernova/utilities/callback_interpreter.hpp + server/supernova/utilities/callback_system.hpp + server/supernova/utilities/cpu_timer.hpp + server/supernova/utilities/exists.hpp + server/supernova/utilities/fast_approximations.hpp + server/supernova/utilities/force_inline.hpp + server/supernova/utilities/freelist.hpp + server/supernova/utilities/malloc_aligned.hpp + server/supernova/utilities/named_hash_entry.hpp + server/supernova/utilities/osc_dispatcher.hpp + server/supernova/utilities/osc_server.hpp + server/supernova/utilities/simple_pool.hpp + server/supernova/utilities/sized_array.hpp + server/supernova/utilities/static_allocator.hpp + server/supernova/utilities/static_pool.hpp + server/supernova/utilities/static_pooled_class.hpp + server/supernova/utilities/template_functions.hpp + server/supernova/utilities/ticket_scheduler.hpp + server/supernova/utilities/time_tag.hpp + server/supernova/utilities/tl_allocator.hpp + server/supernova/utilities/utils.hpp +Copyright: 2005-2008, Tim Blechmann + 2005-2010, Tim Blechmann + 2006, 2008 Tim Blechmann + 2006-2008, 2012 Tim Blechmann + 2007, 2009 Tim Blechmann + 2007, 2009, 2012, Tim Blechmann + 2007, Tim Blechmann + 2007-2008, Tim Blechmann + 2007-2010, Tim Blechmann + 2008, 2010 Tim Blechmann + 2008, Tim Blechmann + 2008-2009, Tim Blechmann + 2008-2010, Tim Blechmann + 2008-2011, Tim Blechmann + 2008-2012, Tim Blechmann + 2009, Tim Blechmann + 2009-2010, Tim Blechmann + 2009-2011, Tim Blechmann + 2010, Tim Blechmann + 2010-2011, Tim Blechmann + 2010-2012, Tim Blechmann + 2011, Tim Blechmann +License: GPL-2+ + FIXME + +Files: QtCollider/Common.h + QtCollider/LanguageClient.cpp + QtCollider/LanguageClient.h + QtCollider/QObjectProxy.cpp + QtCollider/QObjectProxy.h + QtCollider/QWidgetProxy.cpp + QtCollider/QWidgetProxy.h + QtCollider/QcApplication.cpp + QtCollider/QcApplication.h + QtCollider/QcObjectFactory.cpp + QtCollider/QcObjectFactory.h + QtCollider/QcSignalSpy.h + QtCollider/QcWidgetFactory.h + QtCollider/Slot.cpp + QtCollider/Slot.h + QtCollider/debug.cpp + QtCollider/debug.h + QtCollider/factories.cpp + QtCollider/hacks/hacks_mac.M + QtCollider/hacks/hacks_mac.hpp + QtCollider/interface.cpp + QtCollider/layouts/classic_layouts.cpp + QtCollider/layouts/classic_layouts.hpp + QtCollider/layouts/layouts.cpp + QtCollider/layouts/layouts.hpp + QtCollider/painting.h + QtCollider/primitives/prim_QObject.cpp + QtCollider/primitives/prim_QPalette.cpp + QtCollider/primitives/prim_QPalette.hpp + QtCollider/primitives/prim_QWidget.cpp + QtCollider/primitives/prim_misc.cpp + QtCollider/primitives/primitives.cpp + QtCollider/primitives/primitives.h + QtCollider/safeptr.hpp + QtCollider/widgets/BasicWidgets.cpp + QtCollider/widgets/BasicWidgets.h + QtCollider/widgets/QcAbstractStepValue.cpp + QtCollider/widgets/QcAbstractStepValue.h + QtCollider/widgets/QcCanvas.cpp + QtCollider/widgets/QcCanvas.h + QtCollider/widgets/QcFileDialog.cpp + QtCollider/widgets/QcFileDialog.h + QtCollider/widgets/QcGraph.cpp + QtCollider/widgets/QcGraph.h + QtCollider/widgets/QcKnob.cpp + QtCollider/widgets/QcKnob.hpp + QtCollider/widgets/QcLevelIndicator.cpp + QtCollider/widgets/QcLevelIndicator.h + QtCollider/widgets/QcMultiSlider.cpp + QtCollider/widgets/QcMultiSlider.h + QtCollider/widgets/QcNumberBox.cpp + QtCollider/widgets/QcNumberBox.h + QtCollider/widgets/QcRangeSlider.cpp + QtCollider/widgets/QcRangeSlider.h + QtCollider/widgets/QcScope.cpp + QtCollider/widgets/QcScope.h + QtCollider/widgets/QcScopeShm.cpp + QtCollider/widgets/QcScopeShm.h + QtCollider/widgets/QcScrollArea.cpp + QtCollider/widgets/QcScrollArea.h + QtCollider/widgets/QcSlider.cpp + QtCollider/widgets/QcSlider.h + QtCollider/widgets/QcSlider2D.cpp + QtCollider/widgets/QcSlider2D.h + QtCollider/widgets/QcTextEdit.cpp + QtCollider/widgets/QcTextEdit.h + QtCollider/widgets/QcTreeWidget.cpp + QtCollider/widgets/QcTreeWidget.h + QtCollider/widgets/QcWebView.cpp + QtCollider/widgets/QcWebView.h + QtCollider/widgets/QcWindow.cpp + QtCollider/widgets/QcWindow.h + QtCollider/widgets/scope_shm_interface.hpp + QtCollider/widgets/soundfileview/cachestream.cpp + QtCollider/widgets/soundfileview/filestream.cpp + QtCollider/widgets/soundfileview/view.cpp + QtCollider/widgets/soundfileview/view.hpp +Copyright: 2010, Jakob Leben (jakob.leben@gmail.com) + 2010-2011, Jakob Leben (jakob.leben@gmail.com) + 2010-2012, Jakob Leben (jakob.leben@gmail.com) + 2011, Jakob Leben (jakob.leben@gmail.com) + 2011-2012, Jakob Leben (jakob.leben@gmail.com) + 2012, Jakob Leben (jakob.leben@gmail.com) +License: GPL-3+ + FIXME + +Files: HelpSource/MathJax/config/TeX-AMS_HTML.js + HelpSource/MathJax/jax/element/mml/jax.js + HelpSource/MathJax/jax/element/mml/optable/Arrows.js + HelpSource/MathJax/jax/element/mml/optable/BasicLatin.js + HelpSource/MathJax/jax/element/mml/optable/CombDiacritMarks.js + HelpSource/MathJax/jax/element/mml/optable/CombDiactForSymbols.js + HelpSource/MathJax/jax/element/mml/optable/Dingbats.js + HelpSource/MathJax/jax/element/mml/optable/GeneralPunctuation.js + HelpSource/MathJax/jax/element/mml/optable/GeometricShapes.js + HelpSource/MathJax/jax/element/mml/optable/GreekAndCoptic.js + HelpSource/MathJax/jax/element/mml/optable/Latin1Supplement.js + HelpSource/MathJax/jax/element/mml/optable/LetterlikeSymbols.js + HelpSource/MathJax/jax/element/mml/optable/MathOperators.js + HelpSource/MathJax/jax/element/mml/optable/MiscMathSymbolsA.js + HelpSource/MathJax/jax/element/mml/optable/MiscMathSymbolsB.js + HelpSource/MathJax/jax/element/mml/optable/MiscTechnical.js + HelpSource/MathJax/jax/element/mml/optable/SpacingModLetters.js + HelpSource/MathJax/jax/element/mml/optable/SuppMathOperators.js + HelpSource/MathJax/jax/element/mml/optable/SupplementalArrowsB.js + HelpSource/MathJax/jax/input/MathML/config.js + HelpSource/MathJax/jax/input/MathML/entities/a.js + HelpSource/MathJax/jax/input/MathML/entities/b.js + HelpSource/MathJax/jax/input/MathML/entities/c.js + HelpSource/MathJax/jax/input/MathML/entities/d.js + HelpSource/MathJax/jax/input/MathML/entities/e.js + HelpSource/MathJax/jax/input/MathML/entities/f.js + HelpSource/MathJax/jax/input/MathML/entities/fr.js + HelpSource/MathJax/jax/input/MathML/entities/g.js + HelpSource/MathJax/jax/input/MathML/entities/h.js + HelpSource/MathJax/jax/input/MathML/entities/i.js + HelpSource/MathJax/jax/input/MathML/entities/j.js + HelpSource/MathJax/jax/input/MathML/entities/k.js + HelpSource/MathJax/jax/input/MathML/entities/l.js + HelpSource/MathJax/jax/input/MathML/entities/m.js + HelpSource/MathJax/jax/input/MathML/entities/n.js + HelpSource/MathJax/jax/input/MathML/entities/o.js + HelpSource/MathJax/jax/input/MathML/entities/opf.js + HelpSource/MathJax/jax/input/MathML/entities/p.js + HelpSource/MathJax/jax/input/MathML/entities/q.js + HelpSource/MathJax/jax/input/MathML/entities/r.js + HelpSource/MathJax/jax/input/MathML/entities/s.js + HelpSource/MathJax/jax/input/MathML/entities/scr.js + HelpSource/MathJax/jax/input/MathML/entities/t.js + HelpSource/MathJax/jax/input/MathML/entities/u.js + HelpSource/MathJax/jax/input/MathML/entities/v.js + HelpSource/MathJax/jax/input/MathML/entities/w.js + HelpSource/MathJax/jax/input/MathML/entities/x.js + HelpSource/MathJax/jax/input/MathML/entities/y.js + HelpSource/MathJax/jax/input/MathML/entities/z.js + HelpSource/MathJax/jax/input/MathML/jax.js + HelpSource/MathJax/jax/input/TeX/config.js + HelpSource/MathJax/jax/input/TeX/jax.js + HelpSource/MathJax/jax/output/HTML-CSS/autoload/annotation-xml.js + HelpSource/MathJax/jax/output/HTML-CSS/autoload/maction.js + HelpSource/MathJax/jax/output/HTML-CSS/autoload/menclose.js + HelpSource/MathJax/jax/output/HTML-CSS/autoload/mglyph.js + HelpSource/MathJax/jax/output/HTML-CSS/autoload/mmultiscripts.js + HelpSource/MathJax/jax/output/HTML-CSS/autoload/ms.js + HelpSource/MathJax/jax/output/HTML-CSS/autoload/mtable.js + HelpSource/MathJax/jax/output/HTML-CSS/autoload/multiline.js + HelpSource/MathJax/jax/output/HTML-CSS/config.js + HelpSource/MathJax/jax/output/HTML-CSS/imageFonts.js + HelpSource/MathJax/jax/output/HTML-CSS/jax.js + HelpSource/MathJax/jax/output/NativeMML/config.js + HelpSource/MathJax/jax/output/NativeMML/jax.js +Copyright: 2010, Design Science, Inc + 2010-11 Design Science, Inc +License: Apache-2.0; + FIXME + +Files: external_libraries/pycxx-6.2.2/CXX/Config.hxx + external_libraries/pycxx-6.2.2/CXX/Exception.hxx + external_libraries/pycxx-6.2.2/CXX/Extensions.hxx + external_libraries/pycxx-6.2.2/CXX/Objects.hxx + external_libraries/pycxx-6.2.2/CXX/Python2/Config.hxx + external_libraries/pycxx-6.2.2/CXX/Python2/Exception.hxx + external_libraries/pycxx-6.2.2/CXX/Python2/ExtensionModule.hxx + external_libraries/pycxx-6.2.2/CXX/Python2/ExtensionOldType.hxx + external_libraries/pycxx-6.2.2/CXX/Python2/ExtensionType.hxx + external_libraries/pycxx-6.2.2/CXX/Python2/ExtensionTypeBase.hxx + external_libraries/pycxx-6.2.2/CXX/Python2/Extensions.hxx + external_libraries/pycxx-6.2.2/CXX/Python2/IndirectPythonInterface.hxx + external_libraries/pycxx-6.2.2/CXX/Python2/Objects.hxx + external_libraries/pycxx-6.2.2/CXX/Python2/PythonType.hxx + external_libraries/pycxx-6.2.2/CXX/Python3/Config.hxx + external_libraries/pycxx-6.2.2/CXX/Python3/Exception.hxx + external_libraries/pycxx-6.2.2/CXX/Python3/ExtensionModule.hxx + external_libraries/pycxx-6.2.2/CXX/Python3/ExtensionOldType.hxx + external_libraries/pycxx-6.2.2/CXX/Python3/ExtensionType.hxx + external_libraries/pycxx-6.2.2/CXX/Python3/ExtensionTypeBase.hxx + external_libraries/pycxx-6.2.2/CXX/Python3/Extensions.hxx + external_libraries/pycxx-6.2.2/CXX/Python3/IndirectPythonInterface.hxx + external_libraries/pycxx-6.2.2/CXX/Python3/Objects.hxx + external_libraries/pycxx-6.2.2/CXX/Python3/PythonType.hxx + external_libraries/pycxx-6.2.2/CXX/Version.hxx + external_libraries/pycxx-6.2.2/CXX/WrapPython.h + external_libraries/pycxx-6.2.2/Src/IndirectPythonInterface.cxx + external_libraries/pycxx-6.2.2/Src/Python2/IndirectPythonInterface.cxx + external_libraries/pycxx-6.2.2/Src/Python2/cxx_extensions.cxx + external_libraries/pycxx-6.2.2/Src/Python2/cxxextensions.c + external_libraries/pycxx-6.2.2/Src/Python2/cxxsupport.cxx + external_libraries/pycxx-6.2.2/Src/Python3/IndirectPythonInterface.cxx + external_libraries/pycxx-6.2.2/Src/Python3/cxx_extensions.cxx + external_libraries/pycxx-6.2.2/Src/Python3/cxxextensions.c + external_libraries/pycxx-6.2.2/Src/Python3/cxxsupport.cxx + external_libraries/pycxx-6.2.2/Src/cxx_extensions.cxx + external_libraries/pycxx-6.2.2/Src/cxxextensions.c + external_libraries/pycxx-6.2.2/Src/cxxsupport.cxx +Copyright: 1998, - 2007, The Regents of the University of California + HOLDERS AND CONTRIBUTORS "AS IS" +License: BSD (3 clause) + FIXME + +Files: external_libraries/oscpack/LICENSE + external_libraries/oscpack/examples/OscDump.cpp + external_libraries/oscpack/ip/IpEndpointName.cpp + external_libraries/oscpack/ip/IpEndpointName.h + external_libraries/oscpack/ip/NetworkingUtils.h + external_libraries/oscpack/ip/PacketListener.h + external_libraries/oscpack/ip/TimerListener.h + external_libraries/oscpack/ip/UdpSocket.h + external_libraries/oscpack/ip/posix/NetworkingUtils.cpp + external_libraries/oscpack/ip/posix/UdpSocket.cpp + external_libraries/oscpack/ip/win32/NetworkingUtils.cpp + external_libraries/oscpack/ip/win32/UdpSocket.cpp + external_libraries/oscpack/osc/MessageMappingOscPacketListener.h + external_libraries/oscpack/osc/OscException.h + external_libraries/oscpack/osc/OscHostEndianness.h + external_libraries/oscpack/osc/OscOutboundPacketStream.cpp + external_libraries/oscpack/osc/OscOutboundPacketStream.h + external_libraries/oscpack/osc/OscPacketListener.h + external_libraries/oscpack/osc/OscPrintReceivedElements.cpp + external_libraries/oscpack/osc/OscPrintReceivedElements.h + external_libraries/oscpack/osc/OscReceivedElements.cpp + external_libraries/oscpack/osc/OscReceivedElements.h + external_libraries/oscpack/osc/OscTypes.cpp + external_libraries/oscpack/osc/OscTypes.h + external_libraries/oscpack/tests/OscReceiveTest.cpp + external_libraries/oscpack/tests/OscReceiveTest.h + external_libraries/oscpack/tests/OscSendTests.cpp + external_libraries/oscpack/tests/OscSendTests.h + external_libraries/oscpack/tests/OscUnitTests.cpp + external_libraries/oscpack/tests/OscUnitTests.h +Copyright: 2004, Ross Bencina + 2004-2005, Ross Bencina + HOLDERS BE LIABLE FOR +License: MIT/X11 (BSD like) + FIXME + +Files: external_libraries/boost_lockfree/boost/atomic.hpp + external_libraries/boost_lockfree/boost/atomic/detail/base.hpp + external_libraries/boost_lockfree/boost/atomic/detail/builder.hpp + external_libraries/boost_lockfree/boost/atomic/detail/fallback.hpp + external_libraries/boost_lockfree/boost/atomic/detail/gcc-alpha.hpp + external_libraries/boost_lockfree/boost/atomic/detail/gcc-ppc.hpp + external_libraries/boost_lockfree/boost/atomic/detail/gcc-x86.hpp + external_libraries/boost_lockfree/boost/atomic/detail/generic-cas.hpp + external_libraries/boost_lockfree/boost/atomic/detail/integral-casts.hpp + external_libraries/boost_lockfree/boost/atomic/detail/interlocked.hpp + external_libraries/boost_lockfree/boost/atomic/detail/valid_integral_types.hpp + external_libraries/boost_lockfree/boost/atomic/platform.hpp + external_libraries/boost_lockfree/libs/atomic/doc/atomic.hpp + external_libraries/boost_lockfree/libs/atomic/doc/atomic.qbk +Copyright: 2009, Helge Bahmann +License: BSL-1.0 + FIXME + +Files: external_libraries/threadpool/COPYING + external_libraries/threadpool/boost/threadpool.hpp + external_libraries/threadpool/boost/threadpool/detail/future.hpp + external_libraries/threadpool/boost/threadpool/detail/locking_ptr.hpp + external_libraries/threadpool/boost/threadpool/detail/pool_core.hpp + external_libraries/threadpool/boost/threadpool/detail/scope_guard.hpp + external_libraries/threadpool/boost/threadpool/detail/worker_thread.hpp + external_libraries/threadpool/boost/threadpool/future.hpp + external_libraries/threadpool/boost/threadpool/pool.hpp + external_libraries/threadpool/boost/threadpool/pool_adaptors.hpp + external_libraries/threadpool/boost/threadpool/scheduling_policies.hpp + external_libraries/threadpool/boost/threadpool/shutdown_policies.hpp + external_libraries/threadpool/boost/threadpool/size_policies.hpp + external_libraries/threadpool/boost/threadpool/task_adaptors.hpp +Copyright: 2005-2007, Philipp Henkel +License: BSL-1.0 + FIXME + +Files: external_libraries/boost_lockfree/Jamfile.v2 + external_libraries/boost_lockfree/boost/lockfree/detail/branch_hints.hpp + external_libraries/boost_lockfree/boost/lockfree/detail/freelist.hpp + external_libraries/boost_lockfree/boost/lockfree/detail/prefix.hpp + external_libraries/boost_lockfree/boost/lockfree/detail/tagged_ptr.hpp + external_libraries/boost_lockfree/boost/lockfree/detail/tagged_ptr_dcas.hpp + external_libraries/boost_lockfree/boost/lockfree/fifo.hpp + external_libraries/boost_lockfree/boost/lockfree/ringbuffer.hpp + external_libraries/boost_lockfree/boost/lockfree/stack.hpp + external_libraries/boost_lockfree/libs/lockfree/doc/Jamfile.v2 + external_libraries/boost_lockfree/libs/lockfree/doc/lockfree.qbk + external_libraries/boost_lockfree/libs/lockfree/examples/fifo.cpp + external_libraries/boost_lockfree/libs/lockfree/examples/ringbuffer.cpp + external_libraries/boost_lockfree/libs/lockfree/examples/stack.cpp +Copyright: 2007-2008, Tim Blechmann + 2008, Tim Blechmann + 2008-2009, 2011 Tim Blechmann + 2008-2011, Tim Blechmann + 2009, Tim Blechmann + 2010, Tim Blechmann +License: BSL-1.0 + FIXME + +Files: editors/scel/el/sclang-browser.el + editors/scel/el/sclang-document.el + editors/scel/el/sclang-help.el + editors/scel/el/sclang-interp.el + editors/scel/el/sclang-keys.el + editors/scel/el/sclang-language.el + editors/scel/el/sclang-menu.el + editors/scel/el/sclang-mode.el + editors/scel/el/sclang-server.el + editors/scel/el/sclang-util.el + editors/scel/el/sclang.el +Copyright: 2003, stefan kersten + 2003-2005, stefan kersten +License: UNKNOWN + FIXME + +Files: include/lang/SC_LanguageClient.h + include/lang/SC_TerminalClient.h + lang/LangPrimSource/PyrSerialPrim.cpp + lang/LangPrimSource/SC_AlsaMIDI.cpp + lang/LangPrimSource/SC_LID.cpp + lang/LangSource/SC_LanguageClient.cpp + lang/LangSource/SC_TerminalClient.cpp + server/scsynth/Rendezvous.cpp + server/scsynth/SC_Jack.cpp +Copyright: 2002, James McCartney. + 2003, 2004 stefan kersten + 2003-2006, stefan kersten + 2004, stefan kersten + 2005, 2006 stefan kersten + 2006, stefan kersten +License: GPL-2+ + FIXME + +Files: editors/sced/sced/ConfigurationDialog.py + editors/sced/sced/LogPanel.py + editors/sced/sced/Logger.py + editors/sced/sced/ScLang.py + editors/sced/sced/Settings.py + editors/sced/sced/WindowHelper.py + editors/sced/sced/__init__.py + editors/sced/sced/util.py +Copyright: 2009, Artem Popov and other contributors (see AUTHORS) +License: GPL-3+ + FIXME + +Files: editors/sced/scedwin/py/ConfigurationDialog.py + editors/sced/scedwin/py/LogPanel.py + editors/sced/scedwin/py/Logger.py + editors/sced/scedwin/py/ScLang.py + editors/sced/scedwin/py/Settings.py + editors/sced/scedwin/py/WindowHelper.py + editors/sced/scedwin/py/__init__.py + editors/sced/scedwin/py/util.py +Copyright: 2009, Artem Popov and other contributors (see AUTHORS) + 2012, Jakob Leben +License: GPL-3+ + FIXME + +Files: editors/scvim/bin/sclangpipe_app + editors/scvim/bin/scvim + editors/scvim/ftplugin/supercollider.vim + editors/scvim/scclasses/SCVim.sc + editors/scvim/syntax/supercollider.vim + editors/scvim/syntax/supercollider_lang.vim + editors/scvim/syntax/supercollider_operators.vim +Copyright: 2007, Alex Norman + 2008, Alex Norman +License: GPL-3+ + FIXME + +Files: README.txt + bindings/PySCLang/PySCLang_Module.cpp + bindings/PySCLang/PySCLang_Module.h + bindings/PySCLang/PySCLang_Module_GUIStuff.cpp + bindings/PySCLang/PySCLang_VM.h + bindings/PySCLang/PySCLang_vpost_stuff.cpp +Copyright: *No copyright* +License: GPL-2+ + FIXME + +Files: common/SC_StringBuffer.cpp + editors/scel/sc/Emacs.sc + editors/scel/sc/EmacsDocument.sc + editors/scel/sc/extString.sc + editors/scel/sc/storeLispOn.sc + include/common/SC_StringBuffer.h +Copyright: 2003, stefan kersten +License: GPL-2+ + FIXME + +Files: QtCollider/widgets/QcPenPrinter.h + SCDoc/SCDoc.cpp + SCDoc/SCDoc.l + SCDoc/SCDoc.y + SCDoc/SCDocPrim.cpp +Copyright: 2011, Jonatan Liljedahl + 2012, Jonatan Liljedahl +License: GPL-3+ + FIXME + +Files: include/common/SC_fftlib.h + server/plugins/UnpackFFTUGens.cpp + server/plugins/onsetsds.c + server/plugins/onsetsds.h +Copyright: 2007, Dan Stowell. + 2008, Dan Stowell. +License: GPL-2+ + FIXME + +Files: external_libraries/nova-simd/COPYING + external_libraries/nova-simd/simd_memory.hpp + external_libraries/nova-simd/simd_ternary_arithmetic.hpp + external_libraries/nova-tt/COPYING +Copyright: 2009, Tim Blechmann + 2010, Tim Blechmann +License: GPL-2+ + FIXME + +Files: Help/Extending and Customizing SC/attachments/Creating-Standalone-Applications/Pasted Graphic 2.png + Help/Extending and Customizing SC/attachments/Writing_Unit_Generators/Pasted Graphic 16.png + SCClassLibrary/Common/Control/Server.sc + SCClassLibrary/Common/GUI/guicrucial/PageLayout.sc +Copyright: +License: UNKNOWN + FIXME + +Files: external_libraries/boost_endian/boost/integer/endian_binary_stream.hpp + external_libraries/boost_endian/libs/integer/test/binary_stream_test.cpp + external_libraries/boost_endian/libs/integer/test/endian_binary_stream_test.cpp +Copyright: Beman Dawes 2009 +License: BSL-1.0 + FIXME + +Files: server/plugins/Onsets.cpp + server/plugins/Onsets.h + server/scsynth/SC_Audio_Android.cpp +Copyright: 2002, James McCartney. + 2007, Dan Stowell. + 2010, Dan Stowell. +License: GPL-2+ + FIXME + +Files: include/server/OSC_Packet.h + server/plugins/GrainUGens.cpp + server/scsynth/SC_Carbon.cpp +Copyright: 2001, __MyCompanyName__. + 2002, James McCartney. + 2003, __MyCompanyName__. + 2005, __MyCompanyName__. +License: GPL-2+ + FIXME + +Files: include/common/SC_Alloca.h + include/common/SC_Export.h + include/common/function_attributes.h +Copyright: 2010, Tim Blechmann. + 2011, Tim Blechmann. +License: GPL-2+ + FIXME + +Files: COPYING + editors/sced/COPYING + editors/scvim/COPYING +Copyright: 2007, Free Software Foundation, Inc. + + HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS + are not + disclaimer" for the program, if necessary + holder as a result of your choosing to follow a + holder explicitly and + holder is + holder is reinstated (a) + holder notifies you of the + holder who authorizes use under this + holder, and you cure the violation prior to 30 days after + holders of + if you do + law + law, except executing it on a + on the Program, and are irrevocable provided the stated + on the software, and (2) offer you this License + permission + permission, other than the making of an + treaty adopted on 20 December 1996, or +License: GPL-ever + FIXME + +Files: editors/scel/el/sclang-vars.el.in + editors/scel/el/sclang-widgets.el + editors/scel/el/tree-widget.el +Copyright: 2004-2005, Free Software Foundation, Inc + 2005, Free Software Foundation, Inc +License: UNKNOWN + FIXME + +Files: Help/ServerArchitecture/Server-Architecture.html + Help/ServerArchitecture/Server-Command-Reference.html + Help/ServerArchitecture/Synth-Definition-File-Format.html +Copyright: 2002, James McCartney

+License: UNKNOWN + FIXME + +Files: examples/pieces/aftergoeyvaerts.scd + examples/pieces/atheoryofharmony.scd + examples/pieces/autohausen.scd +Copyright: Nick Collins 2007 +License: UNKNOWN + FIXME + +Files: external_libraries/boost_lockfree/LICENSE_1_0.txt + external_libraries/threadpool/LICENSE_1_0.txt +Copyright: HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE + notices in the Software and this entire statement, including +License: BSL-1 + FIXME + +Files: external_libraries/boost_lockfree/libs/lockfree/examples/Jamfile.v2 + external_libraries/boost_lockfree/libs/lockfree/test/Jamfile.v2 +Copyright: 2009: Tim Blechmann + 2010: Tim Blechmann +License: BSL-1.0 + FIXME + +Files: external_libraries/boost_endian/libs/integer/test/endian_in_union_test.cpp + external_libraries/boost_endian/libs/integer/test/endian_operations_test.cpp +Copyright: Beman Dawes 2008 +License: BSL-1.0 + FIXME + +Files: external_libraries/boost_endian/libs/integer/example/endian_hello_world.cpp + external_libraries/boost_endian/libs/integer/test/scoped_enum_emulation_test.cpp +Copyright: Beman Dawes, 2009 +License: BSL-1.0 + FIXME + +Files: external_libraries/boost_lockfree/boost/atomic/detail/gcc-armv6+.hpp + external_libraries/boost_lockfree/boost/atomic/detail/linux-arm.hpp +Copyright: 2009, Helge Bahmann + 2009, Phil Endecott +License: BSL-1.0 + FIXME + +Files: Help/Other Topics/Licensing.html + HelpSource/Other/Licensing.html +Copyright: James McCartney and many other contributors.

+License: GPL + FIXME + +Files: common/SC_fftlib.cpp + server/plugins/FFT_UGens.cpp +Copyright: 2002, James McCartney + 2007-2008, Dan Stowell, incorporating code from +License: GPL-2+ + FIXME + +Files: include/lang/PyrSlot64.h + server/supernova/sc/sc_plugin_interface.cpp +Copyright: 2002, James McCartney. + 2009, Tim Blechmann + 2009-2010, Tim Blechmann +License: GPL-2+ + FIXME + +Files: common/SC_DirUtils.cpp + include/common/SC_DirUtils.h +Copyright: 2005, Tim Walters. +License: GPL-2+ + FIXME + +Files: lang/LangPrimSource/SC_Speech.M + lang/LangPrimSource/SC_Speech.cpp +Copyright: 2003, sampleAndHold.org. +License: GPL-2+ + FIXME + +Files: common/SC_StringParser.cpp + include/common/SC_StringParser.h +Copyright: 2003-2006, stefan kersten +License: GPL-2+ + FIXME + +Files: SCDoc/SCDoc.tab.hpp + lang/LangSource/Bison/lang11d_tab.cpp +Copyright: 1984, 1989-1990, 2000-2006 +License: GPL-3+ + FIXME + +Files: QtCollider/layouts/stack_layout.cpp + QtCollider/layouts/stack_layout.hpp +Copyright: 2011, Nokia Corporation and/or its subsidiary(-ies) + 2012, Jakob Leben (jakob.leben@gmail.com) +License: GPL-3+ + FIXME + +Files: external_libraries/TLSF-2.4.6/src/tlsf.c + external_libraries/TLSF-2.4.6/src/tlsf.h +Copyright: 2008, 2007, 2006, 2005, 2004 +License: UNKNOWN + FIXME + +Files: Help/ServerArchitecture/attachments/ClientVsServer/scEn.png + HelpSource/Guides/scEn.png +Copyright: ÃÀÀ`À€eeeuuuMMMRT¡P( +License: UNKNOWN + FIXME + +Files: Help/Tutorials/Getting-Started/attachments/Start Your Engines/Pasted Graphic_1.png + HelpSource/Tutorials/Getting-Started/Start-Your-Engines01.png +Copyright: ´* eõoò}HùIsÈVÕïF“£×_D™º¦¦åWßû“Ù× +License: UNKNOWN + FIXME + +Files: Help/ServerArchitecture/attachments/ClientVsServer/s8kfFC-clientServerEn.png + HelpSource/Guides/s8kfFC-clientServerEn.png +Copyright: ^Õ 3fŒ££ã™3g:vìø_‰Ò(«óÞ¾ŒÞ3±÷ô#¯‹ep¸Ò;8R +License: UNKNOWN + FIXME + +Files: Help/ServerArchitecture/attachments/Order-of-execution/server.png + HelpSource/Guides/server.png +Copyright: 절_Ÿé”.^kg&ŒV¯£}X?g%qÀ¶¡S¦LÁ ™‘ösɂ&{˜“ßAø}ñÅ¥z{âóÍ7Ki*èÀ¦PY“J(9 W°¹F¹±Ž4÷Ò3Ï<e>‰žÜAé"§¨nܚ”.h<;ØÛ ÖNŸ> + ‚¯éHHÝk²UÀD}Ó¬ + ¸$$ùrX(ùŠîUñ0lØÜµŽð҈¨Hïë>QaÑ7câc“n$܌ºço– |[$—¸’4x§>9/%6Õ/Í>ýL†F¦\o6&{&§+·ñ´¹"»òR•yµ,O™zÖX“ZëR§\ÏTÿùùㆠƓMئþiÍÖ-|-­÷^:·Iµ­¾ªyöF¯µýcǽN¯.¥·toû»3{ì{%z×úêú¯¼;9@;Ðõ¾xðÚ›!ÅaÎáõ=#¥£acVŸ¤ÇÇ?ñýª6ŸœÌ™r˜Ÿ^þÖ2S47òÝyÞ|AyQp‰zi|¹våö*yMa¿>öãñƵŸæ¿Ä7›}[ÉôG k(4MEKÆàh1tXz:,#ËÈHÀ3˜ ¬,{XØ÷pprrqqpïÛÇË˽Ÿ_@PP@HXXøÀQ´˜(¼ +License: UNKNOWN + FIXME + +Files: cmake_modules/FindJack.cmake + cmake_modules/FindPortaudio.cmake +Copyright: 2006, Andreas Schneider + 2008, Andreas Schneider +License: UNKNOWN + FIXME + +Files: external_libraries/pycxx-6.2.2/CXX/Python2/CxxDebug.hxx + external_libraries/pycxx-6.2.2/CXX/Python3/CxxDebug.hxx +Copyright: 2008, Barry A. Scott +License: UNKNOWN + FIXME + +Files: HelpSource/Reference/Server-Architecture.schelp + HelpSource/Reference/Server-Command-Reference.schelp +Copyright: 2002, James McCartney +License: UNKNOWN + FIXME + +Files: Help/ServerArchitecture/attachments/ClientVsServer/structureEn.png + HelpSource/Guides/structureEn.png +Copyright: Vz=úª¨ugwSL + ƒcΜá EAÁÝl‰»‹šµãë4T^`.œá Eùþ–åÆò¾uëMáƒc;¸Æ;½L)w_¡Ð¿þÜ^ýŒÍ oN<æÊžMy–¸ö +License: UNKNOWN + FIXME + +Files: Help/Tutorials/Getting-Started/attachments/Start Your Engines/Pasted Graphic.png + HelpSource/Tutorials/Getting-Started/Start-Your-Engines00.png +Copyright: _âywl¬«Nj¤ª2NÏ%bҪʫx—×%ñli51‘Ê‹U²äKð1ò1µW¤dّ’²6V–}K!™TV¢¦²³ºH¶š²™PdRŠÅ"S„+K˃Øç’j^ò¾pSÕÊ-7z£SÖåU#*HÒ¶®89qð`«V­€€‡8wî\bbbãÆ‡¢(ÕÕÕFɲ,;ކ ’’’ôôt +License: UNKNOWN + FIXME + +Files: Help/Tutorials/Getting-Started/attachments/Scoping and Plotting/Pasted Graphic.png + HelpSource/Tutorials/Getting-Started/Scoping-and-Plotting00.png +Copyright: _pöÏ?ûôëÙµ§¸A@cÕëm +License: UNKNOWN + FIXME + +Files: Help/GUI/Cocoa-GUI/SCImage/duck_alpha.png + HelpSource/images/duck_alpha.png +Copyright: b¶° ·jåmÏúü—ç¬Í! ãIœH°xH$Xl:æu -ð +License: UNKNOWN + FIXME + +Files: Help/UGens/attachments/Tour_of_UGens/chebyshevpolynomials.png + HelpSource/Classes/chebyshevpolynomials.png +Copyright: ϖªë‹‰:¹€t¥Ëö uÄRÈ2葾¡koªÝ¹ºŽé•3‰àãÞú®¥_ùƆU¯8ë&†¸6"å)ÃEç²¹gÿøÈɦ0ÿq“5ÊÁyXú¸Så}}_nþÝ}!Ÿ}…ϏöŒ!ø‰¨í;¤}üüþF›%¾'u^?Tóûá¶5í‚ÉÙ$½È=­;±·å¼-ºwcVÕÿÿ„ͨT æ‹¶Ê92"ã¢\pØÿ"“ÿ› +License: UNKNOWN + FIXME + +Files: Help/Other Topics/ccbysa3_88x31.png + HelpSource/Other/ccbysa3_88x31.png +Copyright: Ԗ«UªPëSSg;¨‡ªg¨oT?¤~Yý‰YÃLÃOC¤Q ±_ã¼Æ c³x,!k «†u5Ä&±ÍÙ|v*»˜ý»‹=ª¡9C3J3W³Ró”f?ã˜qøœtN ç(§—ó~ŠÞï)â)¦4L¹1e\kª–—–X«H«Q«Gë½6®í§¦½E»YûAÇJ'\'GgÎçSÙSݧ +License: UNKNOWN + FIXME + +Files: Help/GUI/Cocoa-GUI/SCImage/flowers2.jpg + HelpSource/images/flowers2.jpg +Copyright: çÛ=+Ò~Û^x{UÕm´­>ÊR4Ég¸Ù!v_'†EeÎA‹·gn•äþø¿â4r +License: UNKNOWN + FIXME + +Files: HelpSource/MathJax/MathJax.js +Copyright: 2009-2010, Design Science, Inc +License: Apache-2.0 + FIXME + +Files: external_libraries/pycxx-6.2.2/COPYRIGHT +Copyright: 1998, - 2007 + HOLDERS AND CONTRIBUTORS "AS IS" +License: BSD (3 clause) + FIXME + +Files: external_libraries/boost_endian/libs/integer/test/endian_test.cpp +Copyright: Beman Dawes 1999-2008 +License: BSL-1.0 + FIXME + +Files: external_libraries/boost_endian/libs/integer/test/Jamfile.v2 +Copyright: Beman Dawes 2006 +License: BSL-1.0 + FIXME + +Files: external_libraries/boost_endian/boost/integer/endian.hpp +Copyright: Beman Dawes 2006, 2009 + Darin Adler 2000, +License: BSL-1.0 + FIXME + +Files: external_libraries/boost_endian/boost/integer/cover_operators.hpp +Copyright: Beman Dawes 2008, + Darin Adler 2000 +License: BSL-1.0 + FIXME + +Files: external_libraries/boost_endian/boost/binary_stream.hpp +Copyright: Beman Dawes 2009, +License: BSL-1.0 + FIXME + +Files: external_libraries/boost_endian/libs/integer/example/endian_example.cpp +Copyright: Beman Dawes, 2006 +License: BSL-1.0 + FIXME + +Files: external_libraries/boost_endian/libs/integer/doc/endian.html +Copyright: Beman Dawes, 2006-2009

+License: BSL-1.0 + FIXME + +Files: external_libraries/boost_endian/doc/html/minimal.css +Copyright: Beman Dawes, 2007 +License: BSL-1.0 + FIXME + +Files: server/supernova/utilities/high_resolution_timer.hpp +Copyright: 2005-2007, Hartmut Kaiser +License: BSL-1.0 + FIXME + +Files: external_libraries/boost_lockfree/libs/atomic/doc/Jamfile.v2 +Copyright: Helge Bahmann 2006 +License: BSL-1.0 + FIXME + +Files: external_libraries/boost_lockfree/libs/lockfree/doc/boostbook.css +Copyright: 2004, Joel de Guzman + footer +License: BSL-1.0 + FIXME + +Files: external_libraries/boost_lockfree/project-root.jam +Copyright: 2006, João Abecasis +License: BSL-1.0 + FIXME + +Files: external_libraries/nova-simd/benchmarks/cache_aligned_array.hpp +Copyright: Nicolai M. Josuttis 2001 +License: BSL-1.0 + FIXME + +Files: external_libraries/boost_lockfree/boost/memory_order.hpp +Copyright: 2008-2009, Peter Dimov +License: BSL-1.0 + FIXME + +Files: external_libraries/boost_lockfree/boost/lockfree/detail/tagged_ptr_ptrcompression.hpp +Copyright: 2008-2009, Tim Blechmann, based on code by Cory Nelson +License: BSL-1.0 + FIXME + +Files: examples/other/keepyuppy.scd +Copyright: 2005 +License: GPL-2+ + FIXME + +Files: lang/LangPrimSource/PyrArrayPrimitives.cpp +Copyright: && NotNil) return errWrongType; + 2002, James McCartney. + ? slotRawInt : (first < last ? first + 1 : first - 1); +License: GPL-2+ + FIXME + +Files: server/plugins/ML_SpecStats.cpp +Copyright: Dan Stowell 2006-2007 + James McCartney +License: GPL-2+ + FIXME + +Files: server/plugins/FilterUGens.cpp +Copyright: 2002, James McCartney. + F. Fontana - August 2007 +License: GPL-2+ + FIXME + +Files: server/scsynth/SC_AU.cpp +Copyright: 2002, James McCartney. + 2006-2008, Gerard Roma +License: GPL-2+ + FIXME + +Files: server/plugins/DynNoiseUGens.cpp +Copyright: 2002, James McCartney. + 2004, HfbK. +License: GPL-2+ + FIXME + +Files: common/scope_buffer.hpp +Copyright: 2011, Jakob Leben +License: GPL-2+ + FIXME + +Files: lang/LangSource/SC_LibraryConfig.cpp +Copyright: 2003, Maurizio Umberto Puxeddu + 2011, Jakob Leben +License: GPL-2+ + FIXME + +Files: include/lang/SC_LibraryConfig.h +Copyright: 2003, Maurizio Umberto Puxeddu + 2011, Jakob Leben +License: GPL-2+ + FIXME + +Files: common/server_shm.hpp +Copyright: 2011, Jakob Leben + 2011, Tim Blechmann +License: GPL-2+ + FIXME + +Files: lang/LangPrimSource/SC_Wii.cpp +Copyright: 2002, James McCartney. + 2007, Marije Baalman +License: GPL-2+ + FIXME + +Files: lang/LangPrimSource/SC_HID.cpp +Copyright: 2002, James McCartney. + 2003, jan.t. +License: GPL-2+ + FIXME + +Files: lang/LangPrimSource/PyrMathPrim.cpp +Copyright: - slotRawInt(b) + 1)) + slotRawInt(b)); + 2002, James McCartney. +License: GPL-2+ + FIXME + +Files: lang/LangSource/PyrLexer.cpp +Copyright: 2002, James McCartney. + unput0; + || isspace || c == 0)) { +License: GPL-2+ + FIXME + +Files: lang/LangPrimSource/PyrFilePrim.cpp +Copyright: 2002, James McCartney. + || !isKindOf(slotRawObject, class_string) +License: GPL-2+ + FIXME + +Files: lang/LangPrimSource/PyrStringPrim.cpp +Copyright: 2002, James McCartney. + || (NotInt(d) && NotNil(d))) return errWrongType; +License: GPL-2+ + FIXME + +Files: editors/scel/sc/ScelDocument.sc +Copyright: 2007, Marije Baalman (nescivi AT gmail DOT com) +License: GPL-2+ + FIXME + +Files: external_libraries/nova-simd/benchmarks/perf_counter.hpp +Copyright: 2008, Tim Blechmann + 2008-2009, Red Hat, Inc., Ingo Molnar + 2008-2009, Red Hat, Inc., Peter Zijlstra + 2008-2009, Thomas Gleixner +License: GPL-2+ + FIXME + +Files: server/plugins/TestUGens.cpp +Copyright: 2007, Scott Wilson . +License: GPL-2+ + FIXME + +Files: external_libraries/nova-simd/vec_neon.hpp +Copyright: 2010, Tim Blechmann and Dan Stowell +License: GPL-2+ + FIXME + +Files: examples/GUI examples/ColorBrowser.scd +Copyright: 2007, Tom Hall +License: GPL-2+ + FIXME + +Files: server/plugins/ReverbUGens.cpp +Copyright: 2005, blackrain . +License: GPL-2+ + FIXME + +Files: include/lang/PyrSymbol.h +Copyright: 2002, James McCartney. + 2002-2004, libOSC++ contributors. See AUTHORS */ +License: GPL-2+ LGPL-2 or later (with incorrect FSF address) + FIXME + +Files: SCDoc/SCDoc.tab.cpp +Copyright: 1984, 1989-1990, 2000-2006, + 2012, Jonatan Liljedahl +License: GPL-3+ + FIXME + +Files: SCDoc/lex.scdoc.cpp +Copyright: ((unsigned int) (unsigned char) c) + 2012, Jonatan Liljedahl + yyunput( c, (yytext_ptr) ) +License: GPL-3+ + FIXME + +Files: editors/sced/sced3/supercollider.py +Copyright: 2009-2011, Artem Popov and contributors (see AUTHORS) +License: GPL-3+ + FIXME + +Files: QtCollider/primitives/prim_QPen.cpp +Copyright: 2010, Ivan Leben (ivan.leben@gmail.com) (QPen_ArcTo) + 2010-2012, Jakob Leben (jakob.leben@gmail.com) +License: GPL-3+ + FIXME + +Files: editors/sced/scedwin/ext/pipe_util.cpp +Copyright: 2012, Jakob Leben +License: GPL-3+ + FIXME + +Files: QtCollider/widgets/QcPenPrinter.cpp +Copyright: 2011, Jonatan Liljedahl + 2012, Jakob Leben (jakob.leben@gmail.com) +License: GPL-3+ + FIXME + +Files: QtCollider/hacks/hacks_x11.hpp +Copyright: 2011, Jakob Leben (jakob.leben@gmail.com) + 2011, Tim Blechmann (tim@klingt.org) +License: GPL-3+ + FIXME + +Files: QtCollider/hacks/hacks_x11.cpp +Copyright: 2003, Tomas Styblo + 2011, Jakob Leben (jakob.leben@gmail.com) + 2011, Tim Blechmann (tim@klingt.org) +License: GPL-3+ + FIXME + +Files: include/plugin_interface/SC_sndfile_stub.h +Copyright: 1999-2009, Erik de Castro Lopo +License: LGPL-2.1+ + FIXME + +Files: external_libraries/TLSF-2.4.6/LGPL-2.1.txt +Copyright: 1991, 1999 Free Software Foundation, Inc + + HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY + HOLDERS AND/OR + disclaimer" for the library + holder or + holder who places the Library under this License + interest in the + law: that is to say, a work containing the Library or a + notices, you must include the + the +License: LGPL-ever + FIXME + +Files: external_libraries/yaml-cpp-0.3.0/license.txt +Copyright: 2008, Jesse Beder + HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +License: MIT/X11 (BSD like) + FIXME + +Files: package/pkg-dmg +Copyright: 2005 +License: MPL-1.1 GPL + FIXME + +Files: HelpSource/MathJax/fonts/HTML-CSS/TeX/eot/MathJax_Typewriter-Regular.eot +Copyright:      Ë  ³³    þ5   ÌÌ HÄc(7.5476;#"'&5476;+32_ +      Ë  þ5   Ëþ5 (äc?673:6:;#"'.=#35467632!&547>54.(#'.Æ ÷A"~ï  þq–™? x  "g7 Ø"  z  ü÷&æn=2>7632#"&'.#"3#&54>735&5&'&""&5467˜5/ + 2009-2010, Design Science, Inc.MathJax_TypewriterMathJax_TypewriterRegularRegularFontForge 2.0 : MathJax_Typewriter-RegularFontForge 2.0 : MathJax_Typewriter-RegularMathJax_Typewriter-RegularMathJax_Typewriter-RegularVersion 1.1Version 1.1MathJax_Typewriter-RegularMathJax_Typewriter-RegularCopyright (c) 2009-2010, Design Science, Inc. (<www.mathjax.org>), + 2009-2010, Design Science, Inc. () +License: UNKNOWN + FIXME + +Files: HelpSource/MathJax/fonts/HTML-CSS/TeX/eot/MathJax_Main-Regular.eot +Copyright: =K5K0/  CiiC + 2009-2010, Design Science, Inc.MathJax_MainMathJax_MainRegularRegularFontForge 2.0 : MathJax_Main-RegularFontForge 2.0 : MathJax_Main-RegularMathJax_Main-RegularMathJax_Main-RegularVersion 1.1Version 1.1MathJax_Main-RegularMathJax_Main-RegularCopyright (c) 2009-2010, Design Science, Inc. (<www.mathjax.org>), + 2009-2010, Design Science, Inc. () +License: UNKNOWN + FIXME + +Files: HelpSource/MathJax/fonts/HTML-CSS/TeX/eot/MathJax_AMS-Regular.eot +Copyright:  a_`a + 2009-2010, Design Science, Inc.MathJax_AMSMathJax_AMSRegularRegularFontForge 2.0 : MathJax_AMS-RegularFontForge 2.0 : MathJax_AMS-RegularMathJax_AMS-RegularMathJax_AMS-RegularVersion 1.1Version 1.1MathJax_AMS-RegularMathJax_AMS-RegularCopyright (c) 2009-2010, Design Science, Inc. (<www.mathjax.org>), + 2009-2010, Design Science, Inc. () +License: UNKNOWN + FIXME + +Files: Help/Extending and Customizing SC/attachments/Writing_Unit_Generators/Pasted Graphic 10.png +Copyright: qQ%Mgc§¶‡ǘ뿮„þEη + Öù æÝѪïßòz´4n¼S\\œø¦2ó¹yêi*«@®Yp´¡ÏGíVOñò’yN†‡,×P“»&..ÎÛÛ;((H4%Y,«ÕZ__¿4&a„eMìº×‘Kàx¾¯í¶2b%N½à„Žã[.ýÐj­s<øqÊ'󃥠nYp=›E»8ž¢T#‘G8âTêð'H§|Þt´ÆeÇ ñFÓ3áRd™0Ü¥>—Ëpr)>>>"я)@úßûøøÜ¢º…¿tª››ðWxeÀâp—èÐpIŠ3‘|.#b8¹€µk×:¤ˆKÇNC)Gvÿ$!1¶H> ‰[ÁØø\î®VI^'! ø\ˆŒÈäàú}.dt}.7\n¬•zHHHŒ/ÿ›ÏE€œ’ÁÙçÂJ>—[ÉØTôR˲f³Éd2qlŸÙž¯ØúÞaQ/!1‘|.·¶çŠ·ÆËÇ[í­Qûxk®^½jêa^[;o¹ßÙ¾kNڗ¡Ìðs[àö€\\ò´h‰ï¶è±p;yѓ¸-ò›4Ãi^®„„kÆÄç"µ\†@ˆŒ¢P(!2™L«Õþío{ø‘Gžy"ªïã£m‚ÂÃÅCÑà3ùÝçg̍åÞÏi@¨f Շƒ£à8™»pÆû±Hμ(ނ>“2ç·¸¬/è&eýË̘€Á¹'g÷5¤ž¥Y +License: UNKNOWN + FIXME + +Files: Help/Extending and Customizing SC/attachments/Writing_Unit_Generators/Pasted Graphic.png +Copyright: %HZ¾ÔAÝò¥@«»‰Ty™w®¬[Þk +License: UNKNOWN + FIXME + +Files: HelpSource/MathJax/fonts/HTML-CSS/TeX/otf/MathJax_Main-Italic.otf +Copyright: ( Û"#&#‹$%³&þ( )**Ô,K-Á.×/Ÿ00e0w0€1s2>2ê3Ä4Š5w6l7"7Â8‡9·:O;¿<Œ=>%>Ò?†@dAAÓBRC-D?DøFF'F*G_GàHˆHÅI I IFI‹IåIùJCJ·JÐK KøL_MMýO‡PQ}R‘TU«VÖVáW%W|WX7XSYºYÓYìYûüa‹½øE½½½½½½÷*øû*½üwøE½üEüaü(‹÷ øçwö÷\¶Ð÷Þù`†‹†Š‡Š‡‹ƒ‡„‰z‚~~„z‡CüL‹‹ƒŠ›‹›‹ŒŒŒ®ò´÷×÷v‹–t›pûBý`à + 2009-2010, Design Science, Inc.MathJax_MainMathJax_MainItalicItalicFontForge 2.0 : MathJax_Main-ItalicFontForge 2.0 : MathJax_Main-ItalicMathJax_Main-ItalicMathJax_Main-ItalicVersion 1.1Version 1.1MathJax_Main-ItalicMathJax_Main-ItalicCopyright (c) 2009-2010, Design Science, Inc. (<www.mathjax.org>), + 2009-2010, Design Science, Inc. () + 2009-2010, Design Science, Inc.MathJax_Main-ItalicMathJax_MainNormalh +License: UNKNOWN + FIXME + +Files: Help/GUI/Cocoa-GUI/SCQuartzComposerView/SCQuartzComposerView.html +Copyright: * Line.kr(1, 3, 20), loop: 1);

+License: UNKNOWN + FIXME + +Files: sounds/SinedPink.aiff +Copyright: ?RhO½ÍÍ`?HÛÆ¾î ?>…;½íä?3o½»`?'¤t»>Ãü?1:½Qq€?!ë=f=À?ƒ½Ý€>äÈO¾BX€>Ç£2½º6à>µL¾ö>‹¸½œn@>Wðu¾5T°>ÎL¾<´=²$ê½F§€<ÇèFºä_ø½Æ½Õm ½ÎqR¾8“@¾&×ü¾< ¾eς½»`¾‘ïô¾VL ¾°e_½Ú½¾Î)b¾1Áð¾ë½á뀿“!½þá¿潊ßÀ¿þ$“p¿*O¸¾+0¿5ób¾I¿@à ½Ïm ¿K +License: UNKNOWN + FIXME + +Files: editors/sced/sced3/supercollider.plugin.in +Copyright: 2006-2011, Artem Popov +License: UNKNOWN + FIXME + +Files: SCClassLibrary/Common/Audio/FFTUnpacking.sc +Copyright: 2007, Dan Stowell +License: UNKNOWN + FIXME + +Files: HelpSource/MathJax/fonts/HTML-CSS/TeX/otf/MathJax_AMS-Regular.otf +Copyright: 2009-2010, Design Science, Inc.MathJax_AMSMathJax_AMSRegularRegularFontForge 2.0 : MathJax_AMS-RegularFontForge 2.0 : MathJax_AMS-RegularMathJax_AMS-RegularMathJax_AMS-RegularVersion 1.1Version 1.1MathJax_AMS-RegularMathJax_AMS-RegularCopyright (c) 2009-2010, Design Science, Inc. (<www.mathjax.org>), + 2009-2010, Design Science, Inc. () + 2009-2010, Design Science, Inc.MathJax_AMS-RegularMathJax_AMSNormal"#$%&'()*+,-./0123456789:;L‡d¥§ˆ~‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¦¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  +License: UNKNOWN + FIXME + +Files: HelpSource/MathJax/fonts/HTML-CSS/TeX/eot/MathJax_Caligraphic-Bold.eot +Copyright: 2009-2010, Design Science, Inc.MathJax_CaligraphicMathJax_CaligraphicBoldBoldFontForge 2.0 : MathJax_Caligraphic-BoldFontForge 2.0 : MathJax_Caligraphic-BoldMathJax_Caligraphic-BoldMathJax_Caligraphic-BoldVersion 1.1Version 1.1MathJax_Caligraphic-BoldMathJax_Caligraphic-BoldCopyright (c) 2009-2010, Design Science, Inc. (<www.mathjax.org>), + 2009-2010, Design Science, Inc. () +License: UNKNOWN + FIXME + +Files: HelpSource/MathJax/fonts/HTML-CSS/TeX/otf/MathJax_Caligraphic-Bold.otf +Copyright: 2009-2010, Design Science, Inc.MathJax_CaligraphicMathJax_CaligraphicBoldBoldFontForge 2.0 : MathJax_Caligraphic-BoldFontForge 2.0 : MathJax_Caligraphic-BoldMathJax_Caligraphic-BoldMathJax_Caligraphic-BoldVersion 1.1Version 1.1MathJax_Caligraphic-BoldMathJax_Caligraphic-BoldCopyright (c) 2009-2010, Design Science, Inc. (<www.mathjax.org>), + 2009-2010, Design Science, Inc. () + 2009-2010, Design Science, Inc.MathJax_Caligraphic-BoldMathJax_CaligraphicNormal"#$%&'()*+,-./0123456789:;‡ˆ‰Š*"%¸DæâÅqk t +License: UNKNOWN + FIXME + +Files: HelpSource/MathJax/fonts/HTML-CSS/TeX/eot/MathJax_Caligraphic-Regular.eot +Copyright: 2009-2010, Design Science, Inc.MathJax_CaligraphicMathJax_CaligraphicRegularRegularFontForge 2.0 : MathJax_Caligraphic-RegularFontForge 2.0 : MathJax_Caligraphic-RegularMathJax_Caligraphic-RegularMathJax_Caligraphic-RegularVersion 1.1Version 1.1MathJax_Caligraphic-RegularMathJax_Caligraphic-RegularCopyright (c) 2009-2010, Design Science, Inc. (<www.mathjax.org>), + 2009-2010, Design Science, Inc. () +License: UNKNOWN + FIXME + +Files: HelpSource/MathJax/fonts/HTML-CSS/TeX/otf/MathJax_Caligraphic-Regular.otf +Copyright: 2009-2010, Design Science, Inc.MathJax_CaligraphicMathJax_CaligraphicRegularRegularFontForge 2.0 : MathJax_Caligraphic-RegularFontForge 2.0 : MathJax_Caligraphic-RegularMathJax_Caligraphic-RegularMathJax_Caligraphic-RegularVersion 1.1Version 1.1MathJax_Caligraphic-RegularMathJax_Caligraphic-RegularCopyright (c) 2009-2010, Design Science, Inc. (<www.mathjax.org>), + 2009-2010, Design Science, Inc. () + 2009-2010, Design Science, Inc.MathJax_Caligraphic-RegularMathJax_CaligraphicNormal"#$%&'()*+,-./0123456789:;‡ˆ‰Š*"%ÎÌgQ>ÝÕÀÈ +License: UNKNOWN + FIXME + +Files: HelpSource/MathJax/fonts/HTML-CSS/TeX/eot/MathJax_Fraktur-Bold.eot +Copyright: 2009-2010, Design Science, Inc.MathJax_FrakturMathJax_FrakturBoldBoldFontForge 2.0 : MathJax_Fraktur-BoldFontForge 2.0 : MathJax_Fraktur-BoldMathJax_Fraktur-BoldMathJax_Fraktur-BoldVersion 1.1Version 1.1MathJax_Fraktur-BoldMathJax_Fraktur-BoldCopyright (c) 2009-2010, Design Science, Inc. (<www.mathjax.org>), + 2009-2010, Design Science, Inc. () +License: UNKNOWN + FIXME + +Files: HelpSource/MathJax/fonts/HTML-CSS/TeX/otf/MathJax_Fraktur-Bold.otf +Copyright: 2009-2010, Design Science, Inc.MathJax_FrakturMathJax_FrakturBoldBoldFontForge 2.0 : MathJax_Fraktur-BoldFontForge 2.0 : MathJax_Fraktur-BoldMathJax_Fraktur-BoldMathJax_Fraktur-BoldVersion 1.1Version 1.1MathJax_Fraktur-BoldMathJax_Fraktur-BoldCopyright (c) 2009-2010, Design Science, Inc. (<www.mathjax.org>), + 2009-2010, Design Science, Inc. () + 2009-2010, Design Science, Inc.MathJax_Fraktur-BoldMathJax_FrakturNormalh +License: UNKNOWN + FIXME + +Files: HelpSource/MathJax/fonts/HTML-CSS/TeX/eot/MathJax_Fraktur-Regular.eot +Copyright: 2009-2010, Design Science, Inc.MathJax_FrakturMathJax_FrakturRegularRegularFontForge 2.0 : MathJax_Fraktur-RegularFontForge 2.0 : MathJax_Fraktur-RegularMathJax_Fraktur-RegularMathJax_Fraktur-RegularVersion 1.1Version 1.1MathJax_Fraktur-RegularMathJax_Fraktur-RegularCopyright (c) 2009-2010, Design Science, Inc. (<www.mathjax.org>), + 2009-2010, Design Science, Inc. () +License: UNKNOWN + FIXME + +Files: HelpSource/MathJax/fonts/HTML-CSS/TeX/otf/MathJax_Fraktur-Regular.otf +Copyright: 2009-2010, Design Science, Inc.MathJax_FrakturMathJax_FrakturRegularRegularFontForge 2.0 : MathJax_Fraktur-RegularFontForge 2.0 : MathJax_Fraktur-RegularMathJax_Fraktur-RegularMathJax_Fraktur-RegularVersion 1.1Version 1.1MathJax_Fraktur-RegularMathJax_Fraktur-RegularCopyright (c) 2009-2010, Design Science, Inc. (<www.mathjax.org>), + 2009-2010, Design Science, Inc. () + 2009-2010, Design Science, Inc.MathJax_Fraktur-RegularMathJax_FrakturNormalh +License: UNKNOWN + FIXME + +Files: HelpSource/MathJax/fonts/HTML-CSS/TeX/eot/MathJax_Main-Bold.eot +Copyright: 2009-2010, Design Science, Inc.MathJax_MainMathJax_MainBoldBoldFontForge 2.0 : MathJax_Main-BoldFontForge 2.0 : MathJax_Main-BoldMathJax_Main-BoldMathJax_Main-BoldVersion 1.1Version 1.1MathJax_Main-BoldMathJax_Main-BoldCopyright (c) 2009-2010, Design Science, Inc. (<www.mathjax.org>), + 2009-2010, Design Science, Inc. () +License: UNKNOWN + FIXME + +Files: HelpSource/MathJax/fonts/HTML-CSS/TeX/otf/MathJax_Main-Bold.otf +Copyright: 2009-2010, Design Science, Inc.MathJax_MainMathJax_MainBoldBoldFontForge 2.0 : MathJax_Main-BoldFontForge 2.0 : MathJax_Main-BoldMathJax_Main-BoldMathJax_Main-BoldVersion 1.1Version 1.1MathJax_Main-BoldMathJax_Main-BoldCopyright (c) 2009-2010, Design Science, Inc. (<www.mathjax.org>), + 2009-2010, Design Science, Inc. () + 2009-2010, Design Science, Inc.MathJax_Main-BoldMathJax_MainNormalh +License: UNKNOWN + FIXME + +Files: HelpSource/MathJax/fonts/HTML-CSS/TeX/eot/MathJax_Main-Italic.eot +Copyright: 2009-2010, Design Science, Inc.MathJax_MainMathJax_MainItalicItalicFontForge 2.0 : MathJax_Main-ItalicFontForge 2.0 : MathJax_Main-ItalicMathJax_Main-ItalicMathJax_Main-ItalicVersion 1.1Version 1.1MathJax_Main-ItalicMathJax_Main-ItalicCopyright (c) 2009-2010, Design Science, Inc. (<www.mathjax.org>), + 2009-2010, Design Science, Inc. () +License: UNKNOWN + FIXME + +Files: HelpSource/MathJax/fonts/HTML-CSS/TeX/eot/MathJax_Math-BoldItalic.eot +Copyright: 2009-2010, Design Science, Inc.MathJax_MathMathJax_MathBold ItalicBold ItalicFontForge 2.0 : MathJax_Math-BoldItalicFontForge 2.0 : MathJax_Math-BoldItalicMathJax_Math-BoldItalicMathJax_Math-BoldItalicVersion 1.1Version 1.1MathJax_Math-BoldItalicMathJax_Math-BoldItalicCopyright (c) 2009-2010, Design Science, Inc. (<www.mathjax.org>), + 2009-2010, Design Science, Inc. () +License: UNKNOWN + FIXME + +Files: HelpSource/MathJax/fonts/HTML-CSS/TeX/otf/MathJax_Math-BoldItalic.otf +Copyright: 2009-2010, Design Science, Inc.MathJax_MathMathJax_MathBold ItalicBold ItalicFontForge 2.0 : MathJax_Math-BoldItalicFontForge 2.0 : MathJax_Math-BoldItalicMathJax_Math-BoldItalicMathJax_Math-BoldItalicVersion 1.1Version 1.1MathJax_Math-BoldItalicMathJax_Math-BoldItalicCopyright (c) 2009-2010, Design Science, Inc. (<www.mathjax.org>), + 2009-2010, Design Science, Inc. () + 2009-2010, Design Science, Inc.MathJax_Math-BoldItalicMathJax_MathNormal"#$%&'()*+,-./0123456789:;BCDEFGHIJKLMNOPQRSTUVWXYZ[‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œ˜žŸ ¡¢£¤¥¦§¨ª«¬­®¯°±²d !c^fM$\½ 0 Ý +License: UNKNOWN + FIXME + +Files: HelpSource/MathJax/fonts/HTML-CSS/TeX/eot/MathJax_Math-Italic.eot +Copyright: 2009-2010, Design Science, Inc.MathJax_MathMathJax_MathItalicItalicFontForge 2.0 : MathJax_Math-ItalicFontForge 2.0 : MathJax_Math-ItalicMathJax_Math-ItalicMathJax_Math-ItalicVersion 1.1Version 1.1MathJax_Math-ItalicMathJax_Math-ItalicCopyright (c) 2009-2010, Design Science, Inc. (<www.mathjax.org>), + 2009-2010, Design Science, Inc. () +License: UNKNOWN + FIXME + +Files: HelpSource/MathJax/fonts/HTML-CSS/TeX/otf/MathJax_Math-Italic.otf +Copyright: 2009-2010, Design Science, Inc.MathJax_MathMathJax_MathItalicItalicFontForge 2.0 : MathJax_Math-ItalicFontForge 2.0 : MathJax_Math-ItalicMathJax_Math-ItalicMathJax_Math-ItalicVersion 1.1Version 1.1MathJax_Math-ItalicMathJax_Math-ItalicCopyright (c) 2009-2010, Design Science, Inc. (<www.mathjax.org>), + 2009-2010, Design Science, Inc. () + 2009-2010, Design Science, Inc.MathJax_Math-ItalicMathJax_MathNormal"#$%&'()*+,-./0123456789:;BCDEFGHIJKLMNOPQRSTUVWXYZ[‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œ˜žŸ ¡¢£¤¥¦§¨ª«¬­®¯°±²d ![<U ï%`tú ¹ +License: UNKNOWN + FIXME + +Files: HelpSource/MathJax/fonts/HTML-CSS/TeX/eot/MathJax_Math-Regular.eot +Copyright: 2009-2010, Design Science, Inc.MathJax_MathMathJax_MathRegularRegularFontForge 2.0 : MathJax_Math-RegularFontForge 2.0 : MathJax_Math-RegularMathJax_Math-RegularMathJax_Math-RegularVersion 1.1Version 1.1MathJax_Math-RegularMathJax_Math-RegularCopyright (c) 2009-2010, Design Science, Inc. (<www.mathjax.org>), + 2009-2010, Design Science, Inc. () +License: UNKNOWN + FIXME + +Files: HelpSource/MathJax/fonts/HTML-CSS/TeX/otf/MathJax_Math-Regular.otf +Copyright: 2009-2010, Design Science, Inc.MathJax_MathMathJax_MathRegularRegularFontForge 2.0 : MathJax_Math-RegularFontForge 2.0 : MathJax_Math-RegularMathJax_Math-RegularMathJax_Math-RegularVersion 1.1Version 1.1MathJax_Math-RegularMathJax_Math-RegularCopyright (c) 2009-2010, Design Science, Inc. (<www.mathjax.org>), + 2009-2010, Design Science, Inc. () + 2009-2010, Design Science, Inc.MathJax_Math-RegularMathJax_MathNormal"#$%&'()*+,-./0123456789:;BCDEFGHIJKLMNOPQRSTUVWXYZ[‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œ˜žŸ ¡¢£¤¥¦§¨ª«¬­®¯°±²c !æµë&:À  +License: UNKNOWN + FIXME + +Files: HelpSource/MathJax/fonts/HTML-CSS/TeX/eot/MathJax_SansSerif-Bold.eot +Copyright: 2009-2010, Design Science, Inc.MathJax_SansSerifMathJax_SansSerifBoldBoldFontForge 2.0 : MathJax_SansSerif-BoldFontForge 2.0 : MathJax_SansSerif-BoldMathJax_SansSerif-BoldMathJax_SansSerif-BoldVersion 1.1Version 1.1MathJax_SansSerif-BoldMathJax_SansSerif-BoldCopyright (c) 2009-2010, Design Science, Inc. (<www.mathjax.org>), + 2009-2010, Design Science, Inc. () +License: UNKNOWN + FIXME + +Files: HelpSource/MathJax/fonts/HTML-CSS/TeX/otf/MathJax_SansSerif-Bold.otf +Copyright: 2009-2010, Design Science, Inc.MathJax_SansSerifMathJax_SansSerifBoldBoldFontForge 2.0 : MathJax_SansSerif-BoldFontForge 2.0 : MathJax_SansSerif-BoldMathJax_SansSerif-BoldMathJax_SansSerif-BoldVersion 1.1Version 1.1MathJax_SansSerif-BoldMathJax_SansSerif-BoldCopyright (c) 2009-2010, Design Science, Inc. (<www.mathjax.org>), + 2009-2010, Design Science, Inc. () + 2009-2010, Design Science, Inc.MathJax_SansSerif-BoldMathJax_SansSerifNormalh +License: UNKNOWN + FIXME + +Files: HelpSource/MathJax/fonts/HTML-CSS/TeX/eot/MathJax_SansSerif-Italic.eot +Copyright: 2009-2010, Design Science, Inc.MathJax_SansSerifMathJax_SansSerifItalicItalicFontForge 2.0 : MathJax_SansSerif-ItalicFontForge 2.0 : MathJax_SansSerif-ItalicMathJax_SansSerif-ItalicMathJax_SansSerif-ItalicVersion 1.1Version 1.1MathJax_SansSerif-ItalicMathJax_SansSerif-ItalicCopyright (c) 2009-2010, Design Science, Inc. (<www.mathjax.org>), + 2009-2010, Design Science, Inc. () +License: UNKNOWN + FIXME + +Files: HelpSource/MathJax/fonts/HTML-CSS/TeX/otf/MathJax_SansSerif-Italic.otf +Copyright: 2009-2010, Design Science, Inc.MathJax_SansSerifMathJax_SansSerifItalicItalicFontForge 2.0 : MathJax_SansSerif-ItalicFontForge 2.0 : MathJax_SansSerif-ItalicMathJax_SansSerif-ItalicMathJax_SansSerif-ItalicVersion 1.1Version 1.1MathJax_SansSerif-ItalicMathJax_SansSerif-ItalicCopyright (c) 2009-2010, Design Science, Inc. (<www.mathjax.org>), + 2009-2010, Design Science, Inc. () + 2009-2010, Design Science, Inc.MathJax_SansSerif-ItalicMathJax_SansSerifNormalh +License: UNKNOWN + FIXME + +Files: HelpSource/MathJax/fonts/HTML-CSS/TeX/eot/MathJax_SansSerif-Regular.eot +Copyright: 2009-2010, Design Science, Inc.MathJax_SansSerifMathJax_SansSerifRegularRegularFontForge 2.0 : MathJax_SansSerif-RegularFontForge 2.0 : MathJax_SansSerif-RegularMathJax_SansSerif-RegularMathJax_SansSerif-RegularVersion 1.1Version 1.1MathJax_SansSerif-RegularMathJax_SansSerif-RegularCopyright (c) 2009-2010, Design Science, Inc. (<www.mathjax.org>), + 2009-2010, Design Science, Inc. () +License: UNKNOWN + FIXME + +Files: HelpSource/MathJax/fonts/HTML-CSS/TeX/otf/MathJax_SansSerif-Regular.otf +Copyright: 2009-2010, Design Science, Inc.MathJax_SansSerifMathJax_SansSerifRegularRegularFontForge 2.0 : MathJax_SansSerif-RegularFontForge 2.0 : MathJax_SansSerif-RegularMathJax_SansSerif-RegularMathJax_SansSerif-RegularVersion 1.1Version 1.1MathJax_SansSerif-RegularMathJax_SansSerif-RegularCopyright (c) 2009-2010, Design Science, Inc. (<www.mathjax.org>), + 2009-2010, Design Science, Inc. () + 2009-2010, Design Science, Inc.MathJax_SansSerif-RegularMathJax_SansSerifNormalh +License: UNKNOWN + FIXME + +Files: HelpSource/MathJax/fonts/HTML-CSS/TeX/eot/MathJax_Script-Regular.eot +Copyright: 2009-2010, Design Science, Inc.MathJax_ScriptMathJax_ScriptRegularRegularFontForge 2.0 : MathJax_Script-RegularFontForge 2.0 : MathJax_Script-RegularMathJax_Script-RegularMathJax_Script-RegularVersion 1.1Version 1.1MathJax_Script-RegularMathJax_Script-RegularCopyright (c) 2009-2010, Design Science, Inc. (<www.mathjax.org>), + 2009-2010, Design Science, Inc. () +License: UNKNOWN + FIXME + +Files: HelpSource/MathJax/fonts/HTML-CSS/TeX/otf/MathJax_Script-Regular.otf +Copyright: 2009-2010, Design Science, Inc.MathJax_ScriptMathJax_ScriptRegularRegularFontForge 2.0 : MathJax_Script-RegularFontForge 2.0 : MathJax_Script-RegularMathJax_Script-RegularMathJax_Script-RegularVersion 1.1Version 1.1MathJax_Script-RegularMathJax_Script-RegularCopyright (c) 2009-2010, Design Science, Inc. (<www.mathjax.org>), + 2009-2010, Design Science, Inc. () + 2009-2010, Design Science, Inc.MathJax_Script-RegularMathJax_ScriptNormal"#$%&'()*+,-./0123456789:;‡ˆ‰Š  !÷Nàœ j  ;€Ëns:¤Ç.¯ø!D"¯$/%j')*´---8-Q-`‹½øE½½½½½½÷*øû*½üwøE½üE‡ƒ°–°{Þ÷¦°÷šw®´÷É÷Ü·¿×ǐ’‰‘‰•‹ª«ž¥¡|›s€‹€ˆ†v~r„}‰„‹}‹|~–š|¢ƒ«‹À‹É¦Í¼™•–‡­~±‚¶…ߝˆ«ˆ‹Œ‹‰‡„yЉ“…¹±‹”‹ŒŒŒ‘•’•—Ÿ¼–¼°¯““–™‹‘€‹‰Š†‡……ooesg‘”÷U÷Ë÷#÷{·Ò‹Ž‹“‰Œ€‹ƒ‹‡‹‰ŠŠŠ†„†„‚}~ƒû5û'(3‚“c¬UžE‹i‹o…r~r€zrfSx +License: UNKNOWN + FIXME + +Files: HelpSource/MathJax/fonts/HTML-CSS/TeX/eot/MathJax_Size1-Regular.eot +Copyright: 2009-2010, Design Science, Inc.MathJax_Size1MathJax_Size1RegularRegularFontForge 2.0 : MathJax_Size1-RegularFontForge 2.0 : MathJax_Size1-RegularMathJax_Size1-RegularMathJax_Size1-RegularVersion 1.1Version 1.1MathJax_Size1-RegularMathJax_Size1-RegularCopyright (c) 2009-2010, Design Science, Inc. (<www.mathjax.org>), + 2009-2010, Design Science, Inc. () +License: UNKNOWN + FIXME + +Files: HelpSource/MathJax/fonts/HTML-CSS/TeX/otf/MathJax_Size1-Regular.otf +Copyright: 2009-2010, Design Science, Inc.MathJax_Size1MathJax_Size1RegularRegularFontForge 2.0 : MathJax_Size1-RegularFontForge 2.0 : MathJax_Size1-RegularMathJax_Size1-RegularMathJax_Size1-RegularVersion 1.1Version 1.1MathJax_Size1-RegularMathJax_Size1-RegularCopyright (c) 2009-2010, Design Science, Inc. (<www.mathjax.org>), + 2009-2010, Design Science, Inc. () + 2009-2010, Design Science, Inc.MathJax_Size1-RegularMathJax_Size1Normal +License: UNKNOWN + FIXME + +Files: HelpSource/MathJax/fonts/HTML-CSS/TeX/eot/MathJax_Size2-Regular.eot +Copyright: 2009-2010, Design Science, Inc.MathJax_Size2MathJax_Size2RegularRegularFontForge 2.0 : MathJax_Size2-RegularFontForge 2.0 : MathJax_Size2-RegularMathJax_Size2-RegularMathJax_Size2-RegularVersion 1.1Version 1.1MathJax_Size2-RegularMathJax_Size2-RegularCopyright (c) 2009-2010, Design Science, Inc. (<www.mathjax.org>), + 2009-2010, Design Science, Inc. () +License: UNKNOWN + FIXME + +Files: HelpSource/MathJax/fonts/HTML-CSS/TeX/otf/MathJax_Size2-Regular.otf +Copyright: 2009-2010, Design Science, Inc.MathJax_Size2MathJax_Size2RegularRegularFontForge 2.0 : MathJax_Size2-RegularFontForge 2.0 : MathJax_Size2-RegularMathJax_Size2-RegularMathJax_Size2-RegularVersion 1.1Version 1.1MathJax_Size2-RegularMathJax_Size2-RegularCopyright (c) 2009-2010, Design Science, Inc. (<www.mathjax.org>), + 2009-2010, Design Science, Inc. () + 2009-2010, Design Science, Inc.MathJax_Size2-RegularMathJax_Size2Normal +License: UNKNOWN + FIXME + +Files: HelpSource/MathJax/fonts/HTML-CSS/TeX/eot/MathJax_Size3-Regular.eot +Copyright: 2009-2010, Design Science, Inc.MathJax_Size3MathJax_Size3RegularRegularFontForge 2.0 : MathJax_Size3-RegularFontForge 2.0 : MathJax_Size3-RegularMathJax_Size3-RegularMathJax_Size3-RegularVersion 1.1Version 1.1MathJax_Size3-RegularMathJax_Size3-RegularCopyright (c) 2009-2010, Design Science, Inc. (<www.mathjax.org>), + 2009-2010, Design Science, Inc. () +License: UNKNOWN + FIXME + +Files: HelpSource/MathJax/fonts/HTML-CSS/TeX/otf/MathJax_Size3-Regular.otf +Copyright: 2009-2010, Design Science, Inc.MathJax_Size3MathJax_Size3RegularRegularFontForge 2.0 : MathJax_Size3-RegularFontForge 2.0 : MathJax_Size3-RegularMathJax_Size3-RegularMathJax_Size3-RegularVersion 1.1Version 1.1MathJax_Size3-RegularMathJax_Size3-RegularCopyright (c) 2009-2010, Design Science, Inc. (<www.mathjax.org>), + 2009-2010, Design Science, Inc. () + 2009-2010, Design Science, Inc.MathJax_Size3-RegularMathJax_Size3Normal +License: UNKNOWN + FIXME + +Files: HelpSource/MathJax/fonts/HTML-CSS/TeX/eot/MathJax_Size4-Regular.eot +Copyright: 2009-2010, Design Science, Inc.MathJax_Size4MathJax_Size4RegularRegularFontForge 2.0 : MathJax_Size4-RegularFontForge 2.0 : MathJax_Size4-RegularMathJax_Size4-RegularMathJax_Size4-RegularVersion 1.1Version 1.1MathJax_Size4-RegularMathJax_Size4-RegularCopyright (c) 2009-2010, Design Science, Inc. (<www.mathjax.org>), + 2009-2010, Design Science, Inc. () +License: UNKNOWN + FIXME + +Files: HelpSource/MathJax/fonts/HTML-CSS/TeX/otf/MathJax_Size4-Regular.otf +Copyright: 2009-2010, Design Science, Inc.MathJax_Size4MathJax_Size4RegularRegularFontForge 2.0 : MathJax_Size4-RegularFontForge 2.0 : MathJax_Size4-RegularMathJax_Size4-RegularMathJax_Size4-RegularVersion 1.1Version 1.1MathJax_Size4-RegularMathJax_Size4-RegularCopyright (c) 2009-2010, Design Science, Inc. (<www.mathjax.org>), + 2009-2010, Design Science, Inc. () + 2009-2010, Design Science, Inc.MathJax_Size4-RegularMathJax_Size4Normal +License: UNKNOWN + FIXME + +Files: HelpSource/MathJax/fonts/HTML-CSS/TeX/otf/MathJax_Typewriter-Regular.otf +Copyright: 2009-2010, Design Science, Inc.MathJax_TypewriterMathJax_TypewriterRegularRegularFontForge 2.0 : MathJax_Typewriter-RegularFontForge 2.0 : MathJax_Typewriter-RegularMathJax_Typewriter-RegularMathJax_Typewriter-RegularVersion 1.1Version 1.1MathJax_Typewriter-RegularMathJax_Typewriter-RegularCopyright (c) 2009-2010, Design Science, Inc. (<www.mathjax.org>), + 2009-2010, Design Science, Inc. () + 2009-2010, Design Science, Inc.MathJax_Typewriter-RegularMathJax_TypewriterNormalh +License: UNKNOWN + FIXME + +Files: HelpSource/MathJax/fonts/HTML-CSS/TeX/otf/MathJax_WinChrome-Regular.otf +Copyright: 2009-2010, Design Science, Inc.MathJax_WinChromeMathJax_WinChromeRegularRegularFontForge 2.0 : MathJax_WinChrome-RegularFontForge 2.0 : MathJax_WinChrome-RegularMathJax_WinChrome-RegularMathJax_WinChrome-RegularVersion 1.1Version 1.1MathJax_WinChrome-RegularMathJax_WinChrome-RegularCopyright (c) 2009-2010, Design Science, Inc. (<www.mathjax.org>), + 2009-2010, Design Science, Inc. () + 2009-2010, Design Science, Inc.MathJax_WinChrome-RegularMathJax_WinChromeNormal5E‡ˆ‰Š‹ŒŽ !|(@AâûÎ.G`o‹½øE½½½½½½÷*øû*½üwøE½üE÷nßøœ‹…‹Š‡†n™÷Ñû*÷Œû +License: UNKNOWN + FIXME + +Files: HelpSource/MathJax/fonts/HTML-CSS/TeX/eot/MathJax_WinIE6-Regular.eot +Copyright: 2009-2010, Design Science, Inc.MathJax_WinIE6MathJax_WinIE6RegularRegularFontForge 2.0 : MathJax_WinIE6-RegularFontForge 2.0 : MathJax_WinIE6-RegularMathJax_WinIE6-RegularMathJax_WinIE6-RegularVersion 1.1Version 1.1MathJax_WinIE6-RegularMathJax_WinIE6-RegularCopyright (c) 2009-2010, Design Science, Inc. (<www.mathjax.org>), + 2009-2010, Design Science, Inc. () +License: UNKNOWN + FIXME + +Files: HelpSource/MathJax/fonts/HTML-CSS/TeX/otf/MathJax_WinIE6-Regular.otf +Copyright: 2009-2010, Design Science, Inc.MathJax_WinIE6MathJax_WinIE6RegularRegularFontForge 2.0 : MathJax_WinIE6-RegularFontForge 2.0 : MathJax_WinIE6-RegularMathJax_WinIE6-RegularMathJax_WinIE6-RegularVersion 1.1Version 1.1MathJax_WinIE6-RegularMathJax_WinIE6-RegularCopyright (c) 2009-2010, Design Science, Inc. (<www.mathjax.org>), + 2009-2010, Design Science, Inc. () + 2009-2010, Design Science, Inc.MathJax_WinIE6-RegularMathJax_WinIE6Normal‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  +License: UNKNOWN + FIXME + +Files: HelpSource/MathJax/fonts/HTML-CSS/TeX/otf/MathJax_Main-Regular.otf +Copyright: FFTMXì ºGDEFPµ\ OS/2E¿Z5 `cmapnо>àJhead÷“ ¼6hhea xMô$hmtxÁ€%µ|Œmaxp#Pname#`€ +License: UNKNOWN + FIXME + +Files: external_libraries/TLSF-2.4.6/GPL.txt +Copyright: 1989, 1991 Free Software Foundation, Inc + HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR + HOLDERS AND/OR OTHER PARTIES + holder saying it may be distributed + holder who places the Program under this License + law: + the software, and +License: UNKNOWN + FIXME + +Files: HelpSource/Reference/Synth-Definition-File-Format.schelp +Copyright: 2002, James McCartney - converted to new help system 2010, by Jonatan Liljedahl +License: UNKNOWN + FIXME + +Files: cmake_modules/MacOSXBundleInfo.plist.in +Copyright: 2001-2012, James McCartney et al. +License: UNKNOWN + FIXME + +Files: editors/scel/el/sclang-minor-mode.el +Copyright: 2007, Marije Baalman - nescivi +License: UNKNOWN + FIXME + +Files: cmake_modules/DeployQt4.cmake +Copyright: 2011, Mike McQuaid +License: UNKNOWN + FIXME + +Files: external_libraries/threadpool/README +Copyright: 2005-2007, Philipp Henkel +License: UNKNOWN + FIXME + +Files: Help/Extending and Customizing SC/attachments/Writing_Unit_Generators/Pasted Graphic 11.png +Copyright: P”µææùÁ`Á[aåÁñ`­`8žaY g5ÀlA_¿}tœ¸L“3%"€µk×:/§V*•k×®u>àîŒ\ý}æÀ€ôÔ0çXð³u† +License: UNKNOWN + FIXME + +Files: external_libraries/oscpack/README +Copyright: 2004-2005, Ross Bencina +License: UNKNOWN + FIXME + +Files: common/strtod.c +Copyright: 1988-1993, The Regents of the University of California + 1994, Sun Microsystems, Inc +License: UNKNOWN + FIXME + +Files: external_libraries/TLSF-2.4.6/README +Copyright: UPVLC, OCERA Consortium +License: UNKNOWN + FIXME + +Files: Help/Libraries/JITLib/tutorials/jitlib_networking.html +Copyright: like in (1), just take care that the shared busses are taking number space

+License: UNKNOWN + FIXME + +Files: HelpSource/Tutorials/JITLib/jitlib_networking.schelp +Copyright: like in link::#1)_using_proxyspace_with_more_than_one_client,_with_separate_bus_spaces#(1)::, just take care that the shared busses are taking number space already, so the easiest is to increase the numberOfParticipants by one, so no overrun happens +License: UNKNOWN + FIXME + +Files: Help/Extending and Customizing SC/attachments/Writing_Unit_Generators/Pasted Graphic 13.png +Copyright: ,tJèT¬~ ¡Ñû ” ¥´”þ¸:eÍtsaÖ­þ<•ëFq6ߖq}Vçù€ë±ÛÒuè¶&6zæøƒ +License: UNKNOWN + FIXME + +Files: Help/Extending and Customizing SC/attachments/Writing_Unit_Generators/Pasted Graphic 1.png +Copyright: …þÂ.‹¶Þ>QÏCF~Ø×šÑ®µqâ5É#wG„8†.HѬ° ÓӝF•k\¦<ê•Qð¹ûç°YèÌMDà›øªO;aÑ9C>wæAdS<鬒*õnЀƒ:{úö훔”¤Pè%«Äb±‘§¦S§N÷ïߏˆˆèСƒ§§'MÓÿþûï¾}û˜@Æÿþû¯e˖ÕU®Ö(2 ¨â¼ + ˜üÃ"ê|œ¹¿ô< –&¤äíIœ˜CµhT¨üh#6NTR½;Z‹Æ¶R®­ж¥²µE¯¿S:wåÖ¹nAhòªöDÂÜ4ZÌK3n*°tþ2lZýô\IÃ%Ñsl¾tôÝPƒ×wãF½€v_õÊýɅ1±Þhâ­H\¼ìi½¾äñ‰4 0ԋ…€µì¡Ë«˜°«4rÞCºiÚz³ívD€±Î°¦@ét+Ñ8¤¯²réÇBø(€Qп~ªÖvŽéÂѤäM¿0€«ººº}} ³„)YV­ JÍ­ìôRJHtdàønJ¸q£^Ëh¼\c6 ÕřËB6">ý¡°1wþÈþºV69,lÜpU·s Ìór²4>2˜ª8¡ïTmLM×!yûGµfsé¡Ì$½8v£ +License: UNKNOWN + FIXME + +Files: Help/Extending and Customizing SC/attachments/Writing_Unit_Generators/Pasted Graphic 15.png +Copyright: ˆ„Sj…[—&±X, FnPÛµôôŒ <=Џýtéàªð*9bC¦}ik8‘˜YG½)1ý­ßîd²ï˜¿éÏ>ßú5¿"òI%£ñwò–ðr~‰¯ˆ¯üf¾.ð7ý¯Ë•̶zøé͎^¿±~Î „Dk—ݝ0óÁ¹ + ê®Ñô-#i f£hZË÷Óè䦍zŒš +License: UNKNOWN + FIXME + +Files: editors/sced/data/sced.gedit-plugin +Copyright: 2006-2008, Артём Попов +License: UNKNOWN + FIXME + +Files: sounds/a11wlk01-44_1.aiff +Copyright: Ýd!<‰Ä­ ¿4›ýLr[ý\…|;°ÈxÇÏ ´ ™’ ¯ý¢ú^ö×óï5ëXç¤ä4áÞ2ۇØöÖlÓÞÑRÎØÌˆÊzÈÂÇjÆpÅÈÅaÅ%ÄþĨħÄhÄ#ÃçÃËÃäÄ=ÄØÅ¨ÆšÇ™È™ÉÊ¯ËäÍKÎëпҺÔÎÖöÙ5ۙÞ2áä:çªëXï3ó.÷;ûOÿ^bY D- %;O#B&ó*A- /•1·3¥5u718Ï:8;Q<¯*¯h° +License: UNKNOWN + FIXME + +Files: Help/Extending and Customizing SC/attachments/Writing_Unit_Generators/Pasted Graphic 14.png +Copyright: ú»60F9B‰¸ˆåx|>ÀÆò=|^oAaÁÕW_ܘiªÆãÜãõ>÷ÜüØØØùóŸÓ4-lٗ›ëõz5cÓ é)$MQ”.¿B!±Oyy9c\ +License: UNKNOWN + FIXME + +Files: Help/Extending and Customizing SC/attachments/Writing_Unit_Generators/Pasted Graphic 2.png +Copyright: úÛ;„8 ð÷_UÞJ ÈöÒüüºÎæyˆ ›áÌo(cXg…/%b×úìÊV€jmlÕzÔÀ³ýjb€Ö6 qŽÁ\áv[‡œ"år¹ÑÃ!Û´º@å`±“aOØ,;$†-œaÙÙ 3PJG>)*Mš'Ù鯕Xžµ!.úMÇExÇÅa³¿fy# Ð4y4¿´ñúÙýyˆ +License: UNKNOWN + FIXME + diff --git a/gbp.conf b/gbp.conf new file mode 100644 index 0000000..5474c60 --- /dev/null +++ b/gbp.conf @@ -0,0 +1,3 @@ +[DEFAULT] +pristine-tar = True +sign-tags = True diff --git a/libscsynth1.install b/libscsynth1.install new file mode 100644 index 0000000..7ee1fc6 --- /dev/null +++ b/libscsynth1.install @@ -0,0 +1 @@ +usr/lib/libscsynth.so.1* diff --git a/patches/ftbfs-gcc-4.9.patch b/patches/ftbfs-gcc-4.9.patch new file mode 100644 index 0000000..1b124f7 --- /dev/null +++ b/patches/ftbfs-gcc-4.9.patch @@ -0,0 +1,20 @@ +From: Felipe Sateler +Date: Fri, 6 Jun 2014 13:15:18 -0400 +Subject: Fix implementation of aligned_allocator::construct. + +Fixes a build failure with gcc >= 4.9, because it defines __cplusplus >= 201103L. + +A typo, apparently. This patch can be dropped in the next upstream release. +Index: supercollider/server/supernova/utilities/malloc_aligned.hpp +=================================================================== +--- supercollider.orig/server/supernova/utilities/malloc_aligned.hpp 2014-09-11 09:15:20.399357542 +0100 ++++ supercollider/server/supernova/utilities/malloc_aligned.hpp 2014-09-11 09:15:20.399357542 +0100 +@@ -243,7 +243,7 @@ + template< class U, class... Args > + void construct(U * p, Args&& ... args) + { +- ::new(p) T(std::forward(args)...); ++ ::new(p) U(std::forward(args)...); + } + #endif + diff --git a/patches/no-inline-ppc-ftbfs.patch b/patches/no-inline-ppc-ftbfs.patch new file mode 100644 index 0000000..b4cec9e --- /dev/null +++ b/patches/no-inline-ppc-ftbfs.patch @@ -0,0 +1,16 @@ +Author: Felipe Sateler +Description: Apparently there is some bug in gcc that makes it output too large sections +Avoiding inlining this function works around the issue +Index: supercollider/external_libraries/boost-lockfree/boost/atomic/detail/gcc-ppc.hpp +=================================================================== +--- supercollider.orig/external_libraries/boost-lockfree/boost/atomic/detail/gcc-ppc.hpp 2014-09-11 09:15:20.311357545 +0100 ++++ supercollider/external_libraries/boost-lockfree/boost/atomic/detail/gcc-ppc.hpp 2014-09-11 09:15:20.295357546 +0100 +@@ -247,7 +247,7 @@ + value_type & expected, + value_type desired, + memory_order success_order, +- memory_order failure_order) volatile ++ memory_order failure_order) volatile __attribute__((noinline)) + { + int success; + ppc_fence_before(success_order); diff --git a/patches/perf-counter-include.patch b/patches/perf-counter-include.patch new file mode 100644 index 0000000..090e385 --- /dev/null +++ b/patches/perf-counter-include.patch @@ -0,0 +1,18 @@ +Author: Dan Stowell +Description: ia64 and alpha include perf bits in other files +Index: supercollider/external_libraries/nova-simd/benchmarks/perf_counter.hpp +=================================================================== +--- supercollider.orig/external_libraries/nova-simd/benchmarks/perf_counter.hpp 2014-09-11 09:15:20.367357543 +0100 ++++ supercollider/external_libraries/nova-simd/benchmarks/perf_counter.hpp 2014-09-11 09:15:20.367357543 +0100 +@@ -54,6 +54,11 @@ + #endif + + ++#if defined(__ia64__) || defined(__alpha__) ++#include ++#endif ++ ++ + /* + * User-space ABI bits: + */ diff --git a/patches/series b/patches/series new file mode 100644 index 0000000..8d1c14a --- /dev/null +++ b/patches/series @@ -0,0 +1,5 @@ +no-inline-ppc-ftbfs.patch +perf-counter-include.patch +supernova-i686-march-flag.patch +system-lockfree.patch +ftbfs-gcc-4.9.patch diff --git a/patches/supernova-i686-march-flag.patch b/patches/supernova-i686-march-flag.patch new file mode 100644 index 0000000..15d544b --- /dev/null +++ b/patches/supernova-i686-march-flag.patch @@ -0,0 +1,15 @@ +Index: supercollider/server/supernova/CMakeLists.txt +=================================================================== +--- supercollider.orig/server/supernova/CMakeLists.txt 2014-09-11 09:15:20.379357543 +0100 ++++ supercollider/server/supernova/CMakeLists.txt 2014-09-11 09:15:30.000000000 +0100 +@@ -12,6 +12,10 @@ + endif() + endif() + ++if(${CMAKE_SYSTEM_PROCESSOR} MATCHES "i686") ++ set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -march=i686") ++endif() ++ + if(CMAKE_COMPILER_IS_GNUCXX) + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -ftemplate-depth-4096") + set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} -fomit-frame-pointer") diff --git a/patches/system-lockfree.patch b/patches/system-lockfree.patch new file mode 100644 index 0000000..d743df9 --- /dev/null +++ b/patches/system-lockfree.patch @@ -0,0 +1,88 @@ +Author: Felipe Sateler +Description: Boost 1.5* includes the lockfree lib, so use the system one +Lockfree requires the atomic library in some archs, so include it in the supernova target + +Index: supercollider/CMakeLists.txt +=================================================================== +--- supercollider.orig/CMakeLists.txt 2014-09-11 09:15:20.387357543 +0100 ++++ supercollider/CMakeLists.txt 2014-09-11 09:15:20.387357543 +0100 +@@ -235,7 +235,7 @@ + + if(SYSTEM_BOOST) + set(Boost_USE_MULTITHREADED ON) +- find_package( Boost 1.50.0 COMPONENTS thread system filesystem program_options regex test_exec_monitor ) ++ find_package( Boost 1.50.0 COMPONENTS thread system filesystem program_options regex test_exec_monitor atomic) + endif() + + if (Boost_FOUND) +Index: supercollider/lang/CMakeLists.txt +=================================================================== +--- supercollider.orig/lang/CMakeLists.txt 2014-09-11 09:15:20.387357543 +0100 ++++ supercollider/lang/CMakeLists.txt 2014-09-11 09:15:20.387357543 +0100 +@@ -6,7 +6,6 @@ + + ${YAMLCPP_INCLUDE_DIR} + +- ${CMAKE_SOURCE_DIR}/external_libraries/boost-lockfree + ${CMAKE_SOURCE_DIR}/external_libraries/threadpool + ${CMAKE_SOURCE_DIR}/external_libraries/TLSF-2.4.6/src + LangSource/Bison) +@@ -217,7 +216,7 @@ + endif() + + if (Boost_FOUND) +- target_link_libraries(libsclang ${Boost_THREAD_LIBRARY} ${Boost_SYSTEM_LIBRARY} ${Boost_REGEX_LIBRARY} ${Boost_FILESYSTEM_LIBRARY}) ++ target_link_libraries(libsclang ${Boost_THREAD_LIBRARY} ${Boost_SYSTEM_LIBRARY} ${Boost_REGEX_LIBRARY} ${Boost_FILESYSTEM_LIBRARY} ${Boost_ATOMIC_LIBRARY}) + endif() + + if (SCLANG_SERVER) +Index: supercollider/server/CMakeLists.txt +=================================================================== +--- supercollider.orig/server/CMakeLists.txt 2014-09-11 09:15:20.387357543 +0100 ++++ supercollider/server/CMakeLists.txt 2014-09-11 09:15:20.387357543 +0100 +@@ -4,7 +4,6 @@ + endif() + + include_directories(${CMAKE_SOURCE_DIR}/external_libraries +- ${CMAKE_SOURCE_DIR}/external_libraries/boost-lockfree + ${CMAKE_SOURCE_DIR}/external_libraries/nova-simd + ${CMAKE_SOURCE_DIR}/external_libraries/nova-tt + ) +Index: supercollider/server/supernova/CMakeLists.txt +=================================================================== +--- supercollider.orig/server/supernova/CMakeLists.txt 2014-09-11 09:15:20.387357543 +0100 ++++ supercollider/server/supernova/CMakeLists.txt 2014-09-11 09:15:20.387357543 +0100 +@@ -160,7 +160,7 @@ + target_link_libraries(libsupernova oscpack tlsf ${PTHREADS_LIBRARIES}) + + if (Boost_FOUND) +- target_link_libraries(libsupernova ${Boost_SYSTEM_LIBRARY} ${Boost_FILESYSTEM_LIBRARY} ${Boost_PROGRAM_OPTIONS_LIBRARY}) ++ target_link_libraries(libsupernova ${Boost_SYSTEM_LIBRARY} ${Boost_FILESYSTEM_LIBRARY} ${Boost_PROGRAM_OPTIONS_LIBRARY} ${Boost_ATOMIC_LIBRARY}) + else() + target_link_libraries(libsupernova boost_system boost_filesystem boost_program_options) + endif() +Index: supercollider/testsuite/supernova/CMakeLists.txt +=================================================================== +--- supercollider.orig/testsuite/supernova/CMakeLists.txt 2014-09-11 09:15:20.387357543 +0100 ++++ supercollider/testsuite/supernova/CMakeLists.txt 2014-09-11 09:15:20.387357543 +0100 +@@ -45,7 +45,6 @@ + ${CMAKE_SOURCE_DIR}/server/supernova + ${CMAKE_SOURCE_DIR}/external_libraries/boost + ${CMAKE_SOURCE_DIR}/external_libraries/boost_endian +- ${CMAKE_SOURCE_DIR}/external_libraries/boost-lockfree + ${CMAKE_SOURCE_DIR}/external_libraries/oscpack + ${CMAKE_SOURCE_DIR}/external_libraries/ + ${CMAKE_SOURCE_DIR}/external_libraries/nova-tt +Index: supercollider/server/scsynth/CMakeLists.txt +=================================================================== +--- supercollider.orig/server/scsynth/CMakeLists.txt 2014-09-11 09:15:20.387357543 +0100 ++++ supercollider/server/scsynth/CMakeLists.txt 2014-09-11 09:15:20.387357543 +0100 +@@ -207,7 +207,7 @@ + endif() + + if(CMAKE_SYSTEM_NAME MATCHES "Linux") +- target_link_libraries(libscsynth rt) ++ target_link_libraries(libscsynth rt ${Boost_THREAD_LIBRARY}) + endif() + + file(GLOB_RECURSE all_headers ../../*hpp) diff --git a/rules b/rules new file mode 100755 index 0000000..0903cfc --- /dev/null +++ b/rules @@ -0,0 +1,77 @@ +#! /usr/bin/make -f + +include /usr/share/cdbs/1/rules/upstream-tarball.mk +include /usr/share/cdbs/1/rules/utils.mk +include /usr/share/cdbs/1/rules/debhelper.mk +include /usr/share/cdbs/1/class/cmake.mk + +DEB_DH_INSTALL_SOURCEDIR=debian/tmp + +# # Add here any variable or target overrides you need. + +DEB_INSTALL_DOCS_supercollider-language = README_LINUX.txt README.txt +DEB_INSTALL_DOCS_supercollider-server = README_LINUX.txt README.txt +DEB_INSTALL_DOCS_supercollider-emacs = editors/scel/README +DEB_INSTALL_DOCS_supercollider-vim = editors/scvim/README editors/scvim/SCVim.scd +DEB_INSTALL_DOCS_supercollider-gedit = editors/sced/README + +DEB_INSTALL_MANPAGES_supercollider-server = debian/scsynth.1 +DEB_INSTALL_MANPAGES_supercollider-supernova = debian/supernova.1 +DEB_INSTALL_MANPAGES_supercollider-language = debian/sclang.1 +DEB_INSTALL_MANPAGES_supercollider-vim = debian/scvim.1 debian/sclangpipe_app.1 +DEB_INSTALL_MANPAGES_supercollider-ide = debian/scide.1 + +# supernova (alternative to scsynth) uses fancy simd things which fail to build on sparc/powerpc +ifeq ("$(DEB_HOST_ARCH_CPU)","sparc") + DEB_BUILD_SUPERNOVA=off +else + ifeq ("$(DEB_HOST_ARCH_CPU)","powerpc") + DEB_BUILD_SUPERNOVA=off + else + DEB_BUILD_SUPERNOVA=on + endif +endif + +DEB_CMAKE_EXTRA_FLAGS = \ + -DDSO_VISIBILITY=on \ + -DSC_EL_BYTECOMPILE=off \ + -DSYSTEM_BOOST=on \ + -DENABLE_TESTSUITE=off \ + -DLIBSCSYNTH=on \ + -DSYSTEM_YAMLCPP=off \ + -DSUPERNOVA="$(DEB_BUILD_SUPERNOVA)" + +# Exclude external libs from the source package if unused on linux or using system-supplied +DEB_UPSTREAM_REPACKAGE_EXCLUDES = \ + external_libraries/boost/ \ + external_libraries/curl/ \ + external_libraries/libsndfile/ \ + external_libraries/sndfile.hh \ + external_libraries/simplejson-*/ \ + external_libraries/icu \ + HelpSource/MathJax/ \ + HelpSource/prettify.js +DEB_UPSTREAM_URL = http://prdownloads.sourceforge.net/supercollider +DEB_UPSTREAM_TARBALL_BASENAME_MANGLE = s/supercollider(.*)/SuperCollider$$1-Source-linux/ +DEB_UPSTREAM_TARBALL_EXTENSION = tar.bz2 +DEB_UPSTREAM_TARBALL_SRCDIR = SuperCollider-Source +DEB_UPSTREAM_TARBALL_MD5 = 14d6063933230c74e42f5923a811e7c6 +DEB_UPSTREAM_REPACKAGE_TAG = repack-2 + +binary-fixup/supercollider-common:: + dh_link -psupercollider-common + +install/supercollider-common:: + install -m 644 debian/README.extensions \ + $(DEB_DH_INSTALL_SOURCEDIR)/usr/share/SuperCollider/Extensions/README +# this needs to be an absolute not relative softlink, +# because supercollider copies it around. hence not using dh_link for this. + ln -sf /usr/share/javascript/prettify/prettify.js $(DEB_DH_INSTALL_SOURCEDIR)/usr/share/SuperCollider/HelpSource/prettify.js + +install/supercollider-emacs:: + install -d $(DEB_DH_INSTALL_SOURCEDIR)/usr/share/applications + install -m 644 debian/scel.desktop $(DEB_DH_INSTALL_SOURCEDIR)/usr/share/applications + +install/supercollider-vim:: + install -d $(DEB_DH_INSTALL_SOURCEDIR)/usr/share/applications + install -m 644 debian/scvim.desktop $(DEB_DH_INSTALL_SOURCEDIR)/usr/share/applications diff --git a/scel.desktop b/scel.desktop new file mode 100644 index 0000000..5ab3460 --- /dev/null +++ b/scel.desktop @@ -0,0 +1,10 @@ +[Desktop Entry] +Version=1.0 +Name=SuperCollider Emacs (scel) +Comment=Emacs environment for SuperCollider +Exec=emacs -sclang +Terminal=false +Type=Application +Icon=supercollider +#cats as in menu-spec-1.0: +Categories=Audio;AudioVideo;Music; diff --git a/scide.1 b/scide.1 new file mode 100644 index 0000000..8d4f4ee --- /dev/null +++ b/scide.1 @@ -0,0 +1,42 @@ +.\" Hey, EMACS: -*- nroff -*- +.\" First parameter, NAME, should be all caps +.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection +.\" other parameters are allowed: see man(7), man(1) +.TH SCIDE 1 "Dec 21, 2012" +.\" Please adjust this date whenever revising the manpage. +.\" +.\" Some roff macros, for reference: +.\" .nh disable hyphenation +.\" .hy enable hyphenation +.\" .ad l left justify +.\" .ad b justify to both left and right margins +.\" .nf disable filling +.\" .fi enable filling +.\" .br insert line break +.\" .sp insert n+1 empty lines +.\" for manpage-specific macros, see man(7) +.SH NAME +scide \- SuperCollider IDE +.SH SYNOPSIS +.B scide +.SH DESCRIPTION +\fBSuperCollider\fP is a real time audio synthesis programming +language. +This manual page documents briefly the +.B scide +command, the authoring environment for SuperCollider code. + +SuperCollider has documentation in the HTML format available in the +\fIsupercollider\-doc\fP package. +.PP +.\" TeX users may be more comfortable with the \fB\fP and +.\" \fI\fP escape sequences to invode bold face and italics, +.\" respectively. +.SH SEE ALSO +.BR sclang (1), +.br +.I /usr/share/doc/supercollider\-server +.br +.SH AUTHOR +This manual page was written by Dan Stowell +for the Debian project (but may be used by others). diff --git a/sclang.1 b/sclang.1 new file mode 100644 index 0000000..d98fd6f --- /dev/null +++ b/sclang.1 @@ -0,0 +1,73 @@ +.\" Hey, EMACS: -*- nroff -*- +.\" First parameter, NAME, should be all caps +.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection +.\" other parameters are allowed: see man(7), man(1) +.TH SCLANG 1 "Nov 18, 2008" +.\" Please adjust this date whenever revising the manpage. +.\" +.\" Some roff macros, for reference: +.\" .nh disable hyphenation +.\" .hy enable hyphenation +.\" .ad l left justify +.\" .ad b justify to both left and right margins +.\" .nf disable filling +.\" .fi enable filling +.\" .br insert line break +.\" .sp insert n+1 empty lines +.\" for manpage-specific macros, see man(7) +.SH NAME +sclang \- a real time audio synthesis programming language +.SH SYNOPSIS +.B sclang +.RI [ options ] +.SH DESCRIPTION +\fBSuperCollider\fP is a real time audio synthesis programming +language. \fBsclang\fP is a client for the \fBscsynth\fP(1) +server. It connects to scsynth, interprets your sclang commands, +and sends OSC message to scsynth. + +SuperCollider has documentation in the HTML format available in the +\fIsupercollider\-doc\fP package. +.\" TeX users may be more comfortable with the \fB\fP and +.\" \fI\fP escape sequences to invode bold face and italics, +.\" respectively. +.SH OPTIONS +A summary of options is included below. +.TP +.B \-d +Set runtime directory +.TP +.B \-D +Enter daemon mode (no input) +.TP +.B \-g [ k | m ] +Set heap growth (default 256k) +.TP +.B \-h +Show summary of options +.TP +.B \-l +Set library configuration file +.TP +.B \-m [ k | m ] +Set initial heap size (default 2m) +.TP +.B \-r +Call Main.run on startup +.TP +.B \-s +Call Main.stop on shutdown +.TP +.B \-u +Set UDP listening port (default 57120) + +.SH SEE ALSO +.BR scsynth (1) +.br +.I /usr/share/doc/supercollider +.br +.SH AUTHOR +This manual page was written by Paul Brossier +for the Debian project (but may be used by others). + +Modified and updated by Artem Popov . diff --git a/sclangpipe_app.1 b/sclangpipe_app.1 new file mode 100644 index 0000000..94d1c20 --- /dev/null +++ b/sclangpipe_app.1 @@ -0,0 +1,42 @@ +.\" Hey, EMACS: -*- nroff -*- +.\" First parameter, NAME, should be all caps +.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection +.\" other parameters are allowed: see man(7), man(1) +.TH SCVIM 1 "Nov 18, 2008" +.\" Please adjust this date whenever revising the manpage. +.\" +.\" Some roff macros, for reference: +.\" .nh disable hyphenation +.\" .hy enable hyphenation +.\" .ad l left justify +.\" .ad b justify to both left and right margins +.\" .nf disable filling +.\" .fi enable filling +.\" .br insert line break +.\" .sp insert n+1 empty lines +.\" for manpage-specific macros, see man(7) +.SH NAME +sclangpipe_app \- a wrapper to invoke sclang for scvim +.SH SYNOPSIS +.B sclangpipe_app +.RI [ options ] +.SH DESCRIPTION +This manual page documents briefly the +.B sclangpipe_app +command. +.PP +.\" TeX users may be more comfortable with the \fB\fP and +.\" \fI\fP escape sequences to invode bold face and italics, +.\" respectively. +\fBsclangpipe_app\fP is a script that invokes the supercollider language (sclang) +executable for use with scvim. Users do NOT normally need to invoke it, since it +is called by the main \fBscvim\fP plugin when invoked by vim. +.SH SEE ALSO +.BR scvim (1) +.br +.I /usr/share/doc/supercollider\-vim/README.scvim +.SH AUTHOR +scvim was written by Alex Norman . +.PP +This manual page was written by Dan Stowell , +for the Ubuntu project (but may be used by others). diff --git a/scsynth.1 b/scsynth.1 new file mode 100644 index 0000000..b9d9290 --- /dev/null +++ b/scsynth.1 @@ -0,0 +1,135 @@ +.\" Hey, EMACS: -*- nroff -*- +.\" First parameter, NAME, should be all caps +.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection +.\" other parameters are allowed: see man(7), man(1) +.TH SCSYNTH 1 "Nov 18, 2008" +.\" Please adjust this date whenever revising the manpage. +.\" +.\" Some roff macros, for reference: +.\" .nh disable hyphenation +.\" .hy enable hyphenation +.\" .ad l left justify +.\" .ad b justify to both left and right margins +.\" .nf disable filling +.\" .fi enable filling +.\" .br insert line break +.\" .sp insert n+1 empty lines +.\" for manpage-specific macros, see man(7) +.SH NAME +scsynth \- SuperCollider audio synthesis server +.SH SYNOPSIS +.B scsynth +.RI [ options ] +.SH DESCRIPTION +\fBSuperCollider\fP is a real time audio synthesis programming +language. +This manual page documents briefly the +.B scsynth +command, the audio server of SuperCollider. + +SuperCollider has documentation in the HTML format available in the +\fIsupercollider\-doc\fP package. +.PP +.\" TeX users may be more comfortable with the \fB\fP and +.\" \fI\fP escape sequences to invode bold face and italics, +.\" respectively. +.SH OPTIONS +A summary of options is included below. There \fBmust\fP be a \-u and/or a \-t +option, or \-N for nonrealtime. +.TP +.B \-u +a port number (0\(hy65535) +.TP +.B \-t +a port number (0\(hy65535) +.TP +.B \-c +default 4096 +.TP +.B \-a +default 128 +.TP +.B \-i +default 2 +.TP +.B \-o +default 2 +.TP +.B \-z +default 64 +.TP +.B \-Z +default 0 +.TP +.B \-S +default 0 +.TP +.B \-b +default 1024 +.TP +.B \-n +default 1024 +.TP +.B \-d +default 1024 +.TP +.B \-m +default 8192 +.TP +.B \-w +default 64 +.TP +.B \-r +default 64 +.TP +.B \-D +default 1 +.TP +.B \-R +default 1 +.TP +.B \-l +default 64 +.br +maximum number of named return addresses stored +.br +also maximum number of tcp connections accepted +.TP +.B \-p +When using TCP, the session password must be the first command sent. +The default is no password. UDP ports never require passwords, so +for security use TCP. +.TP +.B \-N +.TP +.B \-L +enable memory locking +.TP +.B \-H +.TP +.B \-v +0 is normal behaviour +.br +\-1 suppresses informational messages +.br +\-2 suppresses informational and many error messages +.TP +.B \-U +a colon\-separated list of paths +.br +If \-U is specified, the standard paths are NOT searched for plugins. +.TP +.B \-P +If specified, prevents file\-accessing OSC commands from accessing files outside . +.SH TO QUIT +To quit, send a 'quit' command via UDP or TCP, or press ctrl\-C. +.SH SEE ALSO +.BR sclang (1), +.br +.I /usr/share/doc/supercollider\-server +.br +.SH AUTHOR +This manual page was written by Paul Brossier +for the Debian project (but may be used by others). + +Modified and updated by Artem Popov . diff --git a/scvim.1 b/scvim.1 new file mode 100644 index 0000000..4e30c87 --- /dev/null +++ b/scvim.1 @@ -0,0 +1,53 @@ +.\" Hey, EMACS: -*- nroff -*- +.\" First parameter, NAME, should be all caps +.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection +.\" other parameters are allowed: see man(7), man(1) +.TH SCVIM 1 "Nov 18, 2008" +.\" Please adjust this date whenever revising the manpage. +.\" +.\" Some roff macros, for reference: +.\" .nh disable hyphenation +.\" .hy enable hyphenation +.\" .ad l left justify +.\" .ad b justify to both left and right margins +.\" .nf disable filling +.\" .fi enable filling +.\" .br insert line break +.\" .sp insert n+1 empty lines +.\" for manpage-specific macros, see man(7) +.SH NAME +scvim \- run Vim with SuperCollider mode +.SH SYNOPSIS +.B scvim +.RI [ options ] +.SH DESCRIPTION +This manual page documents briefly the +.B scvim +command. +.PP +.\" TeX users may be more comfortable with the \fB\fP and +.\" \fI\fP escape sequences to invode bold face and italics, +.\" respectively. +\fBscvim\fP is a script that runs Vim text editor with SuperCollider mode. +It activates the SuperCollider syntax highlighting and starts the \fBsclang\fP +interpreter within Vim. +.SH OPTIONS +A summary of options is included below. +.TP +.B \-g \-\-graphical +Use gvim (graphical vim). +.TP +.B \-r \-\-rcfile rcfile +Use the file indicated as the scvim configuration file. +.TP +.B \-h \-\-help +Show summary of options. +.SH SEE ALSO +.BR sclang (1) +.br +.I /usr/share/doc/supercollider\-vim/README.scvim +.SH AUTHOR +scvim was written by Alex Norman . +.PP +This manual page was written by Artem Popov , +for the Ubuntu project (but may be used by others). diff --git a/scvim.desktop b/scvim.desktop new file mode 100644 index 0000000..3009c8c --- /dev/null +++ b/scvim.desktop @@ -0,0 +1,10 @@ +[Desktop Entry] +Version=1.0 +Name=SuperCollider Vim +Comment=Vim environment for SuperCollider +Exec=scvim +Terminal=true +Type=Application +Icon=supercollider +#cats as in menu-spec-1.0: +Categories=Audio;AudioVideo;Music; diff --git a/scvim_make_help.1 b/scvim_make_help.1 new file mode 100644 index 0000000..a6d5397 --- /dev/null +++ b/scvim_make_help.1 @@ -0,0 +1,61 @@ +.\" Hey, EMACS: -*- nroff -*- +.\" First parameter, NAME, should be all caps +.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection +.\" other parameters are allowed: see man(7), man(1) +.TH SCVIM 1 "Nov 18, 2008" +.\" Please adjust this date whenever revising the manpage. +.\" +.\" Some roff macros, for reference: +.\" .nh disable hyphenation +.\" .hy enable hyphenation +.\" .ad l left justify +.\" .ad b justify to both left and right margins +.\" .nf disable filling +.\" .fi enable filling +.\" .br insert line break +.\" .sp insert n+1 empty lines +.\" for manpage-specific macros, see man(7) +.SH NAME +scvim_make_help \- strip SuperCollider HTML help to text, for use with scvim +.SH SYNOPSIS +.B scvim_make_help +.RI [ options ] +.SH DESCRIPTION +This manual page documents briefly the +.B scvim_make_help +command. +.PP +.\" TeX users may be more comfortable with the \fB\fP and +.\" \fI\fP escape sequences to invode bold face and italics, +.\" respectively. +\fBscvim_make_help\fP is a script that strips SuperCollider HTML help to text +format, for use with scvim. Users do NOT normally need to invoke it, since it +is called by the main \fBscvim\fP script upon first run. +The stripped files are placed in ~/.scvim by default, but this can be overridden +by specifying SCVIM_CACHE_DIR environment variable. +.SH OPTIONS +A summary of options is included below. +.TP +.B \-s \-\-source\-dir directory +Specify the soruce directory to search for HTML help files. +.TP +.B \-d \-\-dest\-dir directory +The Destination Directory for the processed Help Files. +.TP +.B \-c \-\-clean +Clean the Destination Directory before building the helpfiles. +.TP +.B \-f \-\-force +Do not prompt to see if the user is sure about deleting files. +.TP +.B \-h \-\-help +Show summary of options. +.SH SEE ALSO +.BR scvim (1) +.br +.I /usr/share/doc/supercollider\-vim/README.scvim +.SH AUTHOR +scvim was written by Alex Norman . +.PP +This manual page was written by Dan Stowell , +for the Ubuntu project (but may be used by others). diff --git a/source/format b/source/format new file mode 100644 index 0000000..163aaf8 --- /dev/null +++ b/source/format @@ -0,0 +1 @@ +3.0 (quilt) diff --git a/supercollider-common.install b/supercollider-common.install new file mode 100644 index 0000000..aa4aedb --- /dev/null +++ b/supercollider-common.install @@ -0,0 +1,6 @@ +usr/share/SuperCollider/SCClassLibrary +usr/share/pixmaps/* +usr/share/SuperCollider/Extensions/README +usr/share/SuperCollider/HelpSource +usr/share/SuperCollider/sounds + diff --git a/supercollider-common.links b/supercollider-common.links new file mode 100644 index 0000000..abe91ec --- /dev/null +++ b/supercollider-common.links @@ -0,0 +1 @@ +usr/share/javascript/mathjax usr/share/SuperCollider/HelpSource/MathJax diff --git a/supercollider-dev.install b/supercollider-dev.install new file mode 100644 index 0000000..b4c4a99 --- /dev/null +++ b/supercollider-dev.install @@ -0,0 +1,5 @@ +usr/include/SuperCollider/common +usr/include/SuperCollider/server +usr/include/SuperCollider/plugin_interface +usr/include/SuperCollider/SCVersion.txt +usr/lib/libscsynth.so diff --git a/supercollider-doc.install b/supercollider-doc.install new file mode 100644 index 0000000..b2080ef --- /dev/null +++ b/supercollider-doc.install @@ -0,0 +1 @@ +usr/share/SuperCollider/Help diff --git a/supercollider-emacs.emacsen-compat b/supercollider-emacs.emacsen-compat new file mode 100644 index 0000000..573541a --- /dev/null +++ b/supercollider-emacs.emacsen-compat @@ -0,0 +1 @@ +0 diff --git a/supercollider-emacs.emacsen-install b/supercollider-emacs.emacsen-install new file mode 100644 index 0000000..279533b --- /dev/null +++ b/supercollider-emacs.emacsen-install @@ -0,0 +1,45 @@ +#! /bin/sh -e +# /usr/lib/emacsen-common/packages/install/supercollider + +# Written by Jim Van Zandt , borrowing heavily +# from the install scripts for gettext by Santiago Vila +# and octave by Dirk Eddelbuettel . + +FLAVOR=$1 +PACKAGE=SuperCollider + +if [ ${FLAVOR} = emacs ]; then exit 0; fi + +echo install/${PACKAGE}: Handling install for emacsen flavor ${FLAVOR} + +#FLAVORTEST=`echo $FLAVOR | cut -c-6` +#if [ ${FLAVORTEST} = xemacs ] ; then +# SITEFLAG="-no-site-file" +#else +# SITEFLAG="--no-site-file" +#fi +FLAGS="${SITEFLAG} -q -batch -l path.el -f batch-byte-compile" + +ELDIR=/usr/share/emacs/site-lisp/${PACKAGE} +ELCDIR=/usr/share/${FLAVOR}/site-lisp/${PACKAGE} + +# Install-info-altdir does not actually exist. +# Maybe somebody will write it. +if test -x /usr/sbin/install-info-altdir; then + echo install/${PACKAGE}: install Info links for ${FLAVOR} + install-info-altdir --quiet --section "" "" --dirname=${FLAVOR} /usr/share/info/${PACKAGE}.info.gz +fi + +install -m 755 -d ${ELCDIR} +cd ${ELDIR} +FILES=`echo *.el` +cp ${FILES} ${ELCDIR} +cd ${ELCDIR} + +cat << EOF > path.el +(setq load-path (cons "." load-path) byte-compile-warnings nil) +EOF +${FLAVOR} ${FLAGS} ${FILES} +rm -f *.el path.el + +exit 0 diff --git a/supercollider-emacs.emacsen-remove b/supercollider-emacs.emacsen-remove new file mode 100644 index 0000000..a2935cf --- /dev/null +++ b/supercollider-emacs.emacsen-remove @@ -0,0 +1,15 @@ +#!/bin/sh -e +# /usr/lib/emacsen-common/packages/remove/supercollider + +FLAVOR=$1 +PACKAGE=SuperCollider + +if [ ${FLAVOR} != emacs ]; then + if test -x /usr/sbin/install-info-altdir; then + echo remove/${PACKAGE}: removing Info links for ${FLAVOR} + install-info-altdir --quiet --remove --dirname=${FLAVOR} /usr/share/info/supercollider.info.gz + fi + + echo remove/${PACKAGE}: purging byte-compiled files for ${FLAVOR} + rm -rf /usr/share/${FLAVOR}/site-lisp/${PACKAGE} +fi diff --git a/supercollider-emacs.emacsen-startup b/supercollider-emacs.emacsen-startup new file mode 100644 index 0000000..611b891 --- /dev/null +++ b/supercollider-emacs.emacsen-startup @@ -0,0 +1,25 @@ +;; -*-emacs-lisp-*- +;; +;; Emacs startup file, e.g. /etc/emacs/site-start.d/50supercollider.el +;; for the Debian supercollider package +;; +;; Originally contributed by Nils Naumann +;; Modified by Dirk Eddelbuettel +;; Adapted for dh-make by Jim Van Zandt + +;; The supercollider package follows the Debian/GNU Linux 'emacsen' policy and +;; byte-compiles its elisp files for each 'emacs flavor' (emacs19, +;; xemacs19, emacs20, xemacs20...). The compiled code is then +;; installed in a subdirectory of the respective site-lisp directory. +;; We have to add this to the load-path: +(let ((package-dir (concat "/usr/share/" + (symbol-name flavor) + "/site-lisp/SuperCollider"))) +;; If package-dir does not exist, the supercollider package must have +;; removed but not purged, and we should skip the setup. + (when (file-directory-p package-dir) + (setq load-path (cons package-dir load-path)) +;; (autoload 'supercollider-mode "supercollider-mode" +;; "Major mode for editing supercollider files." t) +;; (add-to-list 'auto-mode-alist '("\\.supercollider$" . supercollider-mode)) + (require 'sclang))) diff --git a/supercollider-emacs.install b/supercollider-emacs.install new file mode 100644 index 0000000..e526b56 --- /dev/null +++ b/supercollider-emacs.install @@ -0,0 +1,3 @@ +usr/share/emacs +usr/share/SuperCollider/Extensions/scide_scel +usr/share/applications/scel.desktop diff --git a/supercollider-emacs.lintian-overrides b/supercollider-emacs.lintian-overrides new file mode 100644 index 0000000..3d24d3b --- /dev/null +++ b/supercollider-emacs.lintian-overrides @@ -0,0 +1,3 @@ +supercollider-emacs: desktop-command-not-in-package usr/share/applications/scel.desktop emacs +supercollider-emacs: menu-command-not-in-package usr/share/menu/supercollider-emacs:4 usr/bin/emacs +supercollider-emacs: menu-icon-missing usr/share/pixmaps/supercollider.xpm diff --git a/supercollider-emacs.menu b/supercollider-emacs.menu new file mode 100644 index 0000000..4a58d88 --- /dev/null +++ b/supercollider-emacs.menu @@ -0,0 +1,5 @@ +?package(supercollider-emacs):needs="X11" section="Applications/Sound" \ + title="SuperCollider Emacs (scel)" command="/usr/bin/emacs -sclang" \ + longtitle="Emacs environment for SuperCollider" \ + icon="/usr/share/pixmaps/supercollider.xpm" + diff --git a/supercollider-gedit.install b/supercollider-gedit.install new file mode 100644 index 0000000..f755abd --- /dev/null +++ b/supercollider-gedit.install @@ -0,0 +1,3 @@ +usr/lib/gedit/plugins/ +usr/share/gtksourceview-3.0/language-specs/supercollider.lang +usr/share/mime/packages/supercollider.xml diff --git a/supercollider-ide.install b/supercollider-ide.install new file mode 100644 index 0000000..3c506f4 --- /dev/null +++ b/supercollider-ide.install @@ -0,0 +1,3 @@ +usr/bin/scide +usr/share/applications/SuperColliderIDE.desktop +usr/share/SuperCollider/translations/* diff --git a/supercollider-language.install b/supercollider-language.install new file mode 100644 index 0000000..5ecb16d --- /dev/null +++ b/supercollider-language.install @@ -0,0 +1 @@ +usr/bin/sclang diff --git a/supercollider-server.install b/supercollider-server.install new file mode 100644 index 0000000..78f6ce6 --- /dev/null +++ b/supercollider-server.install @@ -0,0 +1,26 @@ +usr/bin/scsynth +usr/lib/SuperCollider/plugins/BinaryOpUGens.so +usr/lib/SuperCollider/plugins/ChaosUGens.so +usr/lib/SuperCollider/plugins/DelayUGens.so +usr/lib/SuperCollider/plugins/DemandUGens.so +usr/lib/SuperCollider/plugins/DiskIO_UGens.so +usr/lib/SuperCollider/plugins/DynNoiseUGens.so +usr/lib/SuperCollider/plugins/FFT_UGens.so +usr/lib/SuperCollider/plugins/FilterUGens.so +usr/lib/SuperCollider/plugins/GendynUGens.so +usr/lib/SuperCollider/plugins/GrainUGens.so +usr/lib/SuperCollider/plugins/IOUGens.so +usr/lib/SuperCollider/plugins/LFUGens.so +usr/lib/SuperCollider/plugins/ML_UGens.so +usr/lib/SuperCollider/plugins/MulAddUGens.so +usr/lib/SuperCollider/plugins/NoiseUGens.so +usr/lib/SuperCollider/plugins/OscUGens.so +usr/lib/SuperCollider/plugins/PanUGens.so +usr/lib/SuperCollider/plugins/PhysicalModelingUGens.so +usr/lib/SuperCollider/plugins/PV_ThirdParty.so +usr/lib/SuperCollider/plugins/ReverbUGens.so +usr/lib/SuperCollider/plugins/TestUGens.so +usr/lib/SuperCollider/plugins/TriggerUGens.so +usr/lib/SuperCollider/plugins/UIUGens.so +usr/lib/SuperCollider/plugins/UnaryOpUGens.so +usr/lib/SuperCollider/plugins/UnpackFFTUGens.so diff --git a/supercollider-supernova.install b/supercollider-supernova.install new file mode 100644 index 0000000..68d1c61 --- /dev/null +++ b/supercollider-supernova.install @@ -0,0 +1,26 @@ +usr/bin/supernova +usr/lib/SuperCollider/plugins/BinaryOpUGens_supernova.so +usr/lib/SuperCollider/plugins/ChaosUGens_supernova.so +usr/lib/SuperCollider/plugins/DelayUGens_supernova.so +usr/lib/SuperCollider/plugins/DemandUGens_supernova.so +usr/lib/SuperCollider/plugins/DiskIO_UGens_supernova.so +usr/lib/SuperCollider/plugins/DynNoiseUGens_supernova.so +usr/lib/SuperCollider/plugins/FFT_UGens_supernova.so +usr/lib/SuperCollider/plugins/FilterUGens_supernova.so +usr/lib/SuperCollider/plugins/GendynUGens_supernova.so +usr/lib/SuperCollider/plugins/GrainUGens_supernova.so +usr/lib/SuperCollider/plugins/IOUGens_supernova.so +usr/lib/SuperCollider/plugins/LFUGens_supernova.so +usr/lib/SuperCollider/plugins/ML_UGens_supernova.so +usr/lib/SuperCollider/plugins/MulAddUGens_supernova.so +usr/lib/SuperCollider/plugins/NoiseUGens_supernova.so +usr/lib/SuperCollider/plugins/OscUGens_supernova.so +usr/lib/SuperCollider/plugins/PanUGens_supernova.so +usr/lib/SuperCollider/plugins/PhysicalModelingUGens_supernova.so +usr/lib/SuperCollider/plugins/PV_ThirdParty_supernova.so +usr/lib/SuperCollider/plugins/ReverbUGens_supernova.so +usr/lib/SuperCollider/plugins/TestUGens_supernova.so +usr/lib/SuperCollider/plugins/TriggerUGens_supernova.so +usr/lib/SuperCollider/plugins/UIUGens_supernova.so +usr/lib/SuperCollider/plugins/UnaryOpUGens_supernova.so +usr/lib/SuperCollider/plugins/UnpackFFTUGens_supernova.so diff --git a/supercollider-vim.README.Debian b/supercollider-vim.README.Debian new file mode 100644 index 0000000..d48939a --- /dev/null +++ b/supercollider-vim.README.Debian @@ -0,0 +1,12 @@ +Dear user, this package provides the vim addon supercollider-vim, but it is +not enabled by default. If you want to enable it for your user account just +execute: + +vim-addons install supercollider + +Similarly, to enable it for all users of this system just execute (as root): + +vim-addons -w install supercollider + +vim-addons is provided by the vim-addon-manager package, have a look at its +manpage for more information. diff --git a/supercollider-vim.install b/supercollider-vim.install new file mode 100644 index 0000000..9ffc908 --- /dev/null +++ b/supercollider-vim.install @@ -0,0 +1,7 @@ +usr/bin/sclangpipe_app +usr/bin/scvim +usr/share/vim +usr/share/scvim +usr/share/SuperCollider/Extensions/scvim +#debian/supercollider-vim.yaml usr/share/vim/registry/ +usr/share/applications/scvim.desktop diff --git a/supercollider-vim.lintian-overrides b/supercollider-vim.lintian-overrides new file mode 100644 index 0000000..6798d22 --- /dev/null +++ b/supercollider-vim.lintian-overrides @@ -0,0 +1 @@ +supercollider-vim: menu-icon-missing usr/share/pixmaps/supercollider.xpm diff --git a/supercollider-vim.menu b/supercollider-vim.menu new file mode 100644 index 0000000..d93e4a9 --- /dev/null +++ b/supercollider-vim.menu @@ -0,0 +1,5 @@ +?package(supercollider-vim):needs="text" section="Applications/Sound" \ + title="SuperCollider Vim" command="/usr/bin/scvim" \ + longtitle="Vim environment for SuperCollider" \ + icon="/usr/share/pixmaps/supercollider.xpm" + diff --git a/supercollider-vim.yaml b/supercollider-vim.yaml new file mode 100644 index 0000000..4aa2a04 --- /dev/null +++ b/supercollider-vim.yaml @@ -0,0 +1,10 @@ +addon: supercollider +description: "SuperCollider mode for Vim" +disabledby: "let loaded_supercollider = 1" +files: + - ftplugin/supercollider.vim + - indent/sc_indent.vim + - syntax/supercollider.vim + - syntax/supercollider_lang.vim + - syntax/supercollider_objects.vim + - syntax/supercollider_operators.vim diff --git a/supernova.1 b/supernova.1 new file mode 100644 index 0000000..de73604 --- /dev/null +++ b/supernova.1 @@ -0,0 +1,135 @@ +.\" Hey, EMACS: -*- nroff -*- +.\" First parameter, NAME, should be all caps +.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection +.\" other parameters are allowed: see man(7), man(1) +.TH SUPERNOVA 1 "Nov 18, 2008" +.\" Please adjust this date whenever revising the manpage. +.\" +.\" Some roff macros, for reference: +.\" .nh disable hyphenation +.\" .hy enable hyphenation +.\" .ad l left justify +.\" .ad b justify to both left and right margins +.\" .nf disable filling +.\" .fi enable filling +.\" .br insert line break +.\" .sp insert n+1 empty lines +.\" for manpage-specific macros, see man(7) +.SH NAME +supernova \- SuperCollider audio synthesis server +.SH SYNOPSIS +.B supernova +.RI [ options ] +.SH DESCRIPTION +\fBSuperCollider\fP is a real time audio synthesis programming +language. +This manual page documents briefly the +.B supernova +command, the audio server of SuperCollider. + +SuperCollider has documentation in the HTML format available in the +\fIsupercollider\-doc\fP package. +.PP +.\" TeX users may be more comfortable with the \fB\fP and +.\" \fI\fP escape sequences to invode bold face and italics, +.\" respectively. +.SH OPTIONS +A summary of options is included below. There \fBmust\fP be a \-u and/or a \-t +option, or \-N for nonrealtime. +.TP +.B \-u +a port number (0\(hy65535) +.TP +.B \-t +a port number (0\(hy65535) +.TP +.B \-c +default 4096 +.TP +.B \-a +default 128 +.TP +.B \-i +default 2 +.TP +.B \-o +default 2 +.TP +.B \-z +default 64 +.TP +.B \-Z +default 0 +.TP +.B \-S +default 0 +.TP +.B \-b +default 1024 +.TP +.B \-n +default 1024 +.TP +.B \-d +default 1024 +.TP +.B \-m +default 8192 +.TP +.B \-w +default 64 +.TP +.B \-r +default 64 +.TP +.B \-D +default 1 +.TP +.B \-R +default 1 +.TP +.B \-l +default 64 +.br +maximum number of named return addresses stored +.br +also maximum number of tcp connections accepted +.TP +.B \-p +When using TCP, the session password must be the first command sent. +The default is no password. UDP ports never require passwords, so +for security use TCP. +.TP +.B \-N +.TP +.B \-L +enable memory locking +.TP +.B \-H +.TP +.B \-v +0 is normal behaviour +.br +\-1 suppresses informational messages +.br +\-2 suppresses informational and many error messages +.TP +.B \-U +a colon\-separated list of paths +.br +If \-U is specified, the standard paths are NOT searched for plugins. +.TP +.B \-P +If specified, prevents file\-accessing OSC commands from accessing files outside . +.SH TO QUIT +To quit, send a 'quit' command via UDP or TCP, or press ctrl\-C. +.SH SEE ALSO +.BR sclang (1), +.br +.I /usr/share/doc/supercollider\-server +.br +.SH AUTHOR +This manual page was written by Paul Brossier +for the Debian project (but may be used by others). + +Modified and updated by Artem Popov . diff --git a/watch b/watch new file mode 100644 index 0000000..795ca2a --- /dev/null +++ b/watch @@ -0,0 +1,4 @@ +version=3 + +opts=dversionmangle=s/~repack$//,uversionmangle=s/-?([a-zA-Z]+[0-9])/~$1/ \ + http://sf.net/supercollider/SuperCollider-(.*)\-Source-linux\.tar\.bz2 -- 2.30.2