~ubuntu-branches/ubuntu/oneiric/irssi/oneiric

« back to all changes in this revision

Viewing changes to debian/patches/03firsttimer_text.dpatch

  • Committer: Bazaar Package Importer
  • Author(s): Emilio Pozuelo Monfort
  • Date: 2007-11-02 18:13:28 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20071102181328-vg4v2tuqeviu16g9
Tags: 0.8.12-2ubuntu1
* Merge with Debian, remaining Ubuntu changes:
  - Added debian/patches/90irc-ubuntu-com.dpatch (Launchpad #52690).
  - Modify Maintainer value to match the DebianMaintainerField spec.
  - debian/irssi.prerm: Do not alternative. LP: #67698.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#! /bin/sh /usr/share/dpatch/dpatch-run
 
2
## firsttimer_text.dpatch by Gerfried Fuchs <rhonda@debian.at>
 
3
##
 
4
## All lines beginning with `## DP:' are a description of the patch.
 
5
## DP: add hint about #debian to first time user message, BTS #393707
 
6
 
 
7
@DPATCH@
 
8
diff -urNad irssi-0.8.12~/src/fe-text/irssi.c irssi-0.8.12/src/fe-text/irssi.c
 
9
--- irssi-0.8.12~/src/fe-text/irssi.c   2007-10-06 11:38:20.000000000 +0200
 
10
+++ irssi-0.8.12/src/fe-text/irssi.c    2007-10-18 00:04:38.000000000 +0200
 
11
@@ -82,6 +82,8 @@
 
12
 static GMainLoop *main_loop;
 
13
 int quitting;
 
14
 
 
15
+/* add debian informations for first time users,
 
16
+ * see debian bug #393707 */
 
17
 static const char *firsttimer_text =
 
18
        "Looks like this is the first time you've run irssi.\n"
 
19
        "This is just a reminder that you really should go read\n"
 
20
@@ -89,7 +91,11 @@
 
21
        "and more irssi beginner info at http://irssi.org/help/\n"
 
22
        "\n"
 
23
        "For the truly impatient people who don't like any automatic\n"
 
24
-       "window creation or closing, just type: /MANUAL-WINDOWS";
 
25
+       "window creation or closing, just type: /MANUAL-WINDOWS\n"
 
26
+       "\n"
 
27
+       "For Debian specific help type \"/connect irc.debian.org\"\n"
 
28
+       "and \"/join #debian\" (without the quotes) and ask your\n"
 
29
+       "question.";
 
30
 static int display_firsttimer = FALSE;
 
31
 
 
32