7 changed files with 0 additions and 244 deletions
@ -1,28 +0,0 @@ |
|||||||
# --- SDE-COPYRIGHT-NOTE-BEGIN ---
|
|
||||||
# This copyright note is auto-generated by ./scripts/Create-CopyPatch.
|
|
||||||
#
|
|
||||||
# Filename: package/.../spiralsynthmodular/add_lib.patch
|
|
||||||
# Copyright (C) 2004 - 2006 The T2 SDE Project
|
|
||||||
# Copyright (C) 1998 - 2003 Clifford Wolf
|
|
||||||
#
|
|
||||||
# More information can be found in the files COPYING and README.
|
|
||||||
#
|
|
||||||
# This patch file is dual-licensed. It is available under the license the
|
|
||||||
# patched project is licensed under, as long as it is an OpenSource license
|
|
||||||
# as defined at http://www.opensource.org/ (e.g. BSD, X11) or 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.
|
|
||||||
# --- SDE-COPYRIGHT-NOTE-END ---
|
|
||||||
|
|
||||||
--- ./Makefile.in 2002-12-26 18:39:42.000000000 -0500
|
|
||||||
+++ ./Makefile.in 2002-04-29 17:55:47.000000000 -0500
|
|
||||||
@@ -16,7 +16,7 @@
|
|
||||||
INCPATH =
|
|
||||||
LINK = g++
|
|
||||||
LFLAGS =
|
|
||||||
-LIBS = @FLTK_LIBS@ -lm -ldl -lpng -lpthread
|
|
||||||
+LIBS = @FLTK_LIBS@ -lm -ldl -lpng -lpthread -lz
|
|
||||||
MOC = moc
|
|
||||||
UIC =
|
|
||||||
|
|
@ -1,55 +0,0 @@ |
|||||||
# --- SDE-COPYRIGHT-NOTE-BEGIN ---
|
|
||||||
# This copyright note is auto-generated by ./scripts/Create-CopyPatch.
|
|
||||||
#
|
|
||||||
# Filename: package/.../spiralsynthmodular/gcc41.patch
|
|
||||||
# Copyright (C) 2006 The T2 SDE Project
|
|
||||||
#
|
|
||||||
# More information can be found in the files COPYING and README.
|
|
||||||
#
|
|
||||||
# This patch file is dual-licensed. It is available under the license the
|
|
||||||
# patched project is licensed under, as long as it is an OpenSource license
|
|
||||||
# as defined at http://www.opensource.org/ (e.g. BSD, X11) or 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.
|
|
||||||
# --- SDE-COPYRIGHT-NOTE-END ---
|
|
||||||
|
|
||||||
diff -Nur SpiralSynthModular-0.1.1-orig/SpiralSound/Sample.h SpiralSynthModular-0.1.1/SpiralSound/Sample.h
|
|
||||||
--- SpiralSynthModular-0.1.1-orig/SpiralSound/Sample.h 2002-07-28 23:18:14.000000000 +0000
|
|
||||||
+++ SpiralSynthModular-0.1.1/SpiralSound/Sample.h 2006-04-01 20:54:24.247417750 +0000
|
|
||||||
@@ -67,7 +67,7 @@
|
|
||||||
void CropTo(int NewLength);
|
|
||||||
bool IsEmpty() const { return m_IsEmpty; }
|
|
||||||
|
|
||||||
- inline float &Sample::operator[](int i) const
|
|
||||||
+ inline float &operator[](int i) const
|
|
||||||
{
|
|
||||||
#ifdef DEBUG
|
|
||||||
assert(i>=0 && i<m_Length);
|
|
||||||
@@ -76,7 +76,7 @@
|
|
||||||
}
|
|
||||||
|
|
||||||
// Linear interpolated
|
|
||||||
- inline float Sample::operator[](float i) const
|
|
||||||
+ inline float operator[](float i) const
|
|
||||||
{
|
|
||||||
int ii=(int)i;
|
|
||||||
|
|
||||||
@@ -90,7 +90,7 @@
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
- inline void Sample::Set(int i, float v)
|
|
||||||
+ inline void Set(int i, float v)
|
|
||||||
{
|
|
||||||
m_IsEmpty=false;
|
|
||||||
#ifdef DEBUG
|
|
||||||
@@ -99,7 +99,7 @@
|
|
||||||
m_Data[i]=v;
|
|
||||||
}
|
|
||||||
|
|
||||||
- inline Sample &Sample::operator=(const Sample &rhs)
|
|
||||||
+ inline Sample &operator=(const Sample &rhs)
|
|
||||||
{
|
|
||||||
Allocate(rhs.GetLength());
|
|
||||||
memcpy(m_Data,rhs.GetBuffer(),GetLengthInBytes());
|
|
@ -1,39 +0,0 @@ |
|||||||
# --- SDE-COPYRIGHT-NOTE-BEGIN ---
|
|
||||||
# This copyright note is auto-generated by ./scripts/Create-CopyPatch.
|
|
||||||
#
|
|
||||||
# Filename: package/.../spiralsynthmodular/nodef_val.patch
|
|
||||||
# Copyright (C) 2004 - 2006 The T2 SDE Project
|
|
||||||
# Copyright (C) 1998 - 2003 Clifford Wolf
|
|
||||||
#
|
|
||||||
# More information can be found in the files COPYING and README.
|
|
||||||
#
|
|
||||||
# This patch file is dual-licensed. It is available under the license the
|
|
||||||
# patched project is licensed under, as long as it is an OpenSource license
|
|
||||||
# as defined at http://www.opensource.org/ (e.g. BSD, X11) or 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.
|
|
||||||
# --- SDE-COPYRIGHT-NOTE-END ---
|
|
||||||
|
|
||||||
--- ./SpiralSound/Plugins/Widgets/Fl_VU_Meter.cxx.org Mon Jan 20 12:35:00 2003
|
|
||||||
+++ ./SpiralSound/Plugins/Widgets/Fl_VU_Meter.cxx Mon Jan 20 12:35:42 2003
|
|
||||||
@@ -2,7 +2,7 @@
|
|
||||||
#include "Fl_VU_Meter.h"
|
|
||||||
#include <FL/fl_draw.H>
|
|
||||||
|
|
||||||
-Fl_VU_Meter::Fl_VU_Meter (int x, int y, int w, int h, const char *l = 0) :
|
|
||||||
+Fl_VU_Meter::Fl_VU_Meter (int x, int y, int w, int h, const char *l ) :
|
|
||||||
Fl_Progress (x, y, w, h, l) {
|
|
||||||
}
|
|
||||||
|
|
||||||
--- ./SpiralSound/Plugins/Widgets/Fl_VU_Meter.h.org Mon Jan 20 12:35:05 2003
|
|
||||||
+++ ./SpiralSound/Plugins/Widgets/Fl_VU_Meter.h Mon Jan 20 12:36:08 2003
|
|
||||||
@@ -5,7 +5,7 @@
|
|
||||||
|
|
||||||
class Fl_VU_Meter : public Fl_Progress {
|
|
||||||
public:
|
|
||||||
- FL_EXPORT Fl_VU_Meter (int x, int y, int w, int h, const char *l = 0);
|
|
||||||
+ FL_EXPORT Fl_VU_Meter (int x, int y, int w, int h, const char *l );
|
|
||||||
protected:
|
|
||||||
FL_EXPORT virtual void draw();
|
|
||||||
};
|
|
@ -1,28 +0,0 @@ |
|||||||
# --- SDE-COPYRIGHT-NOTE-BEGIN ---
|
|
||||||
# This copyright note is auto-generated by ./scripts/Create-CopyPatch.
|
|
||||||
#
|
|
||||||
# Filename: package/.../spiralsynthmodular/param.patch
|
|
||||||
# Copyright (C) 2004 - 2006 The T2 SDE Project
|
|
||||||
# Copyright (C) 1998 - 2003 Clifford Wolf
|
|
||||||
#
|
|
||||||
# More information can be found in the files COPYING and README.
|
|
||||||
#
|
|
||||||
# This patch file is dual-licensed. It is available under the license the
|
|
||||||
# patched project is licensed under, as long as it is an OpenSource license
|
|
||||||
# as defined at http://www.opensource.org/ (e.g. BSD, X11) or 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.
|
|
||||||
# --- SDE-COPYRIGHT-NOTE-END ---
|
|
||||||
|
|
||||||
--- ./SpiralSound/Plugins/MeterPlugin/MeterPluginGUI.C.org Mon Jan 20 14:18:44 2003
|
|
||||||
+++ ./SpiralSound/Plugins/MeterPlugin/MeterPluginGUI.C Mon Jan 20 14:19:05 2003
|
|
||||||
@@ -56,7 +56,7 @@
|
|
||||||
MaxBox->box (FL_ENGRAVED_BOX);
|
|
||||||
MaxBox->color (16);
|
|
||||||
add (MaxBox);
|
|
||||||
- Meter = new Fl_VU_Meter (2, 62, 226, 20);
|
|
||||||
+ Meter = new Fl_VU_Meter (2, 62, 226, 20, NULL );
|
|
||||||
Meter->color (FL_BLACK);
|
|
||||||
cb_Reset_i (Reset, NULL);
|
|
||||||
add (Reset);
|
|
@ -1,31 +0,0 @@ |
|||||||
|
|
||||||
[TIMESTAMP] 1134185719 Sat Dec 10 04:35:19 2005 |
|
||||||
[BUILDTIME] 50 (9) |
|
||||||
[SIZE] 9.48 MB, 63 files |
|
||||||
|
|
||||||
[DEP] bash |
|
||||||
[DEP] binutils |
|
||||||
[DEP] bzip2 |
|
||||||
[DEP] coreutils |
|
||||||
[DEP] diffutils |
|
||||||
[DEP] findutils |
|
||||||
[DEP] fltk |
|
||||||
[DEP] gawk |
|
||||||
[DEP] gcc |
|
||||||
[DEP] glibc |
|
||||||
[DEP] grep |
|
||||||
[DEP] libpng |
|
||||||
[DEP] libx11 |
|
||||||
[DEP] libxau |
|
||||||
[DEP] libxdmcp |
|
||||||
[DEP] libxext |
|
||||||
[DEP] linux-header |
|
||||||
[DEP] make |
|
||||||
[DEP] mesa |
|
||||||
[DEP] net-tools |
|
||||||
[DEP] patch |
|
||||||
[DEP] sed |
|
||||||
[DEP] sysfiles |
|
||||||
[DEP] tar |
|
||||||
[DEP] xproto |
|
||||||
[DEP] zlib |
|
@ -1,25 +0,0 @@ |
|||||||
# --- SDE-COPYRIGHT-NOTE-BEGIN --- |
|
||||||
# This copyright note is auto-generated by ./scripts/Create-CopyPatch. |
|
||||||
# |
|
||||||
# Filename: package/.../spiralsynthmodular/spiralsynthmodular.conf |
|
||||||
# Copyright (C) 2004 - 2006 The T2 SDE Project |
|
||||||
# Copyright (C) 1998 - 2003 Clifford Wolf |
|
||||||
# |
|
||||||
# More information can be found in the files COPYING and README. |
|
||||||
# |
|
||||||
# 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; version 2 of the License. A copy of the |
|
||||||
# GNU General Public License can be found in the file COPYING. |
|
||||||
# --- SDE-COPYRIGHT-NOTE-END --- |
|
||||||
|
|
||||||
var_append GCC_WRAPPER_APPEND ' ' "-L$( pkgprefix libdir xorg-server )" |
|
||||||
|
|
||||||
smm_postmake() { |
|
||||||
rm -rf $docdir/* |
|
||||||
cp -r Examples $docdir |
|
||||||
} |
|
||||||
|
|
||||||
hook_add postmake 5 "smm_postmake" |
|
||||||
|
|
||||||
|
|
@ -1,38 +0,0 @@ |
|||||||
|
|
||||||
[COPY] --- SDE-COPYRIGHT-NOTE-BEGIN --- |
|
||||||
[COPY] This copyright note is auto-generated by ./scripts/Create-CopyPatch. |
|
||||||
[COPY] |
|
||||||
[COPY] Filename: package/.../spiralsynthmodular/spiralsynthmodular.desc |
|
||||||
[COPY] Copyright (C) 2006 The OpenSDE Project |
|
||||||
[COPY] Copyright (C) 2004 - 2006 The T2 SDE Project |
|
||||||
[COPY] Copyright (C) 1998 - 2003 Clifford Wolf |
|
||||||
[COPY] |
|
||||||
[COPY] More information can be found in the files COPYING and README. |
|
||||||
[COPY] |
|
||||||
[COPY] This program is free software; you can redistribute it and/or modify |
|
||||||
[COPY] it under the terms of the GNU General Public License as published by |
|
||||||
[COPY] the Free Software Foundation; version 2 of the License. A copy of the |
|
||||||
[COPY] GNU General Public License can be found in the file COPYING. |
|
||||||
[COPY] --- SDE-COPYRIGHT-NOTE-END --- |
|
||||||
|
|
||||||
[I] Spiral Synth Modular |
|
||||||
|
|
||||||
[T] SpiralSynth Modular (or SSM) is a object orientated modular |
|
||||||
[T] softsynth / sequencer / sampler. Audio or control data can |
|
||||||
[T] be freely passed between the plugins, its all treated the |
|
||||||
[T] same. Data can also be fed back on itself for chaotic effects. |
|
||||||
|
|
||||||
[U] http://www.pawfal.org/Software/SSM/ |
|
||||||
|
|
||||||
[A] Dave Griffiths <[email protected]> |
|
||||||
[M] The OpenSDE Community <[email protected]> |
|
||||||
|
|
||||||
[C] extra/multimedia |
|
||||||
|
|
||||||
[L] GPL |
|
||||||
[S] Stable |
|
||||||
[V] 0.1.1 |
|
||||||
[P] X -----5---9 169.600 |
|
||||||
|
|
||||||
[D] 3785785510 SpiralSynthModular-0.1.1.tar.gz http://www.pawfal.org/Software/SSM/dload/ |
|
||||||
|
|
Loading…
Reference in new issue