summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiloslav Trmač <mitr@redhat.com>2013-04-20 01:13:36 +0200
committerMiloslav Trmač <mitr@redhat.com>2013-05-13 17:41:37 +0200
commitb348673c27636a60da4459d0ea392b115db0681a (patch)
tree14878d8dacc0353392cb5de8e912c34d9f9fc6cb
parent30b08c656e1c13599ca365f0c75b846881bad4ab (diff)
downloadpolkit-b348673c27636a60da4459d0ea392b115db0681a.tar.gz
Add bug reporting address and home page to --help output
... as required by GNU coding standards. https://bugs.freedesktop.org/show_bug.cgi?id=29936
-rw-r--r--configure.ac2
-rw-r--r--src/programs/pkaction.c6
-rw-r--r--src/programs/pkcheck.c5
-rw-r--r--src/programs/pkexec.c6
-rw-r--r--src/programs/pkttyagent.c6
5 files changed, 22 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac
index 786c542..a10be61 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,7 +1,7 @@
dnl Process this file with autoconf to produce a configure script.
AC_PREREQ(2.59c)
-AC_INIT([polkit], [0.111], [http://lists.freedesktop.org/mailman/listinfo/polkit-devel])
+AC_INIT([polkit], [0.111], [http://lists.freedesktop.org/mailman/listinfo/polkit-devel], , [http://www.freedesktop.org/wiki/Software/polkit])
AM_INIT_AUTOMAKE([])
AC_CONFIG_HEADERS(config.h)
AM_MAINTAINER_MODE
diff --git a/src/programs/pkaction.c b/src/programs/pkaction.c
index f2969cc..3778b33 100644
--- a/src/programs/pkaction.c
+++ b/src/programs/pkaction.c
@@ -90,6 +90,7 @@ main (int argc, char *argv[])
{
guint ret;
gchar *opt_action_id;
+ gchar *s;
gboolean opt_show_version;
gboolean opt_verbose;
GOptionEntry options[] =
@@ -127,6 +128,11 @@ main (int argc, char *argv[])
error = NULL;
context = g_option_context_new (N_("[--action-id ACTION]"));
+ s = g_strdup_printf (_("Report bugs to: %s\n"
+ "%s home page: <%s>"), PACKAGE_BUGREPORT,
+ PACKAGE_NAME, PACKAGE_URL);
+ g_option_context_set_description (context, s);
+ g_free (s);
g_option_context_add_main_entries (context, options, GETTEXT_PACKAGE);
if (!g_option_context_parse (context, &argc, &argv, &error))
{
diff --git a/src/programs/pkcheck.c b/src/programs/pkcheck.c
index 20713cc..ebb375e 100644
--- a/src/programs/pkcheck.c
+++ b/src/programs/pkcheck.c
@@ -48,7 +48,10 @@ help (void)
" --revoke-temp Revoke all temporary authorizations for current session\n"
" -s, --system-bus-name=BUS_NAME Check authorization of owner of BUS_NAME\n"
" --version Show version\n"
- "\n"));
+ "\n"
+ "Report bugs to: %s\n"
+ "%s home page: <%s>\n"), PACKAGE_BUGREPORT, PACKAGE_NAME,
+ PACKAGE_URL);
}
static gchar *
diff --git a/src/programs/pkexec.c b/src/programs/pkexec.c
index 529898a..005e1fe 100644
--- a/src/programs/pkexec.c
+++ b/src/programs/pkexec.c
@@ -77,7 +77,11 @@ usage (int argc, char *argv[])
" --disable-internal-agent |\n"
" [--user username] PROGRAM [ARGUMENTS...]\n"
"\n"
- "See the pkexec manual page for more details.\n");
+ "See the pkexec manual page for more details.\n"
+ "\n"
+ "Report bugs to: %s\n"
+ "%s home page: <%s>\n", PACKAGE_BUGREPORT, PACKAGE_NAME,
+ PACKAGE_URL);
}
/* ---------------------------------------------------------------------------------------------------- */
diff --git a/src/programs/pkttyagent.c b/src/programs/pkttyagent.c
index 7bd8031..ba09973 100644
--- a/src/programs/pkttyagent.c
+++ b/src/programs/pkttyagent.c
@@ -63,6 +63,7 @@ main (int argc, char *argv[])
{ NULL, 0, 0, 0, NULL, NULL, NULL }
};
GOptionContext *context;
+ gchar *s;
PolkitAuthority *authority = NULL;
PolkitSubject *subject = NULL;
gpointer local_agent_handle = NULL;
@@ -77,6 +78,11 @@ main (int argc, char *argv[])
error = NULL;
context = g_option_context_new ("");
+ s = g_strdup_printf (_("Report bugs to: %s\n"
+ "%s home page: <%s>"), PACKAGE_BUGREPORT,
+ PACKAGE_NAME, PACKAGE_URL);
+ g_option_context_set_description (context, s);
+ g_free (s);
g_option_context_add_main_entries (context, options, GETTEXT_PACKAGE);
if (!g_option_context_parse (context, &argc, &argv, &error))
{