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 | b7cb4106bca08b2ffebf7494dcc547c974cd2bdb (patch) | |
tree | 1aa009bdc4b3fd6657ee0bc06c2cea145690a5fc /man | |
parent | d2f47149264cd2050f5c442cd8765998a4f936c4 (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/dga.man | 16 |
2 files changed, 28 insertions, 0 deletions
diff --git a/man/Makefile.am b/man/Makefile.am new file mode 100644 index 0000000..7110bc5 --- /dev/null +++ b/man/Makefile.am @@ -0,0 +1,12 @@ + +appmandir = $(APP_MAN_DIR) +appman_PRE = dga.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/dga.man b/man/dga.man new file mode 100644 index 0000000..c7d9fc1 --- /dev/null +++ b/man/dga.man @@ -0,0 +1,16 @@ +.\" $XFree86: xc/programs/xf86dga/dga.man,v 3.4 1997/11/08 16:24:37 hohndel Exp $ +.\" +.TH dga 1 __vendorversion__ +.SH NAME +dga \- test program for the XFree86-DGA extension +.SH SYNOPSIS +.B dga +.SH DESCRIPTION +Dga is a simple test client for the XFree86-DGA extension. It fills +the screen with a different colour for each key pressed. +It prints some basic framebuffer parameters, and also +keyboard and pointer events to stdout. To exit, hit the `q' key. +Hitting the `b' key runs a simple benchmark, measuring raw framebuffer +write and read speed (this takes one second each). +.SH AUTHOR +Jon Tombs |