[librep] added man-pages from debian



commit 14195dac6faf408b94aa9a6f9bb5c1d6a30003e5
Author: Christopher Roy Bratusek <chris nanolx org>
Date:   Sat Oct 24 21:27:23 2009 +0200

    added man-pages from debian

 ChangeLog          |    7 ++++++
 man/Makefile.in    |    6 +++++
 man/news.texi      |    2 +
 man/rep-remote.1   |   28 +++++++++++++++++++++++
 man/rep-xgettext.1 |   38 +++++++++++++++++++++++++++++++
 man/rep.1          |   62 ++++++++++++++++++++++++++++++++++++++++++++++++++++
 man/repdoc.1       |   28 +++++++++++++++++++++++
 7 files changed, 171 insertions(+), 0 deletions(-)
---
diff --git a/ChangeLog b/ChangeLog
index e862fdb..4721b25 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2009-10-24  Christopher Bratusek <zanghar freenet de>
+	* man/Makefile.in
+	* man/rep.1
+	* man/repdoc.1
+	* man/rep-remote.1
+	* man/rep-xgettext.1: added man-pages from Debian
+
 2009-10-10  Christopher Bratusek <zanghar freenet de>
 	* src/files.c
 	* src/repint.h
diff --git a/man/Makefile.in b/man/Makefile.in
index 3b7f13d..55dbdd3 100644
--- a/man/Makefile.in
+++ b/man/Makefile.in
@@ -49,13 +49,19 @@ install : librep.info installdirs
 	  $(INSTALL_DATA) $$f $(DESTDIR)$(infodir); \
 	done
 	-install-info --info-dir=$(DESTDIR)$(infodir) librep.info
+	for f in rep*.1; do \
+		gzip $$f -c > $$f.gz; \
+		$(INSTALL_DATA) $$f.gz $(DESTDIR)/usr/share/man/man1/; \
+	done
 
 installdirs : mkinstalldirs
 	$(SHELL) $< $(DESTDIR)$(infodir)
+	$(SHELL) $< $(DESTDIR)/usr/share/man/man1/
 
 uninstall :
 	rm -f $(DESTDIR)$(infodir)/librep.info*
 	-install-info --remove --info-dir=$(DESTDIR)$(infodir) librep.info
+	rm -f $(DESTDIR)/usr/share/man/man1/rep*
 
 clean :
 	rm -f *~ librep.info* librep.?? librep.???
diff --git a/man/news.texi b/man/news.texi
index 1186793..a67a853 100644
--- a/man/news.texi
+++ b/man/news.texi
@@ -16,6 +16,8 @@
 @item Fallback check for ffi, if there's no libffi.pc [Vincent Untz]
 
 @item Removed rep-config script (use librep.pc instead)
+
+ item Added man-pages for @code{rep}, @code{repdoc}, @code{rep-remote} and @code{rep-xgettext} [Debian]
 @end itemize
 
 @heading 0.90.2
diff --git a/man/rep-remote.1 b/man/rep-remote.1
new file mode 100644
index 0000000..f20a988
--- /dev/null
+++ b/man/rep-remote.1
@@ -0,0 +1,28 @@
+.\" This manpage has been automatically generated by docbook2man 
+.\" from a DocBook document.  This tool can be found at:
+.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/> 
+.\" Please send any bug reports, improvements, comments, patches, 
+.\" etc. to Steve Cheng <steve ggi-project org>.
+.TH "REP-REMOTE" "1" "04 avril 2003" "" ""
+
+.SH NAME
+rep-remote \- provides a protocol for executing all of librep's file operations on that host
+.SH SYNOPSIS
+
+\fBrep-remote\fR [ \fBSee the `lisp/remote-rep.jl' file in the distribution for more details.\fR ]
+
+.SH "DESCRIPTION"
+.PP
+\fBrep-remote\fR The `rep-remote' program distributed
+with `librep' must exist on the remote host, this is executed via `rsh'
+and provides a protocol for executing all of `librep''s file
+operations on that host. See the `lisp/remote-rep.jl' file in the
+distribution for more details.
+.SH "SEE ALSO"
+.PP
+The programs are documented fully by \fIJohn
+Harper\fR available via the \fBInfo\fR system.
+.SH "AUTHOR"
+.PP
+This manual page was written by Christian Marillat <marillat debian org> for
+the Debian GNU/Linux system (but may be used by others).
diff --git a/man/rep-xgettext.1 b/man/rep-xgettext.1
new file mode 100644
index 0000000..269d00f
--- /dev/null
+++ b/man/rep-xgettext.1
@@ -0,0 +1,38 @@
+.\" This manpage has been automatically generated by docbook2man 
+.\" from a DocBook document.  This tool can be found at:
+.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/> 
+.\" Please send any bug reports, improvements, comments, patches, 
+.\" etc. to Steve Cheng <steve ggi-project org>.
+.TH "REP-XGETTEXT" "1" "04 avril 2003" "" ""
+
+.SH NAME
+rep-xgettext \- extract i18n strings from lisp scripts.
+.SH SYNOPSIS
+
+\fBrep-xgettext\fR [ \fB--include \fIDEFINER\fB\fR ] [ \fB--c \fR ] [ \fB--pot \fR ]
+
+.SH "DESCRIPTION"
+.PP
+\fBrep-xgettext\fR The usual method of constructing
+message catalogue templates (.pot files) is to run xgettext on the C
+source files of the program (that have been annotated for i18n). 
+librep provides the rep-xgettext program to perform the same task for
+files of Lisp code.
+.SH "OPTIONS"
+.TP
+\fB--include\fR
+include DEFINER. This is not documented by upstream.
+.TP
+\fB--c\fR
+This makes it output pseudo C code containing the string constants found.
+.TP
+\fB--pot\fR
+This makes it output in standart .pot file.
+.SH "SEE ALSO"
+.PP
+The programs are documented fully by \fIJohn
+Harper\fR available via the \fBInfo\fR system.
+.SH "AUTHOR"
+.PP
+This manual page was written by Christian Marillat <marillat debian org> for
+the Debian GNU/Linux system (but may be used by others).
diff --git a/man/rep.1 b/man/rep.1
new file mode 100644
index 0000000..2bcd6ce
--- /dev/null
+++ b/man/rep.1
@@ -0,0 +1,62 @@
+.\" This manpage has been automatically generated by docbook2man 
+.\" from a DocBook document.  This tool can be found at:
+.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/> 
+.\" Please send any bug reports, improvements, comments, patches, 
+.\" etc. to Steve Cheng <steve ggi-project org>.
+.TH "REP" "1" "04 avril 2003" "" ""
+
+.SH NAME
+rep \- Read, Eval, Print Interpreter
+.SH SYNOPSIS
+
+\fBrep\fR [ \fB FILE \fR ] [ \fB \-\-batch \fR ] [ \fB \-\-interp \fR ] [ \fB \-f, \-\-call FUNCTION \fR ] [ \fB \-l, \-\-load FUNCTION \fR ] [ \fB \-s, \-\-scheme FILE \fR ] [ \fB \-\-version \fR ] [ \fB \-\-no-rc \fR ] [ \fB \-q, \-\-quit \fR ]
+
+.SH "DESCRIPTION"
+.PP
+\fBrep\fR `librep' is a dialect of Lisp,
+designed to be used both as an extension language for applications and
+as a general purpose programming language. It was originally written
+to be mostly-compatible with Emacs Lisp, but has subsequently diverged
+markedly. Its aim is to combine the best features of Scheme and
+Common Lisp and provide an environment that is comfortable for
+implementing both small and large scale systems. It tries to be a
+"pragmatic" programming language.
+.SH "OPTIONS"
+.TP
+\fBFILE\fR
+load the Lisp file \fIFILE\fR (from the cwd if possible, implies
+\fI\-\-batch\fR mode)
+.TP
+\fB\-\-batch\fR
+Batch mode: process options and exit.
+.TP
+\fB\-\-interp\fR
+Interpreted mode: don't load compile Lisp files.
+.TP
+\fB\-f \fIFUNCTION\fB \-\-call \fIFUNCTION\fB\fR
+Call the Lisp function \fIFUNCTION\fR.
+.TP
+\fB\-l \fIFILE\fB \-\-load \fIFILE\fB\fR
+Load the file of Lisp forms called \fIFILE\fR.
+.TP
+\fB\-s \fIFILE\fB \-\-scheme \fIFILE\fB\fR
+Load the file of Scheme forms called
+\fIFILE\fR (implies
+\fI\-\-batch\fR mode).
+.TP
+\fB\-\-version\fR
+Print version details.
+.TP
+\fB\-\-no\-rc\fR
+Don't load rc or site-init files.
+.TP
+\fB\-q \-\-quit\fR
+Terminate the interpreter process.
+.SH "SEE ALSO"
+.PP
+The programs are documented fully by \fIJohn
+Harper\fR available via the \fBInfo\fR system.
+.SH "AUTHOR"
+.PP
+This manual page was written by Christian Marillat <marillat debian org> for
+the Debian GNU/Linux system (but may be used by others).
diff --git a/man/repdoc.1 b/man/repdoc.1
new file mode 100644
index 0000000..8055b22
--- /dev/null
+++ b/man/repdoc.1
@@ -0,0 +1,28 @@
+.\" This manpage has been automatically generated by docbook2man 
+.\" from a DocBook document.  This tool can be found at:
+.\" <http://shell.ipoline.com/~elmert/comp/docbook2X/> 
+.\" Please send any bug reports, improvements, comments, patches, 
+.\" etc. to Steve Cheng <steve ggi-project org>.
+.TH "REPDOC" "1" "04 avril 2003" "" ""
+
+.SH NAME
+repdoc \- strip doc-strings from C source.
+.SH SYNOPSIS
+
+\fBrepdoc\fR [ \fBdoc-file \fI[src-files...]\fB\fR ]
+
+.SH "DESCRIPTION"
+.PP
+\fBrepdoc\fR strip doc-strings from C source.
+.SH "OPTIONS"
+.TP
+\fBdoc-file\fR
+generate a doc-file from c source files.
+.SH "SEE ALSO"
+.PP
+The programs are documented fully by \fIJohn
+Harper\fR available via the \fBInfo\fR system.
+.SH "AUTHOR"
+.PP
+This manual page was written by Christian Marillat <marillat debian org> for
+the Debian GNU/Linux system (but may be used by others).



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]