[SCM] Seamless communication between many kinds of Unix branch, debian, updated. d0542d8fc94c6a80db2ba9544532c146f3381aa4

Ole Streicher debian at liska.ath.cx
Fri Feb 3 09:59:53 UTC 2012


The following commit has been merged in the debian branch:
commit 66ab07d49d9400d22edef996918b75d39e24393b
Author: Ole Streicher <debian at liska.ath.cx>
Date:   Fri Feb 3 10:37:59 2012 +0100

    Fix manpage sections: special pages (like intro etc.) now go to man7.

diff --git a/debian/libxpa-dev.install b/debian/libxpa-dev.install
index 7187096..b37c328 100644
--- a/debian/libxpa-dev.install
+++ b/debian/libxpa-dev.install
@@ -1,40 +1,41 @@
-usr/share/man/man3/xpacommon.3
-usr/share/man/man3/xpaname.3
 usr/share/man/man3/xpacmdadd.3
-usr/share/man/man3/xpainet.3
 usr/share/man/man3/xpafree.3
 usr/share/man/man3/xpamacros.3
 usr/share/man/man3/xpamainloop.3
 usr/share/man/man3/xpacmdnew.3
 usr/share/man/man3/xpainfonew.3
 usr/share/man/man3/xpaopen.3
-usr/share/man/man3/xpaxt.3
-usr/share/man/man3/xpausers.3
-usr/share/man/man3/xpaintro.3
-usr/share/man/man3/xpamethod.3
 usr/share/man/man3/xpacleanup.3
-usr/share/man/man3/xpaacl.3
 usr/share/man/man3/xpapoll.3
-usr/share/man/man3/xpatemplate.3
 usr/share/man/man3/xpaserver.3
 usr/share/man/man3/xpanew.3
 usr/share/man/man3/xpaclose.3
 usr/share/man/man3/xpaset.3
-usr/share/man/man3/xpaconvert.3
 usr/share/man/man3/xpaatexit.3
 usr/share/man/man3/xpaclient.3
-usr/share/man/man3/xpaoom.3
 usr/share/man/man3/xpasetfd.3
 usr/share/man/man3/xpagetfd.3
-usr/share/man/man3/xpaenv.3
 usr/share/man/man3/xparace.3
 usr/share/man/man3/xpaget.3
 usr/share/man/man3/xpaaccess.3
-usr/share/man/man3/xpa.3
 usr/share/man/man3/xpacmddel.3
 usr/share/man/man3/xpanslookup.3
 usr/share/man/man3/xpainfo.3
-usr/share/man/man3/xpacode.3
+usr/share/man/man7/xpachanges.7
+usr/share/man/man7/xpacommon.7
+usr/share/man/man7/xpaacl.7
+usr/share/man/man7/xpacode.7
+usr/share/man/man7/xpaconvert.7
+usr/share/man/man7/xpaenv.7
+usr/share/man/man7/xpainet.7
+usr/share/man/man7/xpaintro.7
+usr/share/man/man7/xpamethod.7
+usr/share/man/man7/xpa.7
+usr/share/man/man7/xpaname.7
+usr/share/man/man7/xpaoom.7
+usr/share/man/man7/xpatemplate.7
+usr/share/man/man7/xpausers.7
+usr/share/man/man7/xpaxt.7
 usr/include/xpa.h
 usr/include/prsetup.h
 usr/lib/libxpa.a
diff --git a/debian/patches/fix_manpages.patch b/debian/patches/fix_manpages.patch
index 3071c16..3ce6cc1 100644
--- a/debian/patches/fix_manpages.patch
+++ b/debian/patches/fix_manpages.patch
@@ -3,7 +3,7 @@ Description: Fix manpages (section, name, and spellfixes) so that lintian
  does not complain
 --- a/Makefile.in
 +++ b/Makefile.in
-@@ -296,14 +296,14 @@ install-binaries: $(LIB) $(PROGS)
+@@ -296,14 +296,22 @@ install-binaries: $(LIB) $(PROGS)
  install-man:
  	@if [ ! -d $(MAN_INSTALL_DIR) ] ; then \
  	    echo "Making directory $(MAN_INSTALL_DIR)"; \
@@ -16,8 +16,16 @@ Description: Fix manpages (section, name, and spellfixes) so that lintian
  	    do \
 -		B=`basename $$i`; \
 -		E=`echo $$i | awk -F. '{print $$NF}'`; \
-+		B=`basename $$i|sed s/tcl\\\\.n/.3tcl/|sed s/\\\\.n/.3/`; \
-+		E=`echo $$i | awk -F. '{print $$NF}' | sed s/n/3/`; \
++		B=`basename $$i | sed s/\\\\.n/.7/`; \
++		E=`echo $$i | awk -F. '{print $$NF}' | sed s/n/7/`; \
++		case $$B in \
++			xpatcl.7) \
++				B=xpa.3tcl; \
++				E=3;; \
++			xpachanges.1) \
++				B=xpachanges.7; \
++				E=7;; \
++		esac; \
  		M="$(MAN_INSTALL_DIR)/man$$E"; \
  		if [ ! -d $$M ] ; then \
  		    echo "Making directory $$M"; \
@@ -67,11 +75,22 @@ Description: Fix manpages (section, name, and spellfixes) so that lintian
  .Ve
  .PP
  The first argument is the short delay value, and is ignored in this
+@@ -196,4 +196,4 @@ control (only for servers using version 2.1 and above) and also
+ returns the real status of xpans.
+ .SH "SEE ALSO"
+ .IX Header "SEE ALSO"
+-See xpa(n) for a list of \s-1XPA\s0 help pages
++See xpa(7) for a list of \s-1XPA\s0 help pages
 --- a/man/man1/xpachanges.1
 +++ b/man/man1/xpachanges.1
-@@ -131,7 +131,7 @@
- .IX Title "xpachanges 1"
- .TH xpachanges 1 "April 14, 2011" "version 2.1.13" "SAORD Documentation"
+@@ -128,10 +128,10 @@
+ .rm #[ #] #H #V #F C
+ .\" ========================================================================
+ .\"
+-.IX Title "xpachanges 1"
+-.TH xpachanges 1 "April 14, 2011" "version 2.1.13" "SAORD Documentation"
++.IX Title "xpachanges 7"
++.TH xpachanges 7 "April 14, 2011" "version 2.1.13" "SAORD Documentation"
  .SH "NAME"
 -\&\fBXPA Changes: Changes For Users from XPA 1.0 and 2.0\fR
 +XPAChanges \- Changes For Users from XPA 1.0 and 2.0
@@ -87,7 +106,7 @@ Description: Fix manpages (section, name, and spellfixes) so that lintian
  .Ve
  .IP "\(bu" 4
  The old \-w switch in xpaset and xpaget is no longer necessary (and is
-@@ -172,7 +172,7 @@ an xpa access point at one time.
+@@ -172,10 +172,10 @@ an xpa access point at one time.
  The new \-p switch on xpaset means you need not read from stdout:
  .Sp
  .Vb 1
@@ -96,6 +115,10 @@ Description: Fix manpages (section, name, and spellfixes) so that lintian
  .Ve
  .Sp
  will send the paramlist to the SAOtng callback without reading from stdin.
+ .SH "SEE ALSO"
+ .IX Header "SEE ALSO"
+-See xpa(n) for a list of \s-1XPA\s0 help pages
++See xpa(7) for a list of \s-1XPA\s0 help pages
 --- a/man/man1/xpaget.1
 +++ b/man/man1/xpaget.1
 @@ -131,21 +131,21 @@
@@ -129,6 +152,12 @@ Description: Fix manpages (section, name, and spellfixes) so that lintian
  .Ve
  .SH "DESCRIPTION"
  .IX Header "DESCRIPTION"
+@@ -162,4 +162,4 @@ A set of qualifying parameters can be appended.
+ .Ve
+ .SH "SEE ALSO"
+ .IX Header "SEE ALSO"
+-See xpa(n) for a list of \s-1XPA\s0 help pages
++See xpa(7) for a list of \s-1XPA\s0 help pages
 --- a/man/man1/xpainfo.1
 +++ b/man/man1/xpainfo.1
 @@ -131,21 +131,21 @@
@@ -162,6 +191,12 @@ Description: Fix manpages (section, name, and spellfixes) so that lintian
  .Ve
  .SH "DESCRIPTION"
  .IX Header "DESCRIPTION"
+@@ -161,4 +161,4 @@ A set of qualifying parameters can be appended.
+ .Ve
+ .SH "SEE ALSO"
+ .IX Header "SEE ALSO"
+-See xpa(n) for a list of \s-1XPA\s0 help pages
++See xpa(7) for a list of \s-1XPA\s0 help pages
 --- a/man/man1/xpamb.1
 +++ b/man/man1/xpamb.1
 @@ -131,7 +131,7 @@
@@ -251,6 +286,12 @@ Description: Fix manpages (section, name, and spellfixes) so that lintian
  .Ve
  .PP
  then the info will be returned, followed by the data. Note that it is an
+@@ -323,4 +323,4 @@ is equivalent to:
+ .Ve
+ .SH "SEE ALSO"
+ .IX Header "SEE ALSO"
+-See xpa(n) for a list of \s-1XPA\s0 help pages
++See xpa(7) for a list of \s-1XPA\s0 help pages
 --- a/man/man1/xpans.1
 +++ b/man/man1/xpans.1
 @@ -131,23 +131,23 @@
@@ -316,6 +357,12 @@ Description: Fix manpages (section, name, and spellfixes) so that lintian
  .Ve
  .PP
  When this is done, host2 can use xpaset, xpaget, and xpainfo calls to
+@@ -329,4 +329,4 @@ http://hea\-www.harvard.edu/saord/ds9 for more details). As always, please
+ contact us if you have problems or questions.
+ .SH "SEE ALSO"
+ .IX Header "SEE ALSO"
+-See xpa(n) for a list of \s-1XPA\s0 help pages
++See xpa(7) for a list of \s-1XPA\s0 help pages
 --- a/man/man1/xpaset.1
 +++ b/man/man1/xpaset.1
 @@ -131,23 +131,23 @@
@@ -371,6 +418,12 @@ Description: Fix manpages (section, name, and spellfixes) so that lintian
  \&  xpaset ds9 colormap I8
  \&  ^D
  \&  xpaset ds9 regions
+@@ -215,4 +215,4 @@ sent in this way.
+ .Ve
+ .SH "SEE ALSO"
+ .IX Header "SEE ALSO"
+-See xpa(n) for a list of \s-1XPA\s0 help pages
++See xpa(7) for a list of \s-1XPA\s0 help pages
 --- a/man/man3/xpaaccess.3
 +++ b/man/man3/xpaaccess.3
 @@ -131,8 +131,7 @@
@@ -383,6 +436,12 @@ Description: Fix manpages (section, name, and spellfixes) so that lintian
  .SH "SYNOPSIS"
  .IX Header "SYNOPSIS"
  .Vb 1
+@@ -233,4 +232,4 @@ in order to return the data anyway.  It is here for completion (and perhaps
+ for future usefulness).
+ .SH "SEE ALSO"
+ .IX Header "SEE ALSO"
+-See xpa(n) for a list of \s-1XPA\s0 help pages
++See xpa(7) for a list of \s-1XPA\s0 help pages
 --- a/man/man3/xpaatexit.3
 +++ b/man/man3/xpaatexit.3
 @@ -131,7 +131,7 @@
@@ -405,6 +464,12 @@ Description: Fix manpages (section, name, and spellfixes) so that lintian
  .SH "SYNOPSIS"
  .IX Header "SYNOPSIS"
  .Vb 1
+@@ -151,4 +151,4 @@ program didn't free some memory it could have\*(R". Calling the
+ and make valgrind happy.
+ .SH "SEE ALSO"
+ .IX Header "SEE ALSO"
+-See xpa(n) for a list of \s-1XPA\s0 help pages
++See xpa(7) for a list of \s-1XPA\s0 help pages
 --- a/man/man3/xpaclient.3
 +++ b/man/man3/xpaclient.3
 @@ -131,7 +131,7 @@
@@ -425,6 +490,12 @@ Description: Fix manpages (section, name, and spellfixes) so that lintian
  .Ve
  .PP
  \&\s-1XPA\s0 has been compiled using both C and \*(C+ compilers.
+@@ -222,4 +222,4 @@ is used to specify the access point name (e.g., \*(L"ds9*\*(R"), then
+ communication will take place with all servers matching that template.
+ .SH "SEE ALSO"
+ .IX Header "SEE ALSO"
+-See xpa(n) for a list of \s-1XPA\s0 help pages
++See xpa(7) for a list of \s-1XPA\s0 help pages
 --- a/man/man3/xpaclose.3
 +++ b/man/man3/xpaclose.3
 @@ -131,7 +131,7 @@
@@ -436,6 +507,12 @@ Description: Fix manpages (section, name, and spellfixes) so that lintian
  .SH "SYNOPSIS"
  .IX Header "SYNOPSIS"
  .Vb 1
+@@ -159,4 +159,4 @@ to all \s-1XPA\s0 servers that were opened using this handle.
+ .Ve
+ .SH "SEE ALSO"
+ .IX Header "SEE ALSO"
+-See xpa(n) for a list of \s-1XPA\s0 help pages
++See xpa(7) for a list of \s-1XPA\s0 help pages
 --- a/man/man3/xpacmdadd.3
 +++ b/man/man3/xpacmdadd.3
 @@ -131,7 +131,7 @@
@@ -464,6 +541,12 @@ Description: Fix manpages (section, name, and spellfixes) so that lintian
  .Ve
  .PP
  Also, the acl keyword in the send_mode and receive_mode strings is
+@@ -174,4 +174,4 @@ strings for each command in a command access point. (The acl for
+ send_mode need not be the same as the acl for receive_mode, though).
+ .SH "SEE ALSO"
+ .IX Header "SEE ALSO"
+-See xpa(n) for a list of \s-1XPA\s0 help pages
++See xpa(7) for a list of \s-1XPA\s0 help pages
 --- a/man/man3/xpacmddel.3
 +++ b/man/man3/xpacmddel.3
 @@ -131,7 +131,7 @@
@@ -475,6 +558,12 @@ Description: Fix manpages (section, name, and spellfixes) so that lintian
  .SH "SYNOPSIS"
  .IX Header "SYNOPSIS"
  .Vb 1
+@@ -147,4 +147,4 @@ This routine removes a command from the list of available commands in
+ a given \s-1XPA\s0.  That command will no longer be available for processing.
+ .SH "SEE ALSO"
+ .IX Header "SEE ALSO"
+-See xpa(n) for a list of \s-1XPA\s0 help pages
++See xpa(7) for a list of \s-1XPA\s0 help pages
 --- a/man/man3/xpacmdnew.3
 +++ b/man/man3/xpacmdnew.3
 @@ -131,7 +131,7 @@
@@ -486,6 +575,12 @@ Description: Fix manpages (section, name, and spellfixes) so that lintian
  .SH "SYNOPSIS"
  .IX Header "SYNOPSIS"
  .Vb 1
+@@ -196,4 +196,4 @@ specified.  Each sub-command is subsequently defined using the
+ \&\fIXPACmdAdd()\fR routine.
+ .SH "SEE ALSO"
+ .IX Header "SEE ALSO"
+-See xpa(n) for a list of \s-1XPA\s0 help pages
++See xpa(7) for a list of \s-1XPA\s0 help pages
 --- a/man/man3/xpafree.3
 +++ b/man/man3/xpafree.3
 @@ -131,7 +131,7 @@
@@ -497,6 +592,12 @@ Description: Fix manpages (section, name, and spellfixes) so that lintian
  .SH "SYNOPSIS"
  .IX Header "SYNOPSIS"
  .Vb 1
+@@ -153,4 +153,4 @@ loads a new image for display and destroys it when the image is
+ unloaded.
+ .SH "SEE ALSO"
+ .IX Header "SEE ALSO"
+-See xpa(n) for a list of \s-1XPA\s0 help pages
++See xpa(7) for a list of \s-1XPA\s0 help pages
 --- a/man/man3/xpaget.3
 +++ b/man/man3/xpaget.3
 @@ -131,7 +131,7 @@
@@ -508,6 +609,12 @@ Description: Fix manpages (section, name, and spellfixes) so that lintian
  .SH "SYNOPSIS"
  .IX Header "SYNOPSIS"
  .Vb 1
+@@ -246,4 +246,4 @@ processed by the client.
+ .Ve
+ .SH "SEE ALSO"
+ .IX Header "SEE ALSO"
+-See xpa(n) for a list of \s-1XPA\s0 help pages
++See xpa(7) for a list of \s-1XPA\s0 help pages
 --- a/man/man3/xpagetfd.3
 +++ b/man/man3/xpagetfd.3
 @@ -131,7 +131,7 @@
@@ -519,6 +626,12 @@ Description: Fix manpages (section, name, and spellfixes) so that lintian
  .SH "SYNOPSIS"
  .IX Header "SYNOPSIS"
  .Vb 1
+@@ -235,4 +235,4 @@ for future usefulness).
+ .Ve
+ .SH "SEE ALSO"
+ .IX Header "SEE ALSO"
+-See xpa(n) for a list of \s-1XPA\s0 help pages
++See xpa(7) for a list of \s-1XPA\s0 help pages
 --- a/man/man3/xpainfo.3
 +++ b/man/man3/xpainfo.3
 @@ -131,7 +131,7 @@
@@ -530,6 +643,12 @@ Description: Fix manpages (section, name, and spellfixes) so that lintian
  .SH "SYNOPSIS"
  .IX Header "SYNOPSIS"
  .Vb 1
+@@ -213,4 +213,4 @@ one or both will time out.
+ .Ve
+ .SH "SEE ALSO"
+ .IX Header "SEE ALSO"
+-See xpa(n) for a list of \s-1XPA\s0 help pages
++See xpa(7) for a list of \s-1XPA\s0 help pages
 --- a/man/man3/xpainfonew.3
 +++ b/man/man3/xpainfonew.3
 @@ -131,7 +131,7 @@
@@ -541,6 +660,12 @@ Description: Fix manpages (section, name, and spellfixes) so that lintian
  .SH "SYNOPSIS"
  .IX Header "SYNOPSIS"
  .Vb 1
+@@ -195,4 +195,4 @@ the \fIXPAInfo()\fR routine that cause the info_callback to execute do not
+ wait for the callback to complete before returning.
+ .SH "SEE ALSO"
+ .IX Header "SEE ALSO"
+-See xpa(n) for a list of \s-1XPA\s0 help pages
++See xpa(7) for a list of \s-1XPA\s0 help pages
 --- a/man/man3/xpamacros.3
 +++ b/man/man3/xpamacros.3
 @@ -131,7 +131,7 @@
@@ -552,6 +677,12 @@ Description: Fix manpages (section, name, and spellfixes) so that lintian
  .SH "SYNOPSIS"
  .IX Header "SYNOPSIS"
  .Vb 1
+@@ -180,4 +180,4 @@ of the data (i.e., byte swapping is dependent on the size of the data
+ element being converted).
+ .SH "SEE ALSO"
+ .IX Header "SEE ALSO"
+-See xpa(n) for a list of \s-1XPA\s0 help pages
++See xpa(7) for a list of \s-1XPA\s0 help pages
 --- a/man/man3/xpamainloop.3
 +++ b/man/man3/xpamainloop.3
 @@ -131,7 +131,7 @@
@@ -563,6 +694,12 @@ Description: Fix manpages (section, name, and spellfixes) so that lintian
  .SH "SYNOPSIS"
  .IX Header "SYNOPSIS"
  .Vb 1
+@@ -214,4 +214,4 @@ or
+ respectively before entering the loop.
+ .SH "SEE ALSO"
+ .IX Header "SEE ALSO"
+-See xpa(n) for a list of \s-1XPA\s0 help pages
++See xpa(7) for a list of \s-1XPA\s0 help pages
 --- a/man/man3/xpanew.3
 +++ b/man/man3/xpanew.3
 @@ -131,7 +131,7 @@
@@ -583,6 +720,12 @@ Description: Fix manpages (section, name, and spellfixes) so that lintian
  .Ve
  .PP
  A send_callback and/or a receive_callback can be specified; at
+@@ -344,4 +344,4 @@ The callback routine should return 0 if no error occurs, or \-1 to
+ signal an error.
+ .SH "SEE ALSO"
+ .IX Header "SEE ALSO"
+-See xpa(n) for a list of \s-1XPA\s0 help pages
++See xpa(7) for a list of \s-1XPA\s0 help pages
 --- a/man/man3/xpanslookup.3
 +++ b/man/man3/xpanslookup.3
 @@ -131,7 +131,7 @@
@@ -594,6 +737,12 @@ Description: Fix manpages (section, name, and spellfixes) so that lintian
  .SH "SYNOPSIS"
  .IX Header "SYNOPSIS"
  .Vb 1
+@@ -234,4 +234,4 @@ and name entries are set to the character \*(L"?\*(R", since the class and
+ name of the access point are not known. 
+ .SH "SEE ALSO"
+ .IX Header "SEE ALSO"
+-See xpa(n) for a list of \s-1XPA\s0 help pages
++See xpa(7) for a list of \s-1XPA\s0 help pages
 --- a/man/man3/xpaopen.3
 +++ b/man/man3/xpaopen.3
 @@ -131,7 +131,7 @@
@@ -605,6 +754,12 @@ Description: Fix manpages (section, name, and spellfixes) so that lintian
  .SH "SYNOPSIS"
  .IX Header "SYNOPSIS"
  .Vb 1
+@@ -174,4 +174,4 @@ The connected servers will remain connected when the next call to
+ .Ve
+ .SH "SEE ALSO"
+ .IX Header "SEE ALSO"
+-See xpa(n) for a list of \s-1XPA\s0 help pages
++See xpa(7) for a list of \s-1XPA\s0 help pages
 --- a/man/man3/xpapoll.3
 +++ b/man/man3/xpapoll.3
 @@ -131,7 +131,7 @@
@@ -616,6 +771,12 @@ Description: Fix manpages (section, name, and spellfixes) so that lintian
  .SH "SYNOPSIS"
  .IX Header "SYNOPSIS"
  .Vb 1
+@@ -163,4 +163,4 @@ will be processed.  Otherwise, up to maxreq requests will be processed.
+ to process one request).
+ .SH "SEE ALSO"
+ .IX Header "SEE ALSO"
+-See xpa(n) for a list of \s-1XPA\s0 help pages
++See xpa(7) for a list of \s-1XPA\s0 help pages
 --- a/man/man3/xparace.3
 +++ b/man/man3/xparace.3
 @@ -131,7 +131,7 @@
@@ -627,6 +788,12 @@ Description: Fix manpages (section, name, and spellfixes) so that lintian
  .SH "SYNOPSIS"
  .IX Header "SYNOPSIS"
  Potential \s-1XPA\s0 race conditions and how to avoid them.
+@@ -189,4 +189,4 @@ the server. This UDP-like behavior will avoid the server deadlock when
+ sending short XPAInfo messages.
+ .SH "SEE ALSO"
+ .IX Header "SEE ALSO"
+-See xpa(n) for a list of \s-1XPA\s0 help pages
++See xpa(7) for a list of \s-1XPA\s0 help pages
 --- a/man/man3/xpaserver.3
 +++ b/man/man3/xpaserver.3
 @@ -131,7 +131,7 @@
@@ -647,6 +814,12 @@ Description: Fix manpages (section, name, and spellfixes) so that lintian
  .Ve
  .PP
  \&\s-1XPA\s0 has been compiled using both C and \*(C+ compilers.
+@@ -223,4 +223,4 @@ in this way, an \s-1XPA\s0 server program enters its usual event loop (or
+ uses the standard \s-1XPA\s0 event loop).
+ .SH "SEE ALSO"
+ .IX Header "SEE ALSO"
+-See xpa(n) for a list of \s-1XPA\s0 help pages
++See xpa(7) for a list of \s-1XPA\s0 help pages
 --- a/man/man3/xpaset.3
 +++ b/man/man3/xpaset.3
 @@ -131,7 +131,7 @@
@@ -658,6 +831,12 @@ Description: Fix manpages (section, name, and spellfixes) so that lintian
  .SH "SYNOPSIS"
  .IX Header "SYNOPSIS"
  .Vb 1
+@@ -238,4 +238,4 @@ processed by the client.
+ .Ve
+ .SH "SEE ALSO"
+ .IX Header "SEE ALSO"
+-See xpa(n) for a list of \s-1XPA\s0 help pages
++See xpa(7) for a list of \s-1XPA\s0 help pages
 --- a/man/man3/xpasetfd.3
 +++ b/man/man3/xpasetfd.3
 @@ -131,7 +131,7 @@
@@ -669,28 +848,93 @@ Description: Fix manpages (section, name, and spellfixes) so that lintian
  .SH "SYNOPSIS"
  .IX Header "SYNOPSIS"
  .Vb 1
+@@ -216,4 +216,4 @@ relevant to the client.
+ .Ve
+ .SH "SEE ALSO"
+ .IX Header "SEE ALSO"
+-See xpa(n) for a list of \s-1XPA\s0 help pages
++See xpa(7) for a list of \s-1XPA\s0 help pages
 --- a/man/mann/xpa.n
 +++ b/man/mann/xpa.n
-@@ -129,9 +129,9 @@
+@@ -128,10 +128,10 @@
+ .rm #[ #] #H #V #F C
  .\" ========================================================================
  .\"
- .IX Title "xpa n"
+-.IX Title "xpa n"
 -.TH xpa n "April 14, 2011" "version 2.1.13" "SAORD Documentation"
-+.TH xpa 3 "April 14, 2011" "version 2.1.13" "SAORD Documentation"
++.IX Title "xpa 7"
++.TH xpa 7 "April 14, 2011" "version 2.1.13" "SAORD Documentation"
  .SH "NAME"
 -\&\fBXPA: Public Access to Data and Algorithms\fR
 +XPA \- Public Access to Data and Algorithms
  .SH "SYNOPSIS"
  .IX Header "SYNOPSIS"
  This document is the Table of Contents for \s-1XPA\s0.
+@@ -170,22 +170,22 @@ the command line via a suite of high-level programs.
+ Choose from the following topics:
+ .IP "\(bu" 4
+ Introduction to \s-1XPA\s0
+-[xpaintro(n)]
++[xpaintro(7)]
+ .IP "\(bu" 4
+ Access Point Names and Templates
+-[xpatemplate(n)]
++[xpatemplate(7)]
+ .IP "\(bu" 4
+ Getting Common Information About Access Points
+-[xpacommon(n)]
++[xpacommon(7)]
+ .IP "\(bu" 4
+ Communication Methods
+-[xpamethod(n)]
++[xpamethod(7)]
+ .IP "\(bu" 4
+ Communication Between Hosts
+-[xpainet(n)]
++[xpainet(7)]
+ .IP "\(bu" 4
+ Distinguishing Users
+-[xpausers(n)]
++[xpausers(7)]
+ .IP "\(bu" 4
+ \&\s-1XPA\s0 User Programs
+ .RS 4
+@@ -284,10 +284,10 @@ XPAAccess: get access info
+ [\fIxpaaccess\fR\|(3)]
+ .IP "\(bu" 4
+ The XPA/Xt Interface: Xt interface to \s-1XPA\s0
+-[xpaxt(n)]
++[xpaxt(7)]
+ .IP "\(bu" 4
+ The XPA/Tcl Interface: Tcl interface to \s-1XPA\s0
+-[xpatcl(n)]
++[xpa(3tcl)]
+ .RE
+ .RS 4
+ .RE
+@@ -296,10 +296,10 @@ Tailoring the \s-1XPA\s0 Environment
+ .RS 4
+ .IP "\(bu" 4
+ Environment Variables
+-[xpaenv(n)]
++[xpaenv(7)]
+ .IP "\(bu" 4
+ Access Control
+-[xpaacl(n)]
++[xpaacl(7)]
+ .RE
+ .RS 4
+ .RE
 --- a/man/mann/xpaacl.n
 +++ b/man/mann/xpaacl.n
-@@ -129,9 +129,9 @@
+@@ -128,10 +128,10 @@
+ .rm #[ #] #H #V #F C
  .\" ========================================================================
  .\"
- .IX Title "xpaacl n"
+-.IX Title "xpaacl n"
 -.TH xpaacl n "April 14, 2011" "version 2.1.13" "SAORD Documentation"
-+.TH xpaacl 3 "April 14, 2011" "version 2.1.13" "SAORD Documentation"
++.IX Title "xpaacl 7"
++.TH xpaacl 7 "April 14, 2011" "version 2.1.13" "SAORD Documentation"
  .SH "NAME"
 -\&\fBXPAAcl: Access Control for XPA Messaging\fR
 +XPAAcl \- Access Control for XPA Messaging\fR
@@ -722,14 +966,22 @@ Description: Fix manpages (section, name, and spellfixes) so that lintian
  .Ve
  .PP
  Of course, you must have xpaget access to this \s-1XPA\s0 access point to
+@@ -249,4 +249,4 @@ and will consider more stringent security (e.g., private key) in the
+ future if the community requires such support.
+ .SH "SEE ALSO"
+ .IX Header "SEE ALSO"
+-See xpa(n) for a list of \s-1XPA\s0 help pages
++See xpa(7) for a list of \s-1XPA\s0 help pages
 --- a/man/mann/xpacode.n
 +++ b/man/mann/xpacode.n
-@@ -129,9 +129,9 @@
+@@ -128,10 +128,10 @@
+ .rm #[ #] #H #V #F C
  .\" ========================================================================
  .\"
- .IX Title "xpacode n"
+-.IX Title "xpacode n"
 -.TH xpacode n "April 14, 2011" "version 2.1.13" "SAORD Documentation"
-+.TH xpacode 3 "April 14, 2011" "version 2.1.13" "SAORD Documentation"
++.IX Title "xpacode 7"
++.TH xpacode 7 "April 14, 2011" "version 2.1.13" "SAORD Documentation"
  .SH "NAME"
 -\&\fBXPACode: Where to Find Example/Test Code\fR
 +XPACode \- Where to Find Example/Test Code
@@ -751,14 +1003,22 @@ Description: Fix manpages (section, name, and spellfixes) so that lintian
  .Ve
  .PP
  More options are available: see the stest.c and ctest.c code itself, which
+@@ -179,4 +179,4 @@ The file test.tcl in the \s-1XPA\s0 source directory gives examples for using th
+ XPATclInterface.
+ .SH "SEE ALSO"
+ .IX Header "SEE ALSO"
+-See xpa(n) for a list of \s-1XPA\s0 help pages
++See xpa(7) for a list of \s-1XPA\s0 help pages
 --- a/man/mann/xpacommon.n
 +++ b/man/mann/xpacommon.n
-@@ -129,9 +129,9 @@
+@@ -128,10 +128,10 @@
+ .rm #[ #] #H #V #F C
  .\" ========================================================================
  .\"
- .IX Title "xpacommon n"
+-.IX Title "xpacommon n"
 -.TH xpacommon n "April 14, 2011" "version 2.1.13" "SAORD Documentation"
-+.TH xpacommon 3 "April 14, 2011" "version 2.1.13" "SAORD Documentation"
++.IX Title "xpacommon 7"
++.TH xpacommon 7 "April 14, 2011" "version 2.1.13" "SAORD Documentation"
  .SH "NAME"
 -\&\fBXPACommon: Getting Common Information About Access Points\fR
 +XPACommon \- Getting Common Information About Access Points
@@ -811,42 +1071,66 @@ Description: Fix manpages (section, name, and spellfixes) so that lintian
  .Ve
  .Sp
  See xpans for more information.
+@@ -302,4 +302,4 @@ as the first argument. Note again that these will only be available on the
+ machine where the \s-1XPA\s0 service is running.
+ .SH "SEE ALSO"
+ .IX Header "SEE ALSO"
+-See xpa(n) for a list of \s-1XPA\s0 help pages
++See xpa(7) for a list of \s-1XPA\s0 help pages
 --- a/man/mann/xpaconvert.n
 +++ b/man/mann/xpaconvert.n
-@@ -129,9 +129,9 @@
+@@ -128,10 +128,10 @@
+ .rm #[ #] #H #V #F C
  .\" ========================================================================
  .\"
- .IX Title "xpaconvert n"
+-.IX Title "xpaconvert n"
 -.TH xpaconvert n "April 14, 2011" "version 2.1.13" "SAORD Documentation"
-+.TH xpaconvert 3 "April 14, 2011" "version 2.1.13" "SAORD Documentation"
++.IX Title "xpaconvert 7"
++.TH xpaconvert 7 "April 14, 2011" "version 2.1.13" "SAORD Documentation"
  .SH "NAME"
 -\&\fBXPAConvert: Converting the XPA API to 2.0\fR
 +XPAConvert \- Converting the XPA API to 2.0
  .SH "SYNOPSIS"
  .IX Header "SYNOPSIS"
  This document describes tips for converting from xpa 1.0 (Xt\-based
+@@ -267,4 +267,4 @@ is changed to:
+ .Ve
+ .SH "SEE ALSO"
+ .IX Header "SEE ALSO"
+-See xpa(n) for a list of \s-1XPA\s0 help pages
++See xpa(7) for a list of \s-1XPA\s0 help pages
 --- a/man/mann/xpaenv.n
 +++ b/man/mann/xpaenv.n
-@@ -129,9 +129,9 @@
+@@ -128,10 +128,10 @@
+ .rm #[ #] #H #V #F C
  .\" ========================================================================
  .\"
- .IX Title "xpaenv n"
+-.IX Title "xpaenv n"
 -.TH xpaenv n "April 14, 2011" "version 2.1.13" "SAORD Documentation"
-+.TH xpaenv 3 "April 14, 2011" "version 2.1.13" "SAORD Documentation"
++.IX Title "xpaenv 7"
++.TH xpaenv 7 "April 14, 2011" "version 2.1.13" "SAORD Documentation"
  .SH "NAME"
 -\&\fBXPAEnv: Environment Variables for XPA Messaging\fR
 +XPAEnv \- Environment Variables for XPA Messaging
  .SH "SYNOPSIS"
  .IX Header "SYNOPSIS"
  Describes the environment variables which can be used to tailor the overall
+@@ -474,4 +474,4 @@ xpans programs. This sort of mismatch usually will not work due to
+ protocol changes.
+ .SH "SEE ALSO"
+ .IX Header "SEE ALSO"
+-See xpa(n) for a list of \s-1XPA\s0 help pages
++See xpa(7) for a list of \s-1XPA\s0 help pages
 --- a/man/mann/xpainet.n
 +++ b/man/mann/xpainet.n
-@@ -129,9 +129,9 @@
+@@ -128,10 +128,10 @@
+ .rm #[ #] #H #V #F C
  .\" ========================================================================
  .\"
- .IX Title "xpainet n"
+-.IX Title "xpainet n"
 -.TH xpainet n "April 14, 2011" "version 2.1.13" "SAORD Documentation"
-+.TH xpainet 3 "April 14, 2011" "version 2.1.13" "SAORD Documentation"
++.IX Title "xpainet 7"
++.TH xpainet 7 "April 14, 2011" "version 2.1.13" "SAORD Documentation"
  .SH "NAME"
 -\&\fBXPAInet: XPA Communication Between Hosts\fR
 +XPAInet \- XPA Communication Between Hosts
@@ -922,98 +1206,154 @@ Description: Fix manpages (section, name, and spellfixes) so that lintian
  .Ve
  .PP
  Once a remote proxy registration command is executed, the remote
+@@ -394,4 +394,4 @@ register that \s-1XPA\s0 service with a remote machine.  We hope to implement
+ support for \s-1SOCKS\s0 proxy in a future release.
+ .SH "SEE ALSO"
+ .IX Header "SEE ALSO"
+-See xpa(n) for a list of \s-1XPA\s0 help pages
++See xpa(7) for a list of \s-1XPA\s0 help pages
 --- a/man/mann/xpaintro.n
 +++ b/man/mann/xpaintro.n
-@@ -129,9 +129,9 @@
+@@ -128,10 +128,10 @@
+ .rm #[ #] #H #V #F C
  .\" ========================================================================
  .\"
- .IX Title "xpaintro n"
+-.IX Title "xpaintro n"
 -.TH xpaintro n "April 14, 2011" "version 2.1.13" "SAORD Documentation"
-+.TH xpaintro 3 "April 14, 2011" "version 2.1.13" "SAORD Documentation"
++.IX Title "xpaintro 7"
++.TH xpaintro 7 "April 14, 2011" "version 2.1.13" "SAORD Documentation"
  .SH "NAME"
 -\&\fBXPAIntro: Introduction to the XPA Messaging System\fR
 +XPAIntro \- Introduction to the XPA Messaging System
  .SH "SYNOPSIS"
  .IX Header "SYNOPSIS"
  A brief introduction to the \s-1XPA\s0 messaging system, which provides
+@@ -248,4 +248,4 @@ Please note that \s-1XPA\s0 currently is not thread\-safe. All \s-1XPA\s0 calls
+ in the same thread.
+ .SH "SEE ALSO"
+ .IX Header "SEE ALSO"
+-See xpa(n) for a list of \s-1XPA\s0 help pages
++See xpa(7) for a list of \s-1XPA\s0 help pages
 --- a/man/mann/xpamethod.n
 +++ b/man/mann/xpamethod.n
-@@ -129,9 +129,9 @@
+@@ -128,10 +128,10 @@
+ .rm #[ #] #H #V #F C
  .\" ========================================================================
  .\"
- .IX Title "xpamethod n"
+-.IX Title "xpamethod n"
 -.TH xpamethod n "April 14, 2011" "version 2.1.13" "SAORD Documentation"
-+.TH xpamethod 3 "April 14, 2011" "version 2.1.13" "SAORD Documentation"
++.IX Title "xpamethod 7"
++.TH xpamethod 7 "April 14, 2011" "version 2.1.13" "SAORD Documentation"
  .SH "NAME"
 -\&\fBXPAMethod: XPA Communication Methods\fR
 +XPAMethod \- XPA Communication Methods
  .SH "SYNOPSIS"
  .IX Header "SYNOPSIS"
  \&\s-1XPA\s0 supports both inet and unix (local) socket communication.
+@@ -198,4 +198,4 @@ method. You can use these alternate methods if other hosts do not need
+ access to the \s-1XPA\s0 server.
+ .SH "SEE ALSO"
+ .IX Header "SEE ALSO"
+-See xpa(n) for a list of \s-1XPA\s0 help pages
++See xpa(7) for a list of \s-1XPA\s0 help pages
 --- a/man/mann/xpaname.n
 +++ b/man/mann/xpaname.n
-@@ -129,9 +129,9 @@
+@@ -128,10 +128,10 @@
+ .rm #[ #] #H #V #F C
  .\" ========================================================================
  .\"
- .IX Title "xpaname n"
+-.IX Title "xpaname n"
 -.TH xpaname n "April 14, 2011" "version 2.1.13" "SAORD Documentation"
-+.TH xpaname 3 "April 14, 2011" "version 2.1.13" "SAORD Documentation"
++.IX Title "xpaname 7"
++.TH xpaname 7 "April 14, 2011" "version 2.1.13" "SAORD Documentation"
  .SH "NAME"
 -\&\fBXPAName: What does XPA stand for?\fR
 +XPAName \- What does XPA stand for?
  .SH "SYNOPSIS"
  .IX Header "SYNOPSIS"
  What does \s-1XPA\s0 stand for? Who knows anymore!
- --- a/man/mann/xpaoom.n
+@@ -156,4 +156,4 @@ the largest single-piece glass reflector on the North American
+ continent. And now \s-1MMT\s0 stands for ... \s-1MMT\s0!
+ .SH "SEE ALSO"
+ .IX Header "SEE ALSO"
+-See xpa(n) for a list of \s-1XPA\s0 help pages
++See xpa(7) for a list of \s-1XPA\s0 help pages
+--- a/man/mann/xpaoom.n
 +++ b/man/mann/xpaoom.n
-@@ -129,9 +129,9 @@
+@@ -128,10 +128,10 @@
+ .rm #[ #] #H #V #F C
  .\" ========================================================================
  .\"
- .IX Title "xpaoom n"
+-.IX Title "xpaoom n"
 -.TH xpaoom n "April 14, 2011" "version 2.1.13" "SAORD Documentation"
-+.TH xpaoom 3 "April 14, 2011" "version 2.1.13" "SAORD Documentation"
++.IX Title "xpaoom 7"
++.TH xpaoom 7 "April 14, 2011" "version 2.1.13" "SAORD Documentation"
  .SH "NAME"
 -\&\fBXpaoom: What happens when XPA runs out of memory?\fR
 +XPAoom \- What happens when XPA runs out of memory?
  .SH "SYNOPSIS"
  .IX Header "SYNOPSIS"
  When \s-1XPA\s0 can't allocate memory, it exits. You can arrange to have it call
+@@ -164,4 +164,4 @@ passed to \fIsetjmp()\fR. For example:
+ .Ve
+ .SH "SEE ALSO"
+ .IX Header "SEE ALSO"
+-See xpa(n) for a list of \s-1XPA\s0 help pages
++See xpa(7) for a list of \s-1XPA\s0 help pages
 --- a/man/mann/xpatcl.n
 +++ b/man/mann/xpatcl.n
-@@ -129,9 +129,9 @@
+@@ -128,10 +128,10 @@
+ .rm #[ #] #H #V #F C
  .\" ========================================================================
  .\"
- .IX Title "xpatcl n"
+-.IX Title "xpatcl n"
 -.TH xpatcl n "April 14, 2011" "version 2.1.13" "SAORD Documentation"
-+.TH xpatcl 3tcl "April 14, 2011" "version 2.1.13" "SAORD Documentation"
++.IX Title "xpa 3tcl"
++.TH xpa 3tcl "April 14, 2011" "version 2.1.13" "SAORD Documentation"
  .SH "NAME"
 -\&\fBXPATcl: the XPA Interface to the Tcl/Tk Environment\fR
 +XPATcl \- the XPA Interface to the Tcl/Tk Environment
  .SH "SYNOPSIS"
  .IX Header "SYNOPSIS"
  Tcl/Tk programs can act as \s-1XPA\s0 clients and/or servers using the Tcl
+@@ -360,4 +360,4 @@ calling sequence for xpaaccess. You can use a version test such as:
+ .Ve
+ .SH "SEE ALSO"
+ .IX Header "SEE ALSO"
+-See xpa(n) for a list of \s-1XPA\s0 help pages
++See xpa(7) for a list of \s-1XPA\s0 help pages
 --- a/man/mann/xpatemplate.n
 +++ b/man/mann/xpatemplate.n
-@@ -129,9 +129,9 @@
+@@ -128,10 +128,10 @@
+ .rm #[ #] #H #V #F C
  .\" ========================================================================
  .\"
- .IX Title "xpatemplate n"
+-.IX Title "xpatemplate n"
 -.TH xpatemplate n "April 14, 2011" "version 2.1.13" "SAORD Documentation"
-+.TH xpatemplate 3 "April 14, 2011" "version 2.1.13" "SAORD Documentation"
++.IX Title "xpatemplate 7"
++.TH xpatemplate 7 "April 14, 2011" "version 2.1.13" "SAORD Documentation"
  .SH "NAME"
 -\&\fBXPATemplate: Access Point Names and Templates\fR
 +XPATemplate \- Access Point Names and Templates
  .SH "SYNOPSIS"
  .IX Header "SYNOPSIS"
  \&\s-1XPA\s0 access points are composed of two parts: a general class and a
+@@ -236,4 +236,4 @@ This feature can be useful in distinguishing between multiple
+ instances of a program that all have the same class:name designation.
+ .SH "SEE ALSO"
+ .IX Header "SEE ALSO"
+-See xpa(n) for a list of \s-1XPA\s0 help pages
++See xpa(7) for a list of \s-1XPA\s0 help pages
 --- a/man/mann/xpausers.n
 +++ b/man/mann/xpausers.n
-@@ -129,9 +129,9 @@
+@@ -128,10 +128,10 @@
+ .rm #[ #] #H #V #F C
  .\" ========================================================================
  .\"
- .IX Title "xpausers n"
+-.IX Title "xpausers n"
 -.TH xpausers n "April 14, 2011" "version 2.1.13" "SAORD Documentation"
-+.TH xpausers 3 "April 14, 2011" "version 2.1.13" "SAORD Documentation"
++.IX Title "xpausers 7"
++.TH xpausers 7 "April 14, 2011" "version 2.1.13" "SAORD Documentation"
  .SH "NAME"
 -\&\fBXPAUsers: Distinguishing Users\fR
 +XPAUsers \- Distinguishing Users
@@ -1037,17 +1377,31 @@ Description: Fix manpages (section, name, and spellfixes) so that lintian
  .Ve
  .PP
  Note that the \s-1XPA\s0 Environment Variable
+@@ -184,4 +184,4 @@ will cause access points from both \*(L"eric\*(R" and \*(L"john\*(R" to be proce
+ by default.
+ .SH "SEE ALSO"
+ .IX Header "SEE ALSO"
+-See xpa(n) for a list of \s-1XPA\s0 help pages
++See xpa(7) for a list of \s-1XPA\s0 help pages
 --- a/man/mann/xpaxt.n
 +++ b/man/mann/xpaxt.n
-@@ -129,9 +129,9 @@
+@@ -128,10 +128,10 @@
+ .rm #[ #] #H #V #F C
  .\" ========================================================================
  .\"
- .IX Title "xpaxt n"
+-.IX Title "xpaxt n"
 -.TH xpaxt n "April 14, 2011" "version 2.1.13" "SAORD Documentation"
-+.TH xpaxt 3 "April 14, 2011" "version 2.1.13" "SAORD Documentation"
++.IX Title "xpaxt 7"
++.TH xpaxt 7 "April 14, 2011" "version 2.1.13" "SAORD Documentation"
  .SH "NAME"
 -\&\fBXPAXt: the XPA Interface to Xt (X Windows)\fR
 +XPAXt \- the XPA Interface to Xt (X Windows)
  .SH "SYNOPSIS"
  .IX Header "SYNOPSIS"
  Describes how \s-1XPA\s0 access points can be added to X Toolkit (Xt) programs.
+@@ -159,4 +159,4 @@ to add new access points from within a callback, after the program has
+ entered the \fIXtAppMainLoop()\fR even loop.
+ .SH "SEE ALSO"
+ .IX Header "SEE ALSO"
+-See xpa(n) for a list of \s-1XPA\s0 help pages
++See xpa(7) for a list of \s-1XPA\s0 help pages
diff --git a/debian/xpa-tools.install b/debian/xpa-tools.install
index 4911b5f..3dc0721 100644
--- a/debian/xpa-tools.install
+++ b/debian/xpa-tools.install
@@ -8,6 +8,5 @@ usr/share/man/man1/xpaaccess.1
 usr/share/man/man1/xpaget.1
 usr/share/man/man1/xpamb.1
 usr/share/man/man1/xpans.1
-usr/share/man/man1/xpachanges.1
 usr/share/man/man1/xpaset.1
 usr/share/man/man1/xpainfo.1

-- 
Seamless communication between many kinds of Unix



More information about the debian-science-commits mailing list