~ubuntu-branches/ubuntu/natty/hello-debhelper/natty

« back to all changes in this revision

Viewing changes to src/hello.c

  • Committer: Bazaar Package Importer
  • Author(s): Santiago Vila
  • Date: 2010-02-14 18:41:54 UTC
  • mfrom: (4.1.5 sid)
  • Revision ID: james.westby@ubuntu.com-20100214184154-ofmlsf2ddrgb1etg
Tags: 2.5-1
* New upstream release.
* Added homepage field to control file.
* Added cross-compilation support, using the new dh_auto_* commands
  from debhelper 7. Thanks a lot to Colin Watson. Closes: #550328.
* Standards-Version: 3.8.4 (no special changes for this).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* hello.c -- print a greeting message and exit.
2
2
 
3
3
   Copyright 1992, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2005,
4
 
   2006, 2007, 2008 Free Software Foundation, Inc.
 
4
   2006, 2007, 2008, 2010 Free Software Foundation, Inc.
5
5
 
6
6
   This program is free software: you can redistribute it and/or modify
7
7
   it under the terms of the GNU General Public License as published by
171
171
  -g, --greeting=TEXT     use TEXT as the greeting message\n"), stdout);
172
172
 
173
173
  printf ("\n");
174
 
  /* TRANSLATORS: --help output 5 (end)
 
174
  /* TRANSLATORS: --help output 5+ (reports)
175
175
     TRANSLATORS: the placeholder indicates the bug-reporting address
176
176
     for this application.  Please add _another line_ with the
177
177
     address for translation bugs.
178
178
     no-wrap */
179
179
  printf (_("\
180
 
Report bugs to <%s>.\n"), PACKAGE_BUGREPORT);
 
180
Report bugs to: %s\n"), PACKAGE_BUGREPORT);
 
181
#ifdef PACKAGE_PACKAGER_BUG_REPORTS
 
182
  printf (_("Report %s bugs to: %s\n"), PACKAGE_PACKAGER,
 
183
          PACKAGE_PACKAGER_BUG_REPORTS);
 
184
#endif
 
185
#ifdef PACKAGE_URL
 
186
  printf (_("%s home page: <%s>\n"), PACKAGE_NAME, PACKAGE_URL);
 
187
#else
 
188
  printf (_("%s home page: <http://www.gnu.org/software/%s/>\n"),
 
189
          PACKAGE_NAME, PACKAGE);
 
190
#endif
 
191
  fputs (_("General help using GNU software: <http://www.gnu.org/gethelp/>\n"),
 
192
         stdout);
181
193
}
182
194
 
183
195
 
199
211
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>\n\
200
212
This is free software: you are free to change and redistribute it.\n\
201
213
There is NO WARRANTY, to the extent permitted by law.\n"),
202
 
              "2008");
 
214
              "2010");
203
215
}