diff options
author | Gaetan Nadon <memsize@videotron.ca> | 2011-01-19 10:06:56 -0500 |
---|---|---|
committer | Gaetan Nadon <memsize@videotron.ca> | 2011-01-19 10:06:56 -0500 |
commit | ecbd7c66a53cab3964c30158973fc5d620d898cd (patch) | |
tree | fd1eadecceaebb92a2f82b29a23c0a4a5e1a3800 /man | |
parent | 96196e8c028f2ae72a9322a3b348326df10b8725 (diff) |
config: move man pages into their own directory
Use services provided by XORG_MANPAGE_SECTIONS.
Use standard Makefile for man pages.
Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
Diffstat (limited to 'man')
-rw-r--r-- | man/Makefile.am | 12 | ||||
-rw-r--r-- | man/xeyes.man | 62 |
2 files changed, 74 insertions, 0 deletions
diff --git a/man/Makefile.am b/man/Makefile.am new file mode 100644 index 0000000..374d22f --- /dev/null +++ b/man/Makefile.am @@ -0,0 +1,12 @@ + +appmandir = $(APP_MAN_DIR) +appman_PRE = xeyes.man +appman_DATA = $(appman_PRE:man=$(APP_MAN_SUFFIX)) + +EXTRA_DIST = $(appman_PRE) +CLEANFILES = $(appman_DATA) +SUFFIXES = .$(APP_MAN_SUFFIX) .man + +# String replacements in MAN_SUBSTS now come from xorg-macros.m4 via configure +.man.$(APP_MAN_SUFFIX): + $(AM_V_GEN)$(SED) $(MAN_SUBSTS) < $< > $@ diff --git a/man/xeyes.man b/man/xeyes.man new file mode 100644 index 0000000..db144b9 --- /dev/null +++ b/man/xeyes.man @@ -0,0 +1,62 @@ +.TH XEYES 1 __xorgversion__ +.SH NAME +xeyes \- a follow the mouse X demo +.SH SYNOPSIS +.B xeyes +[-option ...] +.SH DESCRIPTION +.I Xeyes +watches what you do and reports to the Boss. +.SH OPTIONS +.TP 8 +.B \-fg \fIforeground color\fB +choose a different color for the pupil of the eyes. +.TP 8 +.B \-bg \fIbackground color\fB +choose a different color for the background. +.TP 8 +.B \-outline \fIoutline color\fB +choose a different color for the outline of the eyes. +.TP 8 +.B \-center \fIcenter color\fB +choose a different color for the center of the eyes. +.TP 8 +.B \-backing \fI{ WhenMapped Always NotUseful }\fB +selects an appropriate level of backing store. +.TP 8 +.B \-geometry \fIgeometry\fB +define the initial window geometry; see \fIX(__miscmansuffix__)\fP. +.TP 8 +.B \-display \fIdisplay\fB +specify the display to use; see \fIX(__miscmansuffix__)\fP. +.TP 8 +.B \-bd \fIborder color\fB +choose a different color for the window border. +.TP 8 +.B \-bw \fIborder width\fB +choose a different width for the window border. +.TP 8 +.B \-shape +uses the SHAPE extension to shape the window. This is the default. +.TP 8 +.B \+shape +disables use of the SHAPE extension to shape the window. +.TP 8 +.B \-render +uses Xrender to draw anti-aliased eyes. +This is the default if \fIxeyes\fP has been compiled with Xrender support. +.TP 8 +.B \+render +disables Xrender and draws traditional eyes. +.TP 8 +.B \-distance +uses an alternative mapping, as if the eyes were set back from the screen, thus following the mouse more precisely. +.SH "SEE ALSO" +X(__miscmansuffix__), X Toolkit documentation +.br +See \fIX(__miscmansuffix__)\fP for a full statement of rights and permissions. +.SH AUTHOR +Keith Packard, MIT X Consortium +.br +Copied from the NeWS version written (apparently) by Jeremy Huxtable as seen +at SIGGRAPH '88 |