Package: amsynth
Version: 1.2.0-3.2
Severity: normal
Since amSynth calls «amSynth» (and not «amsynth») when we select the option
«New Instance» [0] it fails to create it.
This patch "fixes" this issue, or perhaps creating a symlink (pointing
/usr/bin/amsynth to /usr/bin/amSynth) could work too.
[0] In the Menu: File -> New Instance
-- System Information:
Debian Release: 5.0.3
APT prefers stable
APT policy: (900, 'stable'), (800, 'testing')
Architecture: i386 (i686)
Kernel: Linux 2.6.31-rc5-686 (SMP w/2 CPU cores)
Locale: LANG=es_AR.UTF-8, LC_CTYPE=es_AR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Versions of packages amsynth depends on:
ii libasound2 1.0.23-1 shared library for ALSA applicatio
ii libatk1.0-0 1.30.0-1 The ATK accessibility toolkit
ii libc6 2.11.1-3 Embedded GNU C Library: Shared lib
ii libcairo2 1.8.8-2 The Cairo 2D vector graphics libra
ii libcairomm-1.0-1 1.8.0-1 C++ wrappers for Cairo (shared lib
ii libgcc1 1:4.4.2-9 GCC support library
ii libglib2.0-0 2.24.1-1 The GLib library of C routines
ii libglibmm-2.4-1c2a 2.24.2-1 C++ wrapper for the GLib toolkit (
ii libgtk2.0-0 2.20.1-1 The GTK+ graphical user interface
ii libgtkmm-2.4-1c2a 1:2.20.3-1 C++ wrappers for GTK+ (shared libr
ii libjack0.100.0-0 0.109.2-5 JACK Audio Connection Kit (librari
ii libpango1.0-0 1.26.2-1 Layout and rendering of internatio
ii libsigc++-2.0-0c2a 2.0.18-2 type-safe Signal Framework for C++
ii libsndfile1 1.0.21-2 Library for reading/writing audio
ii libstdc++6 4.4.2-9 The GNU Standard C++ Library v3
amsynth recommends no packages.
amsynth suggests no packages.
-- no debconf information
Saludos,
Mauro
--
JID: [email protected] | http://lizaur.github.com/
2B82 A38D 1BA5 847A A74D 6C34 6AB7 9ED6 C8FD F9C1
Since amSynth calls 'amSynth' when we try to create a /new instance/ it fails, replacing this line "fixes" that.
Index: amsynth/amsynth-1.2.3/src/GUI/GUI.cc
===================================================================
--- amsynth.orig/amsynth-1.2.3/src/GUI/GUI.cc 2010-08-04 01:23:49.232407211 -0300
+++ amsynth/amsynth-1.2.3/src/GUI/GUI.cc 2010-08-04 01:24:05.080386696 -0300
@@ -201,7 +201,7 @@
//
Menu *menu_file = manage (new Menu());
MenuList& list_file = menu_file->items ();
- list_file.push_back (MenuElem("New Instance", sigc::bind(mem_fun(*this, &GUI::command_run),"amSynth")));
+ list_file.push_back (MenuElem("New Instance", sigc::bind(mem_fun(*this, &GUI::command_run),"amsynth")));
list_file.push_back (SeparatorElem());
list_file.push_back (MenuElem("_Open Bank",Gtk::AccelKey("<control>O"), mem_fun(*this, &GUI::bank_open)));
// list_file.push_back (MenuElem("_Save Bank","<control>S", mem_fun(*this, &GUI::bank_save)));