debian/0000755000000000000000000000000011537650103007167 5ustar debian/compat0000644000000000000000000000000211476425570010377 0ustar 7 debian/patches/0000755000000000000000000000000011537647242010630 5ustar debian/patches/04-binutils_gold.patch0000644000000000000000000000104711537646052014730 0ustar Description: Append -ldl to the linking flags to fix FTBFS in Natty. Author: Alessio Treglia Forwarded: no --- src/Makefile.am | 1 + 1 file changed, 1 insertion(+) --- ams.orig/src/Makefile.am +++ ams/src/Makefile.am @@ -250,6 +250,7 @@ CLEANFILES = $(nodist_ams_SOURCES) $(tra AM_LDFLAGS = @QT_LIBS@ AM_CXXFLAGS = @QT_CXXFLAGS@ @AMS_CXXFLAGS@ DEFS = -D_REENTRANT -DLADSPA_PATH=\"$(LADSPA_PATH)\" -DTRANSLATIONSDIR=\"$(translationsdir)\" @DEFS@ +ams_LDADD = -ldl # rule for moc-file generation SUFFIXES = _moc.cpp debian/patches/02-armel_minmaxfix.patch0000644000000000000000000001022311476425570015246 0ustar Author: Peter Green Description: Fix FTBFS on armel. Bug-Debian: http://bugs.debian.org/570848 Bug: https://sourceforge.net/tracker/?func=detail&aid=2959277&group_id=69130&atid=523503 Forwarded: yes --- src/canvasfunction.cpp | 24 ++++++++++++------------ src/function.cpp | 4 ++-- 2 files changed, 14 insertions(+), 14 deletions(-) --- ams.orig/src/canvasfunction.cpp +++ ams/src/canvasfunction.cpp @@ -34,10 +34,10 @@ void CanvasFunction::mouseMoveEvent(int qreal x = event->scenePos().x(); qreal y = event->scenePos().y(); - x = std::min(x, 5.0 * FUNCTION_SCALE); - x = std::max(x, -5.0 * FUNCTION_SCALE); - y = std::min(y, 5.0 * FUNCTION_SCALE); - y = std::max(y, -5.0 * FUNCTION_SCALE); + x = std::min(x, (qreal)(5.0 * FUNCTION_SCALE)); + x = std::max(x, (qreal)(-5.0 * FUNCTION_SCALE)); + y = std::min(y, (qreal)(5.0 * FUNCTION_SCALE)); + y = std::max(y, (qreal)(-5.0 * FUNCTION_SCALE)); switch (*function.mode) { case 0: @@ -58,8 +58,8 @@ void CanvasFunction::mouseMoveEvent(int for (int _p = 0; _p < function.pointCount; ++_p) { QPointF newPos = canvasPoints.at(_p)->scenePos(); newPos.setX(newPos.x() + delta); - newPos.setX(std::min(newPos.x(), 5.0 * FUNCTION_SCALE)); - newPos.setX(std::max(newPos.x(), -5.0 * FUNCTION_SCALE)); + newPos.setX(std::min(newPos.x(), (qreal)(5.0 * FUNCTION_SCALE))); + newPos.setX(std::max(newPos.x(), (qreal)(-5.0 * FUNCTION_SCALE))); setPoint(_p, newPos); } } break; @@ -69,8 +69,8 @@ void CanvasFunction::mouseMoveEvent(int for (int _p = 0; _p < function.pointCount; ++_p) { QPointF newPos = canvasPoints.at(_p)->scenePos(); newPos.setY(newPos.y() + delta); - newPos.setY(std::min(newPos.y(), 5.0 * FUNCTION_SCALE)); - newPos.setY(std::max(newPos.y(), -5.0 * FUNCTION_SCALE)); + newPos.setY(std::min(newPos.y(), (qreal)(5.0 * FUNCTION_SCALE))); + newPos.setY(std::max(newPos.y(), (qreal)(-5.0 * FUNCTION_SCALE))); setPoint(_p, newPos); } } break; @@ -80,8 +80,8 @@ void CanvasFunction::mouseMoveEvent(int for (int _p = 0; _p < function.pointCount; ++_p) { QPointF newPos = canvasPoints.at(_p)->scenePos(); newPos.setX(pos0[_p].x() * delta); - newPos.setX(std::min(newPos.x(), 5.0 * FUNCTION_SCALE)); - newPos.setX(std::max(newPos.x(), -5.0 * FUNCTION_SCALE)); + newPos.setX(std::min(newPos.x(), (qreal)(5.0 * FUNCTION_SCALE))); + newPos.setX(std::max(newPos.x(), (qreal)(-5.0 * FUNCTION_SCALE))); setPoint(_p, newPos); } } break; @@ -91,8 +91,8 @@ void CanvasFunction::mouseMoveEvent(int for (int _p = 0; _p < function.pointCount; ++_p) { QPointF newPos = canvasPoints.at(_p)->scenePos(); newPos.setY(pos0[_p].y() * delta); - newPos.setY(std::min(newPos.y(), 5.0 * FUNCTION_SCALE)); - newPos.setY(std::max(newPos.y(), -5.0 * FUNCTION_SCALE)); + newPos.setY(std::min(newPos.y(), (qreal)(5.0 * FUNCTION_SCALE))); + newPos.setY(std::max(newPos.y(), (qreal)(-5.0 * FUNCTION_SCALE))); setPoint(_p, newPos); } } break; --- ams.orig/src/function.cpp +++ ams/src/function.cpp @@ -144,7 +144,7 @@ void Function::drawBackground(QPainter * { qreal y = ceil(rect.topLeft().y() * zoom / FUNCTION_SCALE); y *= FUNCTION_SCALE / zoom; - QLineF l(std::max(-5.0 * FUNCTION_SCALE, rect.topLeft().x()), y, std::min(5.0 * FUNCTION_SCALE, rect.topRight().x()), y); + QLineF l(std::max((qreal)(-5.0 * FUNCTION_SCALE), rect.topLeft().x()), y, std::min((qreal)(5.0 * FUNCTION_SCALE), rect.topRight().x()), y); while (l.y1() < rect.bottomLeft().y()) { painter->drawLine(l); painter->drawText(l.p1(), s.setNum(l.y1() / FUNCTION_SCALE)); @@ -154,7 +154,7 @@ void Function::drawBackground(QPainter * { qreal x = ceil(rect.topLeft().x() * zoom / FUNCTION_SCALE); x *= FUNCTION_SCALE / zoom; - QLineF l(x, std::max(-5.0 * FUNCTION_SCALE, rect.topLeft().y()), x, std::min(5.0 * FUNCTION_SCALE, rect.bottomLeft().y())); + QLineF l(x, std::max((qreal)(-5.0 * FUNCTION_SCALE), rect.topLeft().y()), x, std::min((qreal)(5.0 * FUNCTION_SCALE), rect.bottomLeft().y())); while (l.x1() < rect.bottomRight().x()) { painter->drawLine(l); painter->drawText(l.p1(), s.setNum(l.x1() / FUNCTION_SCALE)); debian/patches/series0000644000000000000000000000017611537647177012060 0ustar 01-ams_launch_script.patch 02-armel_minmaxfix.patch 03-null_jack_handle.patch 04-binutils_gold.patch 05-spelling_errors.patch debian/patches/03-null_jack_handle.patch0000644000000000000000000000115611476425570015351 0ustar Subject: Prevent crash if jack handle is NULL. Origin: backport, commit:1.2 Bug: http://sourceforge.net/support/tracker.php?aid=2987034 Bug-Ubuntu: https://launchpad.net/bugs/553366 Applied-Upstream: commit:1.2 --- src/synthdata.cpp | 3 +++ 1 file changed, 3 insertions(+) --- ams.orig/src/synthdata.cpp +++ ams/src/synthdata.cpp @@ -532,6 +532,9 @@ int SynthData::initJack (int ncapt, int int SynthData::closeJack () { + if (jack_handle == NULL) { + return 0; + } qWarning(QObject::tr("Closing JACK...").toUtf8()); jack_deactivate (jack_handle); for (int i = 0; i < play_ports; i++) debian/patches/05-spelling_errors.patch0000644000000000000000000000117011537647275015311 0ustar Description: Fix small spelling errors. Author: Alessio Treglia Forwarded: no --- src/m_spectrum.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- ams.orig/src/m_spectrum.cpp +++ ams/src/m_spectrum.cpp @@ -15,7 +15,7 @@ M_spectrum::M_spectrum(QWidget* parent) configDialog->addLabel( "This modules source-code is outdated.\n" "Replace this module by a \"PCM Out\" and connect the pcm-out's jack" - " ports to i.e. JAAA, JAPA, CLAM ... to obtain spectral informations.\n" + " ports to i.e. JAAA, JAPA, CLAM ... to obtain spectral information.\n" "See http://apps.linuxaudio.org"); } debian/patches/01-ams_launch_script.patch0000644000000000000000000000150111476425570015562 0ustar Description: Little script to set up the environment before launching ams Author: by Free Ekanayaka Last-Update: 2009-12-09 --- ams | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) --- /dev/null +++ ams-2.0.0/ams @@ -0,0 +1,20 @@ +#!/bin/sh +# +# Little script to set up the environment before launching ams +# +# Copyright (C) 2005 Free Ekanayaka +# +# This script is licensed under the GNU GPL v2 - you can find a +# complete copy of the license under /usr/share/common-licenses/GPL-2 + +LADSPA_DEFAULT_PATH=/usr/lib/ladspa:/usr/local/ladspa +OPTIONS=" --presetpath /usr/share/ams" + +if [ -z "$LADSPA_PATH" ]; then + export LADSPA_PATH=${LADSPA_DEFAULT_PATH} +fi +if [ $(ps -C jackd| wc -l) -gt 1 ]; then + OPTIONS="$OPTIONS --jack" +fi + +exec /usr/lib/ams/ams.real $OPTIONS $@ debian/rules0000755000000000000000000000030711537645675010271 0ustar #!/usr/bin/make -f LDFLAGS += -ldl %: dh $@ --with=autoreconf override_dh_auto_install: dh_auto_install mv debian/ams/usr/bin/ams debian/ams/usr/lib/ams/ams.real mv ams debian/ams/usr/bin/ams debian/docs0000644000000000000000000000001611476425570010051 0ustar README THANKS debian/ams.xpm0000644000000000000000000001064711476425570010517 0ustar /* XPM */ static char *alsamodular[]={ "32 32 143 2", ".k c #4d4640", "#N c #524b46", ".u c #5c5651", ".R c #61594c", "#d c #615b56", ".6 c #665c47", ".M c #6b5f42", "#n c #6d6762", "ae c #706a66", ".o c #75716d", "#E c #76716d", "#m c #78736e", "#F c #797470", "#H c #7c7772", "a# c #7e776c", ".n c #7f7c78", ".l c #817c78", "Qt c #825a31", ".# c #825a32", ".G c #825b34", ".B c #825c34", ".5 c #825c36", ".0 c #825e38", "#J c #835b30", "#h c #835c34", "#u c #835c35", "#g c #835e38", ".L c #835e3a", ".v c #835f3b", "ac c #845d32", ".c c #845e37", ".V c #84603a", ".p c #84623f", "#r c #85603a", ".X c #856342", "a. c #856443", "#b c #856544", "#T c #856545", "ak c #86603a", ".1 c #866647", ".Q c #866748", ".C c #86684b", ".H c #86694b", "#t c #87623d", "#s c #87633d", ".K c #886e55", ".4 c #886f56", "#a c #887056", "#K c #89602e", ".a c #896643", "ab c #8a612d", "#k c #8a6744", ".F c #8a725b", ".w c #8a755f", "#4 c #8a7560", "#Z c #8a7b51", ".D c #8c7966", ".b c #8d6c4a", "#P c #8d7354", "## c #8d7e6f", ".I c #8d7f6f", ".J c #8d7f70", ".e c #8d8884", "#e c #8d8984", ".P c #8e7e6d", ".3 c #8e7f71", ".2 c #8e8071", "#U c #8e8173", ".E c #8f8277", "#. c #8f8377", ".Y c #908476", "#3 c #90877e", "#C c #917152", "#V c #91806a", ".x c #918475", ".h c #927456", "#L c #936e3e", ".g c #937556", "#6 c #937e40", "#v c #947658", "#I c #95795d", "#2 c #967746", "#x c #977b5f", ".i c #987e63", "#w c #997e63", "#o c #998066", ".W c #9a7330", ".q c #9a7432", "#i c #9a8066", "al c #9a8269", "#q c #9b8670", ".t c #9b9085", ".U c #9c722a", "#p c #9c8771", "#5 c #9c9185", "#O c #9c9894", "aa c #9d7f55", "#9 c #9d885d", "am c #9f8872", "ai c #9f9c9a", "#M c #a1947d", "#l c #a1978c", "#j c #a2907d", "#y c #a39280", "ad c #a3998e", ".m c #a3998f", "#A c #a4978b", "ah c #a4a19f", "#D c #a59b91", "#z c #a6998d", "af c #a6a19e", ".f c #a6a2a0", ".T c #a87c21", "#G c #a8a4a0", ".r c #a97e25", "#B c #a99b8f", "#W c #ab832d", ".j c #ab9d90", "#c c #ac9f91", "ag c #aca298", "aj c #aca9a7", ".9 c #ae8b36", ".d c #afa395", ".S c #b09a60", "#1 c #b4881f", "#f c #b68b22", "#Y c #baa057", "#X c #bb9027", "#0 c #c19932", ".s c #c1a865", "#Q c #c29925", ".7 c #c5a53c", ".Z c #c7a738", ".O c #c8a431", "#S c #caaa3e", "#8 c #cda018", ".8 c #ce9e10", ".y c #d1aa28", "#R c #d9a911", ".N c #dab018", "#7 c #dcae17", ".A c #ecbd0f", ".z c #f4c000", "QtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQt", "QtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQt.#.a.b.b.b.b.b.b.b.b.cQt", "QtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQt.c.d.e.e.e.e.e.e.e.f.gQt", "QtQt.h.i.i.i.i.i.i.hQtQtQtQtQtQtQtQtQtQt.c.j.k.k.k.k.k.k.k.l.gQt", "QtQt.m.n.o.o.o.o.n.mQtQtQtQtQtQtQtQt.p.q.r.s.k.k.k.k.k.k.k.l.gQt", "QtQt.t.u.k.k.k.k.u.tQtQtQtQtQtQt.v.w.x.y.z.A.k.k.k.k.k.k.k.l.gQt", "QtQt.t.u.k.k.k.k.u.tQtQtQt.B.C.D.E.F.GQt.c.j.k.k.k.k.k.k.k.l.gQt", "QtQt.t.u.k.k.k.k.u.tQtQt.H.I.J.K.LQtQtQt.c.j.k.k.k.k.k.k.k.l.gQt", "QtQt.t.u.k.k.k.k.M.N.z.O.P.QQtQtQtQtQtQt.c.j.k.k.k.k.k.k.k.l.gQt", "QtQt.t.u.k.k.k.k.R.S.T.U.GQtQtQtQtQtQtQt.c.j.k.k.k.k.k.k.k.l.gQt", "QtQt.t.u.k.k.k.k.u.tQtQtQtQtQtQtQtQt.V.W.r.s.k.k.k.k.k.k.k.l.gQt", "QtQt.t.u.k.k.k.k.u.tQtQtQtQtQtQt.X.w.Y.Z.z.A.k.k.k.k.k.k.k.l.gQt", "QtQt.t.u.k.k.k.k.u.tQtQt.0.1.w.2.3.4.5Qt.c.j.k.k.k.k.k.k.k.l.gQt", "QtQt.t.u.k.k.k.k.6.7.8.9#.###a#b.GQtQtQt.c#c#d#d#d#d#d#d#d#e.gQt", "QtQt.t.u.k.k.k.k.6.7.8#f#gQtQtQtQtQtQtQt#h#i#j#j#j#j#j#j#j#j#kQt", "QtQt.t.u.k.k.k.k.u.tQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQt", "QtQt#l#m#n#n#n#n#m#lQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQt", "QtQt#o#p#q#q#q#q#p#oQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQt", "QtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQt", "QtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQt", "QtQt#r#s#s#s#s#s#s#s#s#s#s#s#s#s#t#uQtQtQtQtQtQt.c#v#w#w#w#xQtQt", "QtQt#y#z#A#A#A#A#A#A#A#A#A#A#A#A#B#CQtQtQtQtQtQt#k#D#E#E#F#GQtQt", "QtQt.t.u.k.k.k.k.k.k.k.k.k.k.k.k#H#IQtQtQtQt#J#K#L#M.k.k#N#OQtQt", "QtQt.t.u.k.k.k.k.k.k.k.k.k.k.k.k#H#IQtQtQt.##P#Q#R#S.k.k#N#OQtQt", "QtQt.t.u.k.k.k.k.k.k.k.k.k.k.k.k#H#IQtQt#T#U#V#W#X#Y.k.k#N#OQtQt", "QtQt.t.u.k.k.k.k.k.k.k.k.k.k.k.k#Z#0#1#2#3#4.5Qt#k#5.k.k#N#OQtQt", "QtQt.t.u.k.k.k.k.k.k.k.k.k.k.k.k#6#7#8#9a.QtQtQt#k#5.k.k#N#OQtQt", "QtQt.t.u.k.k.k.k.k.k.k.k.k.k.k.ka#aaabacQtQtQtQt#k#5.k.k#N#OQtQt", "QtQt.t.u.k.k.k.k.k.k.k.k.k.k.k.k#H#IQtQtQtQtQtQt#kad#n#naeafQtQt", "QtQtagahaiaiaiaiaiaiaiaiaiaiaiaiaj#IQtQtQtQtQtQtakal#q#q#qamQtQt", "QtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQt", "QtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQtQt"}; debian/control0000644000000000000000000000227211537645656010616 0ustar Source: ams Section: sound Priority: optional Maintainer: Debian Multimedia Maintainers Uploaders: Free Ekanayaka , Junichi Uekawa , Alessio Treglia Build-Depends: debhelper (>= 7.0.50~), dh-autoreconf, libqt4-dev, libqt4-opengl-dev, ladspa-sdk, libasound2-dev, libjack-dev, fftw-dev, sfftw-dev, libclalsadrv-dev (>= 1.0.1-3) Standards-Version: 3.9.1 Vcs-Git: git://git.debian.org/git/pkg-multimedia/ams.git Vcs-Browser: http://git.debian.org/?p=pkg-multimedia/ams.git;a=summary Homepage: http://alsamodular.sourceforge.net/ Package: ams Architecture: any Depends: ${shlibs:Depends}, mcp-plugins, swh-plugins, cmt, ${misc:Depends} Recommends: amb-plugins, vco-plugins, rev-plugins Description: Realtime modular synthesizer for ALSA AlsaModularSynth is a realtime modular synthesizer and effect processor. It features: * MIDI controlled modular software synthesis. * Realtime effect processing with capture from e.g. "Line In" or "Mic In". * Full control of all synthesis and effect parameters via MIDI. * Integrated LADSPA Browser with search capability. * JACK Support. debian/ams.10000644000000000000000000000605411476425570010050 0ustar .\" Copyright (c) 2003 Dave Phillips .\" .\" This is free documentation; 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. .\" .\" The GNU General Public License's references to "object code" .\" and "executables" are to be interpreted as the output of any .\" document formatting or typesetting system, including .\" intermediate and printed output. .\" .\" This manual 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. .\" .\" You should have received a copy of the GNU General Public .\" License along with this manual; if not, write to the Free .\" Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, .\" USA. .\" .TH AlsaModularSynth 1 "November 2003" .SH NAME ams \- A software synthesizer modeled after modular patching synthesizers .SH SYNOPSIS .BI "ams [" OPTIONS "]" .SH DESCRIPTION The .B AlsaModularSynth (AMS) is a software synthesizer designed after the great analog modular synths of the 1960s. It employs virtual control voltages (VC) for each module's parameter control, using the the .B Moog synthesizer's 1V/oct logarithmic control scale for its oscillator and filter functions. Following the modular synth model .B AMS supplies the user with a variety of sound-producing and sound-processing software modules such as digital oscillators, filters, amplifiers, and DSP effects. These modules are linked together (patched) to create complex audio synthesis networks. These network patches can be played in realtime via MIDI or internal control structures, and they may be saved and reloaded at will. .SH OPTIONS Runtime options for .B AMS are shown here with their default values in brackets. .TP 10 .B --jack Enable JACK I/O .TP 10 .BI "--in " Number of JACK input ports .TP 10 .BI "--out " Number of JACK output ports .TP 10 .BI "--poly " Polyphony [1] .TP 10 .BI "--periodsize " Period size [1024] .TP 10 .BI "--frag " Number of fragments [2] .TP 10 .BI "--rate " Sample rate [44100] .TP 10 .BI "--edge " <0...10> VCO edge [1.0] .TP 10 .BI "--soundcard " Soundcard [plughw:0,0] .TP 10 .BI "--preset " Preset file .TP 10 .BI "--presetpath " Preset path .TP 10 .B --nogui Start without GUI .SH FILES Numerous example patches can be found in .I /usr/share/ams or .I /usr/local/share/ams. Tutorial documentation is available at .I http://alsamodular.sourceforge.net/alsamodularsynth_doc.html. .SH BUGS Please send bug reports or any other feedback to Matthias Nagorni .SH AUTHOR .B AMS is written and maintained by Dr. Matthias Nagorni. .SH COPYRIGHT Copyright and license information for .B AMS: .B AlsaModularSynth by Matthias Nagorni (c) 2002-2003 SuSE AG Nuremberg. Licensed under the .B GNU Public License. debian/changelog0000644000000000000000000001630711537647744011071 0ustar ams (2.0.1-5) unstable; urgency=low * Add patch to fix FTBFS with binutils-gold. * Add patch to fix spelling errors. * Enable dh-autoreconf. -- Alessio Treglia Tue, 15 Mar 2011 12:39:07 +0100 ams (2.0.1-4) unstable; urgency=low * debian/patches/03-null_jack_handle.patch: - Fix crash when jack_handle is NULL (LP: #553366). * Switch to format 3.0 (quilt). * debian/control: - Update my e-mail address. - Bump Standards. - Remove "DM-Upload-Allowed: yes" field. -- Alessio Treglia Tue, 26 Oct 2010 10:09:29 +0200 ams (2.0.1-3) unstable; urgency=low * debian/ams.1: Fix manpage whatis entry. * Rebuild with new libclalsadrv. -- Alessio Treglia Sun, 18 Apr 2010 03:11:14 +0200 ams (2.0.1-2) unstable; urgency=low * Bump Standards. * Add 02-armel_minmaxfix.patch to prevent FTBFS on armel, thanks to Peter Green for the patch (Closing: #570848). -- Alessio Treglia Thu, 25 Feb 2010 08:19:45 +0100 ams (2.0.1-1) unstable; urgency=low * New upstream release. * Append -ldl to LDFLAGS to fix build failure with binutils-gold (Closes: #553677). * Set DM-Upload-Allowed to 'yes'. * debian/copyright updated to follow DEP-5 -- Alessio Treglia Sat, 02 Jan 2010 17:12:50 +0100 ams (2.0.0-1) unstable; urgency=low * Change maintainer to Debian Multimedia Maintainers. * New upstream release. * Bump Standards. * Add ${misc:Depends} macro to the Depends field. * Add myself to Uploaders field. * Add Vcs-* fields. * Add Homepage field. * Improve extended description (to make lintian happy). * Fix desktop file as per spec. * Switch to debhelper 7. * Switch from dpatch to quilt. * Update build-dependencies due to the Qt3->Qt4 porting. * Replace build-dependency on libjack0.100.0-dev with libjack-dev (Closes: #427402). * debian/docs: Don't install demos, instruments and tutorials, they're already installed under /usr/share/ams/ (Closes: #526533). * Fix debian/menu. * Fix watch file. * Old patches in debian/patches/*.dpatch: - 10makefile: Dropped, not needed anymore. - 11ams_launch_script: Converted to quilt, now 01-ams_launch_script.patch - 12default_patch_dir: Already dropped, remove this. - 13outdate_code: Dropped. - 14_spectrum: Dropped. - 15_qt3_headers: Dropped. * debian/README.source: Document how to patch the sources. * debian/patches/01-ams_launch_script.patch: - Updated --presets-path to /usr/share/ams (Closes: #526533). -- Alessio Treglia Wed, 09 Dec 2009 22:17:00 +0100 ams (1.8.8~rc2-3.1) unstable; urgency=low * Non-maintainer upload. * Drop dependency on libqt3-compat-headers, which is scheduled for removal, patch by Barry deFreese (Closes: #464092) -- Moritz Muehlenhoff Thu, 27 Mar 2008 19:32:38 +0100 ams (1.8.8~rc2-3) unstable; urgency=low * Recommends vco rev and amb plugins * Fixed wach file (Closes: #450139) * Applied patch for spectrum displays (Closes: #450609) -- Free Ekanayaka Thu, 13 Dec 2007 11:17:19 +0000 ams (1.8.8~rc2-2) unstable; urgency=low * Unset "-march=k8" in the upstream Makefile (Closes: #430409) -- Free Ekanayaka Tue, 10 Jul 2007 00:19:55 +0200 ams (1.8.8~rc2-1) unstable; urgency=low * New upstream release * Changed name in .desktop file (Ams -> Alsa Modular Synth) -- Free Ekanayaka Wed, 20 Jun 2007 02:02:01 +0200 ams (1.8.7-6) unstable; urgency=low * Using exec in wrapper script to launch ams.real * Added /usr/local/ladspa to the LADSPA_PATH env variable * Set Maintainer to debian-multimedia * Added Junichi and me to the uploaders * Fixed broken watch file * Updated standards to 3.7.2 * Updated compat version * Depend on mcp-plugins, cmt and swh-plugins, as they are needed by the example patches -- Free Ekanayaka Tue, 27 Mar 2007 11:06:34 +0200 ams (1.8.7-5) unstable; urgency=low * Removed useless debconf dependency -- Free Ekanayaka Thu, 29 Sep 2005 09:25:57 +0100 ams (1.8.7-4) unstable; urgency=low * Built against the newly transitioned qt3 libraries -- Free Ekanayaka Tue, 23 Aug 2005 12:18:48 +0200 ams (1.8.7-3) unstable; urgency=low * Bug fix: "bug in ams script", thanks to James Stone (Closes: #311847). * Launch with --presetpath=/usr/share/doc/ams/demos * Launch with --jack if jackd is running * Build depends on libjack 0.100.0 (Closes: #317182) * Added .desktop file for GNOME menus -- Free Ekanayaka Tue, 20 Jul 2005 13:45:01 +0200 ams (1.8.7-2) unstable; urgency=low * Fixed watch file * Removed useless libc6-dev build dependency * Bug fix: "ams: Menu Icon please", thanks to tim hall (Closes: #299409). -- Free Ekanayaka Wed, 23 Mar 2005 11:43:56 +0100 ams (1.8.7-1) unstable; urgency=low * New upstream release * First Debian upload (closes: #203902), sponsored by Cosimo Alfarano * Updated Standards-Version to 3.6.1.1 -- Free Ekanayaka Tue, 31 Aug 2004 14:21:00 +0200 ams (1.8.6-1) unstable; urgency=low * New upstream release -- Free Ekanayaka Tue, 20 Jul 2004 14:35:18 +0200 ams (1.7.7-1) unstable; urgency=low * New upstream release -- Free Ekanayaka Wed, 14 Apr 2004 14:27:17 +0200 ams (1.7.6-1) unstable; urgency=low * New upstream release -- Free Ekanayaka Fri, 12 Mar 2004 14:39:28 +0100 ams (1.7.1-0test2) unstable; urgency=low * the /usr/bin/ams wrapper script wasn't considering command line paramenters when launching /usr/share/ams.real. fixed adding a simple $\@ -- Free Ekanayaka Fri, 16 Jan 2004 13:10:26 +0100 ams (1.7.1-0test1) unstable; urgency=low * New upstream release -- Free Ekanayaka Sat, 20 Dec 2003 11:37:11 +0600 ams (1.6.0-0test3) unstable; urgency=low * added watch file * ams will open /usr/share/ams as the default patch directory * removed ams.examples; all the patches are now in /usr/share/ams * debian/control: added dpatch and libqt3-compat-headers build dependency -- Free Ekanayaka Thu, 4 Dec 2003 11:23:31 +0600 ams (1.6.0-0test2) unstable; urgency=low * debian/ams.1: added manpage (submitted by ) * depends on libjack-dev instead than libjack0.71.2-dev * debian/ams: small script to export the correct value for LADSPA_PATH -- Andrea Glorioso Fri, 21 Nov 2003 12:08:10 +0100 ams (1.6.0-0test1) unstable; urgency=low * New upstream version. * Using dpatch from now on. -- Andrea Glorioso Thu, 20 Nov 2003 12:16:00 +0100 ams (1.5.9-1.agnula-1) unstable; urgency=low * Repackaged for AGNULA. -- Free Ekanayaka Tue, 22 Jul 2003 11:13:36 +0200 ams (1.5.9-1) unstable; urgency=low * New upstream. -- Free Ekanayaka Fri, 4 Jul 2003 10:01:37 +0200 ams (1.4.12-1) unstable; urgency=low * Initial Release. -- Free Ekanayaka Wed, 25 Sep 2002 12:14:00 +0000 debian/install0000644000000000000000000000005211476425570010567 0ustar debian/ams.desktop usr/share/applications debian/dirs0000644000000000000000000000002411476425570010061 0ustar usr/bin usr/lib/ams debian/gbp.conf0000644000000000000000000000005711476425570010622 0ustar [DEFAULT] pristine-tar = True sign-tags = True debian/copyright0000644000000000000000000000236411476425570011141 0ustar Format-Specification: http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?op=file&rev=59 Name: AlsaModularSynth Maintainer: Matthias Nagorni Source: http://sourceforge.net/project/showfiles.php?group_id=69130 Files: * Copyright: No copyright holder License: GPL-2 Files: debian/* Copyright: 2009-2010, Alessio Treglia 2002-2007, Free Ekanayaka 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. . You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. X-Comment: On Debian systems, the complete text of the GNU General Public License can be found in /usr/share/common-licenses/GPL-2 file. debian/ams.desktop0000644000000000000000000000023711476425570011356 0ustar [Desktop Entry] Name=Alsa Modular Synth Comment=Modular Software Synth Exec=ams Icon=ams_32 Terminal=false Type=Application Categories=GNOME;AudioVideo;Audio; debian/source/0000755000000000000000000000000011476425570010501 5ustar debian/source/format0000644000000000000000000000001411476425570011707 0ustar 3.0 (quilt) debian/watch0000644000000000000000000000010511476425570010226 0ustar version=3 http://sf.net/alsamodular/ams-(.*)\.tar\.gz debian uupdate debian/menu0000644000000000000000000000036211476425570010071 0ustar ?package(ams):needs="X11" section="Applications/Sound"\ title="ALSA modular synth" command="/usr/bin/ams"\ hints="Synthesis,Modular,Softsynth"\ description="Realtime modular synthesizer for ALSA"\ icon="/usr/share/pixmaps/ams_32.xpm" debian/manpages0000644000000000000000000000001511476425570010713 0ustar debian/ams.1