Package: gnome-terminal
Version: 3.4.1.1-2
Severity: normal

Dear Maintainer,

gnome-terminal.wrapper does not handler -x option. This option is used by
nautilus-open-terminal package; in my case it runs "x-terminal-emulator -x
...". The attached patch fixes the problem for me.

Best regards,
-Michal

-- System Information:
Debian Release: wheezy/sid
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 3.5.4 (SMP w/4 CPU cores; PREEMPT)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages gnome-terminal depends on:
ii  gconf-service              3.2.5-1+build1
ii  gnome-terminal-data        3.4.1.1-2
ii  gsettings-desktop-schemas  3.4.2-2
ii  libatk1.0-0                2.4.0-2
ii  libc6                      2.13-37
ii  libgconf-2-4               3.2.5-1+build1
ii  libgdk-pixbuf2.0-0         2.26.1-1
ii  libglib2.0-0               2.33.12+really2.32.4-3
ii  libgtk-3-0                 3.4.2-4
ii  libice6                    2:1.0.8-2
ii  libpango1.0-0              1.30.0-1
ii  libsm6                     2:1.2.1-2
ii  libvte-2.90-9              1:0.32.2-1
ii  libx11-6                   2:1.5.0-1

Versions of packages gnome-terminal recommends:
ii  dbus-x11  1.6.8-1
ii  gvfs      1.12.3-1+b1
ii  yelp      3.4.2-1+b1

gnome-terminal suggests no packages.

-- no debconf information

-- debsums errors found:
debsums: changed file /usr/bin/gnome-terminal.wrapper (from gnome-terminal 
package)
diff --git a/debian/gnome-terminal.wrapper b/debian/gnome-terminal.wrapper
index ef3b75f..28c68d1 100644
--- a/debian/gnome-terminal.wrapper
+++ b/debian/gnome-terminal.wrapper
@@ -69,6 +69,11 @@ while ($opt = shift(@ARGV))
 	}
 	last;
     }
+    elsif ($opt eq '-x')
+    {
+	push(@args, '-x', @ARGV);
+	last;
+    }
     elsif ($opt eq '-h' || $opt eq '--help')
     {
 	push(@args, '--help');

Reply via email to