|
From: <di...@us...> - 2007-01-31 20:06:29
|
Revision: 346
http://safekeep.svn.sourceforge.net/safekeep/?rev=346&view=rev
Author: dimi
Date: 2007-01-31 12:06:22 -0800 (Wed, 31 Jan 2007)
Log Message:
-----------
Add skeletal man page for the configuration file.
Modified Paths:
--------------
safekeep/trunk/Makefile
safekeep/trunk/safekeep.spec.in
Added Paths:
-----------
safekeep/trunk/doc/safekeep.conf.txt
Modified: safekeep/trunk/Makefile
===================================================================
--- safekeep/trunk/Makefile 2007-01-31 19:25:01 UTC (rev 345)
+++ safekeep/trunk/Makefile 2007-01-31 20:06:22 UTC (rev 346)
@@ -10,9 +10,9 @@
dirname := $(shell basename $(PWD))
rpmroot := $(shell grep '%_topdir' ~/.rpmmacros | sed 's/^[^ \t]*[ \t]*//')
svnroot := $(shell LANG=C svn info |grep Root |cut -c 18-)
-MAN_TXT := doc/safekeep.txt
+MAN_TXT := doc/safekeep.txt doc/safekeep.conf.txt
+DOC_MAN := doc/safekeep.1 doc/safekeep.conf.5
DOC_HTML := $(patsubst %.txt,%.html,$(MAN_TXT))
-DOC_MAN := $(patsubst %.txt,%.1,$(MAN_TXT))
all: help
@@ -63,7 +63,7 @@
%.html: %.txt
asciidoc -b xhtml11 -d manpage -f doc/asciidoc.conf $<
-%.1: %.xml
+%.1 %.5: %.xml
xmlto -o doc -m doc/callouts.xsl man $<
%.xml: %.txt
@@ -123,4 +123,4 @@
clean:
rm -f {.,doc,debian}/*~ *.py[co]
rm -f $(name).spec debian/changelog
- rm -f doc/*.xml doc/*.html doc/*.1
+ rm -f doc/*.xml doc/*.html doc/*.[15]
Added: safekeep/trunk/doc/safekeep.conf.txt
===================================================================
--- safekeep/trunk/doc/safekeep.conf.txt (rev 0)
+++ safekeep/trunk/doc/safekeep.conf.txt 2007-01-31 20:06:22 UTC (rev 346)
@@ -0,0 +1,27 @@
+safekeep.conf(5)
+================
+
+NAME
+----
+safekeep.conf - Configuration file for 'safekeep(1)'
+
+SYNOPSIS
+--------
+TODO
+
+DESCRIPTION
+-----------
+TODO
+
+PARAMETERS
+----------
+TODO
+
+FILES
+-----
+ /etc/safekeep.d/
+
+SEE ALSO
+--------
+safekeep(1), rdiff-backup(1)
+
Modified: safekeep/trunk/safekeep.spec.in
===================================================================
--- safekeep/trunk/safekeep.spec.in 2007-01-31 19:25:01 UTC (rev 345)
+++ safekeep/trunk/safekeep.spec.in 2007-01-31 20:06:22 UTC (rev 346)
@@ -73,6 +73,8 @@
install -m 755 safekeep "%{buildroot}%{_bindir}/"
install -d -m 755 "%{buildroot}%{_mandir}/man1/"
install -m 755 doc/safekeep.1 "%{buildroot}%{_mandir}/man1/"
+install -d -m 755 "%{buildroot}%{_mandir}/man5/"
+install -m 755 doc/safekeep.conf.5 "%{buildroot}%{_mandir}/man5/"
install -d -m 750 "%{buildroot}%{homedir}"
install -d -m 700 "%{buildroot}%{homedir}/.ssh"
@@ -91,6 +93,7 @@
%defattr(-,root,root,-)
%{_bindir}/safekeep
%{_mandir}/man1/safekeep.1*
+%{_mandir}/man5/safekeep.5*
%doc AUTHORS COPYING LICENSE README TODO
%files client
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|