summaryrefslogtreecommitdiff
path: root/audio/soundtracker/files
diff options
context:
space:
mode:
Diffstat (limited to 'audio/soundtracker/files')
-rw-r--r--audio/soundtracker/files/patch-app_Makefile.in15
-rw-r--r--audio/soundtracker/files/patch-app_sample-editor.c21
-rw-r--r--audio/soundtracker/files/patch-app_tracer.c41
-rw-r--r--audio/soundtracker/files/patch-app_track-editor.c29
-rw-r--r--audio/soundtracker/files/patch-po_ja.po65
5 files changed, 0 insertions, 171 deletions
diff --git a/audio/soundtracker/files/patch-app_Makefile.in b/audio/soundtracker/files/patch-app_Makefile.in
deleted file mode 100644
index eb4eda7e9c13..000000000000
--- a/audio/soundtracker/files/patch-app_Makefile.in
+++ /dev/null
@@ -1,15 +0,0 @@
---- app/Makefile.in.orig 2006-02-25 13:37:15 UTC
-+++ app/Makefile.in
-@@ -235,9 +235,9 @@ soundtracker_LDADD = drivers/libdrivers.
-
- stdir = $(datadir)/soundtracker
-
--#INCLUDES = -DDATADIR=\"$(stdir)\" \
--# -DLOCALEDIR=\"$(datadir)/locale\"
--INCLUDES = -DLOCALEDIR=\"$(datadir)/locale\"
-+INCLUDES = -DDATADIR=\"$(stdir)\" \
-+ -DLOCALEDIR=\"$(datadir)/locale\"
-+#INCLUDES = -DLOCALEDIR=\"$(datadir)/locale\"
- subdir = app
- ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
- mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
diff --git a/audio/soundtracker/files/patch-app_sample-editor.c b/audio/soundtracker/files/patch-app_sample-editor.c
deleted file mode 100644
index e9b88632689e..000000000000
--- a/audio/soundtracker/files/patch-app_sample-editor.c
+++ /dev/null
@@ -1,21 +0,0 @@
---- app/sample-editor.c.orig 2006-02-25 12:26:05 UTC
-+++ app/sample-editor.c
-@@ -2647,13 +2647,15 @@ sample_editor_trim(gboolean trbeg, gbool
- static void
- sample_editor_crop()
- {
-- int start = sampledisplay->sel_start, end = sampledisplay->sel_end;
-+ int start, end, l;
-+
-+ start = sampledisplay->sel_start, end = sampledisplay->sel_end;
-
- if(current_sample == NULL || start == -1)
- return;
--
-- int l = current_sample->sample.length;
-
-+ l = current_sample->sample.length;
-+
- sample_editor_lock_sample();
- sample_editor_delete(current_sample, 0, start);
- sample_editor_delete(current_sample, end - start, l - start);
diff --git a/audio/soundtracker/files/patch-app_tracer.c b/audio/soundtracker/files/patch-app_tracer.c
deleted file mode 100644
index 8b137b394461..000000000000
--- a/audio/soundtracker/files/patch-app_tracer.c
+++ /dev/null
@@ -1,41 +0,0 @@
---- app/tracer.c.orig 2006-02-25 12:30:54 UTC
-+++ app/tracer.c
-@@ -361,15 +361,19 @@ static st_mixer mixer_tracer = {
- void
- tracer_trace (int mixfreq, int songpos, int patpos)
- {
-+ st_mixer *real_mixer;
-+ int stopsongpos, stoppatpos;
-+ double rest, previous;
-+
- /* Attemp to take pitchband into account */
- /* Test if tempo and BPM are traced */
-- st_mixer *real_mixer = mixer;
-+ real_mixer = mixer;
- mixer = &mixer_tracer;
-
-- int stopsongpos = songpos;
-- int stoppatpos = patpos;
-+ stopsongpos = songpos;
-+ stoppatpos = patpos;
-
-- double rest = 0, previous = 0; /* Fractional part of the samples */
-+ rest = 0, previous = 0; /* Fractional part of the samples */
-
- if((stoppatpos -= 1) < 0){
- stopsongpos -= 1;
-@@ -381,12 +385,13 @@ tracer_trace (int mixfreq, int songpos,
-
- while(1) {
- double t;
-+ guint32 samples;
-
- double current = xmplayer_play();
- t = current - previous + rest;
- previous = current;
-
-- guint32 samples = t * mixfreq;
-+ samples = t * mixfreq;
- rest = t - (double)samples / (double)mixfreq;
-
- tracer_mix(NULL, samples, NULL, 0);
diff --git a/audio/soundtracker/files/patch-app_track-editor.c b/audio/soundtracker/files/patch-app_track-editor.c
deleted file mode 100644
index 8629e74e545e..000000000000
--- a/audio/soundtracker/files/patch-app_track-editor.c
+++ /dev/null
@@ -1,29 +0,0 @@
---- app/track-editor.c.orig 2006-02-25 12:30:54 UTC
-+++ app/track-editor.c
-@@ -603,6 +603,8 @@ track_editor_handle_keys (int shift,
- }
-
- if(!GUI_ENABLED && !ASYNCEDIT) { // Recording mode
-+ XMNote *note;
-+
- if(pressed){ // Insert note
-
- for(c = 0; c < 32; c++){ // Cleanup
-@@ -624,7 +626,7 @@ track_editor_handle_keys (int shift,
- reckey[c].chn = t->cursor_ch;
- reckey[c].act = TRUE;
-
-- XMNote *note = &t->curpattern->channels[t->cursor_ch][t->patpos];
-+ note = &t->curpattern->channels[t->cursor_ch][t->patpos];
- note->note = i;
- note->instrument = gui_get_current_instrument();
- tracker_redraw_current_row(t);
-@@ -645,7 +647,7 @@ track_editor_handle_keys (int shift,
- if (!insert_noteoff)
- goto fin_note;
-
-- XMNote *note = &t->curpattern->channels[reckey[c].chn][t->patpos];
-+ note = &t->curpattern->channels[reckey[c].chn][t->patpos];
- note->note = 97;
- note->instrument = 0;
- tracker_redraw_current_row(t);
diff --git a/audio/soundtracker/files/patch-po_ja.po b/audio/soundtracker/files/patch-po_ja.po
deleted file mode 100644
index b3f136d17c28..000000000000
--- a/audio/soundtracker/files/patch-po_ja.po
+++ /dev/null
@@ -1,65 +0,0 @@
---- po/ja.po.orig 2006-02-25 13:25:08 UTC
-+++ po/ja.po
-@@ -2,14 +2,14 @@
- # Copyright (C) 1998-2000 Michael Krause <m.krause@tu-harburg.de>.
- # Translators: Atsushi Yamagata <yamagata@plathome.co.jp>, 1999, 2000.
- # Yuuki NINOMIYA <gm@smn.enjoy.ne.jp>, 1999, 2000.
--# Junichi Uekawa <dancer@debian.org>, 2002, 2003.
-+# Junichi Uekawa <dancer@debian.org>, 2002, 2003, 2004.
- #
- msgid ""
- msgstr ""
- "Project-Id-Version: SoundTracker 0.3.10\n"
- "Report-Msgid-Bugs-To: soundtracker-discuss@soundtracker.org\n"
- "POT-Creation-Date: 2006-02-25 14:25+0100\n"
--"PO-Revision-Date: 2003-08-05 06:54+0900\n"
-+"PO-Revision-Date: 2004-01-12 12:13+0900\n"
- "Last-Translator: Junichi Uekawa <dancer@debian.org>\n"
- "Language-Team: Debian Japanese project <debian-japanese@lists.debian.org>\n"
- "MIME-Version: 1.0\n"
-@@ -553,6 +553,8 @@ msgid ""
- "Odd pattern rows contain data which will be lost after shrinking.\n"
- "Do you want to continue anyway?"
- msgstr ""
-+"奇数のパターンの列は縮小すると失われます.\n"
-+"続行しますか?"
-
- #: app/gui.c:506
- msgid ""
-@@ -560,6 +562,8 @@ msgid ""
- "Some data at the end of the pattern will be lost.\n"
- "Do you want to continue anyway?"
- msgstr ""
-+"拡張するにはパターンは長すぎます.\n"
-+"パターンの最後のデータが一部失われる事になります.続行しますか?"
-
- #: app/gui.c:555 app/instrument-editor.c:212 app/sample-editor.c:1719
- #: app/sample-editor.c:1915 app/sample-editor.c:1959
-@@ -1034,9 +1038,8 @@ msgid "Transpose octave down"
- msgstr "オクターブ下げる"
-
- #: app/menubar.c:526
--#, fuzzy
- msgid "P_aste"
--msgstr "貼付"
-+msgstr "貼付(_a)"
-
- #: app/menubar.c:531
- msgid "_Jazz Edit Mode"
-@@ -1087,14 +1090,12 @@ msgid "L_oad Pattern"
- msgstr "パターンを読み込み(_o)"
-
- #: app/menubar.c:599
--#, fuzzy
- msgid "Sh_rink Current Pattern"
--msgstr "現在のパターン"
-+msgstr "現在のパターンを縮小(_r)"
-
- #: app/menubar.c:601
--#, fuzzy
- msgid "_Expand Current Pattern"
--msgstr "現在のパターンを保存(_S)"
-+msgstr "現在のパターンを拡張(_E)"
-
- #: app/menubar.c:608
- msgid "_Toggle Current Channel Permanentness"