~ubuntu-branches/ubuntu/natty/tilda/natty

« back to all changes in this revision

Viewing changes to debian/patches/01_general-fixes.dpatch

  • Committer: Bazaar Package Importer
  • Author(s): Davide Truffa
  • Date: 2007-11-11 21:28:51 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20071111212851-r7en873eocdv85bj
Tags: 0.09.4+cvs20071012-1
* New upstream release from CVS snapshot 20071012 (Closes: #446745, #432111)
  - removed old patch
  - added 01_general-fixes.patch to debianize this CVS snapshot
  - new build depends on: automake, cvs, flex, libglade2-dev
  - updated copyright file
  - updated README.Debian
* Added Italian translation (02_italian-translation.dpatch)
* Updated menu structure

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#! /bin/sh /usr/share/dpatch/dpatch-run
 
2
## 01_general-fixes.dpatch
 
3
##
 
4
## DP: Some fixes to debianize this CVS snapshot
 
5
 
 
6
@DPATCH@
 
7
 
 
8
diff -Nur tilda-0.09.5+cvs20071012-orig/src/wizard.c tilda-0.09.5+cvs20071012/src/wizard.c
 
9
--- tilda-0.09.5+cvs20071012-orig/src/wizard.c  2007-10-25 00:25:08.000000000 +0000
 
10
+++ tilda-0.09.5+cvs20071012/src/wizard.c       2007-11-11 14:57:30.000000000 +0000
 
11
@@ -67,7 +67,7 @@
 
12
     DEBUG_ASSERT (ltw != NULL);
 
13
 
 
14
     gchar *window_title;
 
15
-    const gchar *glade_file = g_build_filename (DATADIR, "tilda.glade", NULL);
 
16
+    const gchar *glade_file = g_build_filename (DATADIR, "tilda/tilda.glade", NULL);
 
17
     GtkWidget *wizard_window;
 
18
 
 
19
     /* Make sure that there isn't already a wizard showing */
 
20
diff -Nur tilda-0.09.5+cvs20071012-orig/tilda.desktop.in tilda-0.09.5+cvs20071012/tilda.desktop.in
 
21
--- tilda-0.09.5+cvs20071012-orig/tilda.desktop.in      2007-11-11 14:19:05.000000000 +0000
 
22
+++ tilda-0.09.5+cvs20071012/tilda.desktop.in   2007-11-11 14:10:41.000000000 +0000
 
23
@@ -1,8 +1,7 @@
 
24
 [Desktop Entry]
 
25
-Encoding=UTF-8
 
26
 Name=Tilda
 
27
-Exec=@BINDIR@/tilda
 
28
+Exec=tilda
 
29
-Icon=@PIXMAPSDIR@/tilda.png
 
30
+Icon=tilda.png
 
31
 Terminal=false
 
32
 Type=Application
 
33
-Categories=GNOME;GTK;Application;Utility;TerminalEmulator;
 
34
+Categories=GTK;Utility;TerminalEmulator
 
35
diff -Nur tilda-0.09.5+cvs20071012-orig/src/configsys.c tilda-0.09.5+cvs20071012/src/configsys.c
 
36
--- tilda-0.09.5+cvs20071012-orig/src/configsys.c       2007-10-25 00:25:08.000000000 +0000
 
37
+++ tilda-0.09.5+cvs20071012/src/configsys.c    2007-11-11 14:57:30.000000000 +0000
 
38
@@ -23,12 +23,12 @@
 
39
     CFG_STR("tilda_config_version", PACKAGE_VERSION, CFGF_NONE),
 
40
     CFG_STR("image", NULL, CFGF_NONE),
 
41
     CFG_STR("command", "", CFGF_NONE),
 
42
-    CFG_STR("font", "Monospace 13", CFGF_NONE),
 
43
+    CFG_STR("font", "Monospace 12", CFGF_NONE),
 
44
     CFG_STR("key", NULL, CFGF_NONE),
 
45
     CFG_STR("title", "Tilda", CFGF_NONE),
 
46
     CFG_STR("background_color", "white", CFGF_NONE),
 
47
     CFG_STR("working_dir", NULL, CFGF_NONE),
 
48
-    CFG_STR("web_browser", "firefox", CFGF_NONE),
 
49
+    CFG_STR("web_browser", "iceweasel", CFGF_NONE),
 
50
 
 
51
     /* ints */
 
52
     CFG_INT("lines", 100, CFGF_NONE),
 
53
@@ -43,7 +43,7 @@
 
54
     CFG_INT("backspace_key", 0, CFGF_NONE),
 
55
     CFG_INT("delete_key", 1, CFGF_NONE),
 
56
     CFG_INT("d_set_title", 3, CFGF_NONE),
 
57
-    CFG_INT("command_exit", 0, CFGF_NONE),
 
58
+    CFG_INT("command_exit", 2, CFGF_NONE),
 
59
     CFG_INT("scheme", 3, CFGF_NONE),
 
60
     CFG_INT("slide_sleep_usec", 15000, CFGF_NONE),
 
61
     CFG_INT("animation_orientation", 0, CFGF_NONE),