]> git.ipfire.org Git - thirdparty/vala.git/commitdiff
Add man page for valadoc
authorEvan Nemerson <evan@coeus-group.com>
Tue, 4 May 2010 21:11:27 +0000 (23:11 +0200)
committerFlorian Brosch <flo.brosch@gmail.com>
Tue, 4 May 2010 21:11:27 +0000 (23:11 +0200)
Makefile.am
configure.in
doc/Makefile.am [new file with mode: 0644]
doc/valadoc.1 [new file with mode: 0644]

index e2bce7530e75ec224174677e1df2e6797df78350..ccc4f3382a1bab2882b0a779bdd76b55d80cc2f3 100644 (file)
@@ -5,4 +5,5 @@ NULL =
 
 SUBDIRS = src \
           icons \
+          doc \
           $(NULL)
index 581ec8ecbc55456525a9d9da32b8746ca0712b86..7138e02b36e403f0bd0a1746601feb5185fb75f6 100644 (file)
@@ -61,6 +61,7 @@ AC_CONFIG_FILES([Makefile
                  src/libvaladoc/valadoc-1.0.pc
                  src/Makefile
                  icons/Makefile
+                 doc/Makefile
                  src/libvaladoc/Makefile
                  src/doclets/Makefile
                  src/doclets/htm/Makefile
diff --git a/doc/Makefile.am b/doc/Makefile.am
new file mode 100644 (file)
index 0000000..bed5d93
--- /dev/null
@@ -0,0 +1,3 @@
+man_MANS = valadoc.1
+
+EXTRA_DIST = valadoc.1
diff --git a/doc/valadoc.1 b/doc/valadoc.1
new file mode 100644 (file)
index 0000000..3e7486a
--- /dev/null
@@ -0,0 +1,88 @@
+.TH valadoc 1 "26 April 2010" "valadoc-0.2" "Valadoc"
+.SH NAME
+valadoc \- Vala Documentation Tool
+.SH SYNOPSIS
+.B valadoc
+[\fIOPTION\fR]... \fIFILE\fR...
+.SH DESCRIPTION
+Valadoc is a documentation generator for generating API documentation
+from Vala source code based on libvala.
+.SH OPTIONS
+.TP
+.B --help
+.TP
+.B -b, --basedir=\fIDIRECTORY\fR
+Base source directory
+.TP
+.B -D, --define=\fISYMBOL\fR
+Define SYMBOL
+.TP
+.B --enable-checking
+Enable additional run-time checks
+.TP
+.B --enable-deprecated
+Enable deprecated features
+.TP
+.B --enable-experimental
+Enable experimental features
+.TP
+.B --enable-experimental-non-null
+Enable experimental enhancements for non-null types
+.TP
+.B --disable-dbus-transformation
+Disable transformation of D-Bus member names
+.TP
+.B --vapidir=\fIDIRECTORY\fR
+Look for package bindings in \fIDIRECTORY\fR
+.TP
+.B --docudir=\fIDIRECTORY\fR
+Look for external documentation in \fIDIRECTORY\fR
+.TP
+.B --profile=\fIPROFILE\fR
+Use the given profile instead of the default
+.TP
+.B --pkg=\fIPACKAGE\fR
+Include binding for \fIPACKAGE\fR
+.TP
+.B -o, --directory=\fIDIRECTORY\fR
+Output directory
+.TP
+.B --wiki=\fIDIRECTORY\fR
+Wiki directory
+.TP
+.B --deps
+Adds packages to the documentation
+.TP
+.B -X, --doclet-arg=\fIARG\fR
+Pass arguments to the doclet
+.TP
+.B --doclet=\fIPLUGIN\fR
+Name of an included doclet or path to custom doclet
+.TP
+.B --no-protected
+Removes protected elements from documentation
+.TP
+.B --internal
+Adds internal elements to documentation
+.TP
+.B --private
+Adds private elements to documentation
+.TP
+.B --package-name=\fINAME\fR
+Package name
+.TP
+.B --package-version=\fIVERSION\fR
+Package version
+.TP
+.B --force
+Force
+.TP
+.B --verbose
+Show all warnings
+.SH HOMEPAGE AND BUG REPORT
+http://live.gnome.org/Valadoc
+.SH AUTHORS
+Florian Brosch
+
+Man page written to conform with Debian by Evan Nemerson.
+