summaryrefslogtreecommitdiff
path: root/multimedia/subtitleeditor/patches
diff options
context:
space:
mode:
authorwiz <wiz>2007-09-08 11:33:55 +0000
committerwiz <wiz>2007-09-08 11:33:55 +0000
commitc74e475f2ed1ab782ef8178a0ec267f0f1238e21 (patch)
tree4b6ec6ec3b88b34947bc1df1729cdff802c1b6ec /multimedia/subtitleeditor/patches
parentb17b521e1fd5682ab999154b74d7c96ebdbca91c (diff)
downloadpkgsrc-c74e475f2ed1ab782ef8178a0ec267f0f1238e21.tar.gz
Initial import of subtitleeditor-0.13.6. Originally packaged for
pkgsrc-wip by Cesar Catrian C., updated by myself. Subtitle Editor is a GTK+2 tool to edit subtitles. It can be used for new subtitles or as a tool to transform, edit, correct and refine existing subtitle. This program also shows sound waves, which makes it easier to synchronise subtitles to voices. Subtitle Editor is free software released under the GNU General Public License (GPL).
Diffstat (limited to 'multimedia/subtitleeditor/patches')
-rw-r--r--multimedia/subtitleeditor/patches/patch-aa15
-rw-r--r--multimedia/subtitleeditor/patches/patch-ab36
2 files changed, 51 insertions, 0 deletions
diff --git a/multimedia/subtitleeditor/patches/patch-aa b/multimedia/subtitleeditor/patches/patch-aa
new file mode 100644
index 00000000000..9bba14ee436
--- /dev/null
+++ b/multimedia/subtitleeditor/patches/patch-aa
@@ -0,0 +1,15 @@
+$NetBSD: patch-aa,v 1.1.1.1 2007/09/08 11:33:55 wiz Exp $
+
+--- configure.orig 2007-04-29 10:33:12.000000000 +0000
++++ configure
+@@ -9117,8 +9117,8 @@ else
+ echo "${ECHO_T}no" >&6; }
+ fi
+
+-if test "$have_iso_code_639" == "yes"; then
+- if test "$have_iso_code_3166" == "yes"; then
++if test "$have_iso_code_639" = "yes"; then
++ if test "$have_iso_code_3166" = "yes"; then
+
+
+ cat >>confdefs.h <<\_ACEOF
diff --git a/multimedia/subtitleeditor/patches/patch-ab b/multimedia/subtitleeditor/patches/patch-ab
new file mode 100644
index 00000000000..87483525689
--- /dev/null
+++ b/multimedia/subtitleeditor/patches/patch-ab
@@ -0,0 +1,36 @@
+$NetBSD: patch-ab,v 1.1.1.1 2007/09/08 11:33:55 wiz Exp $
+
+--- src/MenuBar.cc.orig 2006-10-28 07:29:01.000000000 -0300
++++ src/MenuBar.cc 2007-04-15 15:23:18.000000000 -0400
+@@ -117,19 +117,25 @@
+ _("_Move Subtitles")), SIGNAL(on_move_subtitles));
+
+ m_refActionGroup->add(Gtk::Action::create("add-100-ms", Gtk::Stock::ADD,
+- _("Add 100 Milliseconds")), SIGNAL(on_add_100_ms));
++ _("Add 100 Milliseconds")),
++ Gtk::AccelKey(GDK_KP_Add, (Gdk::ModifierType)0), SIGNAL(on_add_100_ms));
+ m_refActionGroup->add(Gtk::Action::create("remove-100-ms", Gtk::Stock::REMOVE,
+- _("Remove 100 Milliseconds")), SIGNAL(on_remove_100_ms));
++ _("Remove 100 Milliseconds")),
++ Gtk::AccelKey(GDK_KP_Subtract, (Gdk::ModifierType)0), SIGNAL(on_remove_100_ms));
+
+ m_refActionGroup->add(Gtk::Action::create("add-100-ms-to-start", Gtk::Stock::ADD,
+- _("Add 100 Milliseconds To Start")), SIGNAL(on_add_100_ms_to_start));
++ _("Add 100 Milliseconds To Start")),
++ Gtk::AccelKey(GDK_KP_Add, Gdk::SHIFT_MASK), SIGNAL(on_add_100_ms_to_start));
+ m_refActionGroup->add(Gtk::Action::create("remove-100-ms-to-start", Gtk::Stock::REMOVE,
+- _("Remove 100 Milliseconds To Start")), SIGNAL(on_remove_100_ms_to_start));
++ _("Remove 100 Milliseconds To Start")),
++ Gtk::AccelKey(GDK_KP_Subtract, Gdk::SHIFT_MASK), SIGNAL(on_remove_100_ms_to_start));
+
+ m_refActionGroup->add(Gtk::Action::create("add-100-ms-to-duration", Gtk::Stock::ADD,
+- _("Add 100 Milliseconds To Duration")), SIGNAL(on_add_100_ms_to_duration));
++ _("Add 100 Milliseconds To Duration")),
++ Gtk::AccelKey(GDK_KP_Add, Gdk::CONTROL_MASK), SIGNAL(on_add_100_ms_to_duration));
+ m_refActionGroup->add(Gtk::Action::create("remove-100-ms-to-duration", Gtk::Stock::REMOVE,
+- _("Remove 100 Milliseconds To Duration")), SIGNAL(on_remove_100_ms_to_duration));
++ _("Remove 100 Milliseconds To Duration")),
++ Gtk::AccelKey(GDK_KP_Subtract, Gdk::CONTROL_MASK), SIGNAL(on_remove_100_ms_to_duration));
+
+ /*
+ m_refActionGroup->add(Gtk::Action::create("move-subtitle-text-forward", Gtk::Stock::GO_FORWARD,