[pkg-wpa-devel] r936 - in /wpasupplicant/trunk/debian: changelog patches/41_wpa_gui_docbook_manpage.patch patches/series wpa_gui.8 wpagui.manpages

kelmo-guest at users.alioth.debian.org kelmo-guest at users.alioth.debian.org
Wed Dec 26 04:55:29 UTC 2007


Author: kelmo-guest
Date: Wed Dec 26 04:55:29 2007
New Revision: 936

URL: http://svn.debian.org/wsvn/pkg-wpa/?sc=1&rev=936
Log:
* Impliment wpa_gui manpage as a patch against upstream. This will make it
  easier to submit to upstream for inclusion in the future.

Added:
    wpasupplicant/trunk/debian/patches/41_wpa_gui_docbook_manpage.patch
Removed:
    wpasupplicant/trunk/debian/wpa_gui.8
Modified:
    wpasupplicant/trunk/debian/changelog
    wpasupplicant/trunk/debian/patches/series
    wpasupplicant/trunk/debian/wpagui.manpages

Modified: wpasupplicant/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-wpa/wpasupplicant/trunk/debian/changelog?rev=936&op=diff
==============================================================================
--- wpasupplicant/trunk/debian/changelog (original)
+++ wpasupplicant/trunk/debian/changelog Wed Dec 26 04:55:29 2007
@@ -44,8 +44,10 @@
   * Impliment debian/examples/wpa_supplicant.conf.template in patch form. It
     is planned to expand this small template into a more usable and
     documented beginning point for the wpa-roam schema.
-
- -- Kel Modderman <kel at otaku42.de>  Wed, 26 Dec 2007 14:44:06 +1000
+  * Impliment wpa_gui manpage as a patch against upstream. This will make it
+    easier to submit to upstream for inclusion in the future.
+
+ -- Kel Modderman <kel at otaku42.de>  Wed, 26 Dec 2007 14:49:31 +1000
 
 wpasupplicant (0.6.1~git20071119-1) unstable; urgency=low
 

Added: wpasupplicant/trunk/debian/patches/41_wpa_gui_docbook_manpage.patch
URL: http://svn.debian.org/wsvn/pkg-wpa/wpasupplicant/trunk/debian/patches/41_wpa_gui_docbook_manpage.patch?rev=936&op=file
==============================================================================
--- wpasupplicant/trunk/debian/patches/41_wpa_gui_docbook_manpage.patch (added)
+++ wpasupplicant/trunk/debian/patches/41_wpa_gui_docbook_manpage.patch Wed Dec 26 04:55:29 2007
@@ -1,0 +1,98 @@
+--- a/wpa_supplicant/doc/docbook/Makefile
++++ b/wpa_supplicant/doc/docbook/Makefile
+@@ -2,6 +2,7 @@
+ 
+ FILES += wpa_background
+ FILES += wpa_cli
++FILES += wpa_gui
+ FILES += wpa_passphrase
+ FILES += wpa_supplicant.conf
+ FILES += wpa_supplicant
+@@ -18,7 +19,7 @@
+ 
+ 
+ clean:
+-	rm -f wpa_background.8 wpa_cli.8 wpa_passphrase.8 wpa_supplicant.8
++	rm -f wpa_background.8 wpa_cli.8 wpa_gui.8 wpa_passphrase.8 wpa_supplicant.8
+ 	rm -f wpa_supplicant.conf.5
+ 	rm -f manpage.links manpage.refs
+ 	rm -f $(FILES:%=%.pdf)
+--- /dev/null
++++ b/wpa_supplicant/doc/docbook/wpa_gui.sgml
+@@ -0,0 +1,76 @@
++<!doctype refentry PUBLIC "-//OASIS//DTD DocBook V4.1//EN">
++
++<refentry>
++  <refmeta>
++    <refentrytitle>wpa_gui</refentrytitle>
++    <manvolnum>8</manvolnum>
++  </refmeta>
++  <refnamediv>
++    <refname>wpa_gui</refname>
++
++    <refpurpose>WPA Graphical User Interface</refpurpose>
++  </refnamediv>
++
++  <refsynopsisdiv>
++    <cmdsynopsis>
++      <command>wpa_gui</command>
++      <arg>-p <replaceable>path to ctrl sockets</replaceable></arg>
++      <arg>-i <replaceable>ifname</replaceable></arg>
++    </cmdsynopsis>
++  </refsynopsisdiv>
++
++  <refsect1>
++    <title>Overview</title>
++
++    <para>wpa_cgui is a QT graphical frontend program for interacting
++    with wpa_supplicant. It is used to query current status, change
++    configuration and request interactive user input.</para>
++
++    <para>wpa_gui supports (almost) all of the interactive status and
++    configuration features of the command line client, wpa_cli. Refer
++    to the wpa_cli manpage for a comprehensive list of the
++    interactive mode features.</para>
++  </refsect1>
++  <refsect1>
++    <title>Command Arguments</title>
++    <variablelist>
++      <varlistentry>
++	<term>-p path</term>
++
++	<listitem><para>Change the path where control sockets should
++	be found.</para></listitem>
++      </varlistentry>
++
++      <varlistentry>
++	<term>-i ifname</term>
++
++        <listitem><para>Specify the interface that is being
++	configured. By default, choose the first interface found with
++	a control socket in the socket path.</para></listitem>
++      </varlistentry>
++    </variablelist>
++  </refsect1>
++  <refsect1>
++    <title>See Also</title>
++    <para>
++      <citerefentry>
++	<refentrytitle>wpa_cli</refentrytitle>
++	<manvolnum>8</manvolnum>
++      </citerefentry>
++      <citerefentry>
++	<refentrytitle>wpa_supplicant</refentrytitle>
++	<manvolnum>8</manvolnum>
++      </citerefentry>
++    </para>
++  </refsect1>
++  <refsect1>
++    <title>Legal</title>
++    <para>wpa_supplicant is copyright (c) 2003-2007,
++    Jouni Malinen <email>j at w1.fi</email> and
++    contributors.
++    All Rights Reserved.</para>
++
++    <para>This program is dual-licensed under both the GPL version 2
++    and BSD license. Either license may be used at your option.</para>
++  </refsect1>
++</refentry>

Modified: wpasupplicant/trunk/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-wpa/wpasupplicant/trunk/debian/patches/series?rev=936&op=diff
==============================================================================
--- wpasupplicant/trunk/debian/patches/series (original)
+++ wpasupplicant/trunk/debian/patches/series Wed Dec 26 04:55:29 2007
@@ -7,3 +7,4 @@
 30_wpa_gui_const_char_warnings.patch
 31_pcsc_funcs_printf_warnings.patch
 40_log_to_specific_file.patch
+41_wpa_gui_docbook_manpage.patch

Modified: wpasupplicant/trunk/debian/wpagui.manpages
URL: http://svn.debian.org/wsvn/pkg-wpa/wpasupplicant/trunk/debian/wpagui.manpages?rev=936&op=diff
==============================================================================
--- wpasupplicant/trunk/debian/wpagui.manpages (original)
+++ wpasupplicant/trunk/debian/wpagui.manpages Wed Dec 26 04:55:29 2007
@@ -1,1 +1,1 @@
-debian/wpa_gui.8
+wpa_supplicant/doc/docbook/wpa_gui.8




More information about the Pkg-wpa-devel mailing list