From 3d2a8101f0faefeed4a55e66f3ca9edb0b01361e Mon Sep 17 00:00:00 2001 From: yabause Date: Mon, 22 Dec 2008 23:53:34 +0000 Subject: [PATCH] Adding manpages from debian, not sure why they were added there at first. --- desmume/configure.ac | 3 + desmume/src/cli/Makefile.am | 1 + desmume/src/cli/doc/Makefile.am | 1 + desmume/src/cli/doc/desmume-cli.1 | 71 ++++++++++++++++++++++ desmume/src/gtk-glade/Makefile.am | 1 + desmume/src/gtk-glade/doc/Makefile.am | 1 + desmume/src/gtk-glade/doc/desmume-glade.1 | 65 ++++++++++++++++++++ desmume/src/gtk/Makefile.am | 1 + desmume/src/gtk/doc/Makefile.am | 1 + desmume/src/gtk/doc/desmume.1 | 74 +++++++++++++++++++++++ 10 files changed, 219 insertions(+) create mode 100644 desmume/src/cli/doc/Makefile.am create mode 100644 desmume/src/cli/doc/desmume-cli.1 create mode 100644 desmume/src/gtk-glade/doc/Makefile.am create mode 100644 desmume/src/gtk-glade/doc/desmume-glade.1 create mode 100644 desmume/src/gtk/doc/Makefile.am create mode 100644 desmume/src/gtk/doc/desmume.1 diff --git a/desmume/configure.ac b/desmume/configure.ac index 533daea77..478eb78aa 100644 --- a/desmume/configure.ac +++ b/desmume/configure.ac @@ -233,9 +233,12 @@ AC_CONFIG_FILES([Makefile ${PO_MAKEFILE} src/Makefile src/cli/Makefile + src/cli/doc/Makefile src/cocoa/Makefile src/gtk/Makefile + src/gtk/doc/Makefile src/gtk-glade/Makefile + src/gtk-glade/doc/Makefile src/windows/Makefile src/gdbstub/Makefile autopackage/default.apspec diff --git a/desmume/src/cli/Makefile.am b/desmume/src/cli/Makefile.am index fa1fb9d8c..7029ff119 100644 --- a/desmume/src/cli/Makefile.am +++ b/desmume/src/cli/Makefile.am @@ -1,3 +1,4 @@ +SUBDIRS = doc include $(top_srcdir)/src/desmume.mk AM_CFLAGS += $(SDL_CFLAGS) diff --git a/desmume/src/cli/doc/Makefile.am b/desmume/src/cli/doc/Makefile.am new file mode 100644 index 000000000..af6aed0f6 --- /dev/null +++ b/desmume/src/cli/doc/Makefile.am @@ -0,0 +1 @@ +dist_man_MANS = desmume-cli.1 diff --git a/desmume/src/cli/doc/desmume-cli.1 b/desmume/src/cli/doc/desmume-cli.1 new file mode 100644 index 000000000..cad9cf47a --- /dev/null +++ b/desmume/src/cli/doc/desmume-cli.1 @@ -0,0 +1,71 @@ +.\" Hey, EMACS: -*- nroff -*- +.\" First parameter, NAME, should be all caps +.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection +.\" other parameters are allowed: see man(7), man(1) +.TH DESMUME 1 "June 26, 2007" +.\" Please adjust this date whenever revising the manpage. +.\" +.\" Some roff macros, for reference: +.\" .nh disable hyphenation +.\" .hy enable hyphenation +.\" .ad l left justify +.\" .ad b justify to both left and right margins +.\" .nf disable filling +.\" .fi enable filling +.\" .br insert line break +.\" .sp insert n+1 empty lines +.\" for manpage-specific macros, see man(7) +.SH NAME +desmume-cli \- Nintendo DS emulator +.SH SYNOPSIS +.B desmume-cli +.RI [ options ] " files" ... +.SH DESCRIPTION +This manual page documents briefly the +.B desmume-cli +program +.PP +.\" TeX users may be more comfortable with the \fB\fP and +.\" \fI\fP escape sequences to invode bold face and italics, +.\" respectively. +\fBdesmume\fP is a Nintendo DS emulator running homebrew demos and commercial games. +.SH OPTIONS +These programs follow the usual GNU command line syntax, with long +options starting with two dashes (`-'). +A summary of options is included below. +For a complete description, see the Info files. +.TP +.B \-\-opengl-2d +Enables using OpenGL for screen rendering +.TP +.B \-\-soft-convert +Use software colour conversion during OpenGL screen rendering. May produce better or worse frame rates depending on hardware. +.TP +.B \-\-disable-sound +Disables the sound emulation +.TP +.B \-\-disable-limiter +Disables the 60 fps limiter +.TP +.B \-\-arm9gdb=PORT_NUM +Enable the ARM9 GDB stub on the given port +.TP +.B \-\-arm7gdb=PORT_NUM +Enable the ARM7 GDB stub on the given port +.TP +.B \-\-cflash=PATH_TO_DISK_IMAGE +Enable disk image GBAMP compact flash emulation +.TP +.B \-h, \-\-help +Show summary of options. +.TP +.B \-v, \-\-version +Show version of program. +.SH SEE ALSO +.BR undocumented (7) +.br +.SH AUTHOR +desmume was written by DeSmuME team +(http://sourceforge.net/projects/desmume). +.PP +This manual page was written by Pascal Giard , for the Debian project (but may be used by others). diff --git a/desmume/src/gtk-glade/Makefile.am b/desmume/src/gtk-glade/Makefile.am index e4671e503..05b4ffc27 100644 --- a/desmume/src/gtk-glade/Makefile.am +++ b/desmume/src/gtk-glade/Makefile.am @@ -1,3 +1,4 @@ +SUBDIRS = doc include $(top_srcdir)/src/desmume.mk AM_CPPFLAGS += $(SDL_CFLAGS) $(GTKGLEXT_CFLAGS) $(LIBGLADE_CFLAGS) \ diff --git a/desmume/src/gtk-glade/doc/Makefile.am b/desmume/src/gtk-glade/doc/Makefile.am new file mode 100644 index 000000000..c65f92293 --- /dev/null +++ b/desmume/src/gtk-glade/doc/Makefile.am @@ -0,0 +1 @@ +dist_man_MANS = desmume-glade.1 diff --git a/desmume/src/gtk-glade/doc/desmume-glade.1 b/desmume/src/gtk-glade/doc/desmume-glade.1 new file mode 100644 index 000000000..429d9e6a4 --- /dev/null +++ b/desmume/src/gtk-glade/doc/desmume-glade.1 @@ -0,0 +1,65 @@ +.\" Hey, EMACS: -*- nroff -*- +.\" First parameter, NAME, should be all caps +.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection +.\" other parameters are allowed: see man(7), man(1) +.TH DESMUME 1 "June 26, 2007" +.\" Please adjust this date whenever revising the manpage. +.\" +.\" Some roff macros, for reference: +.\" .nh disable hyphenation +.\" .hy enable hyphenation +.\" .ad l left justify +.\" .ad b justify to both left and right margins +.\" .nf disable filling +.\" .fi enable filling +.\" .br insert line break +.\" .sp insert n+1 empty lines +.\" for manpage-specific macros, see man(7) +.SH NAME +desmume-glade \- Nintendo DS emulator +.SH SYNOPSIS +.B desmume-glade +.RI [ options ] " files" ... +.SH DESCRIPTION +This manual page documents briefly the +.B desmume-glade +program +.PP +.\" TeX users may be more comfortable with the \fB\fP and +.\" \fI\fP escape sequences to invode bold face and italics, +.\" respectively. +\fBdesmume\fP is a Nintendo DS emulator running homebrew demos and commercial games. +.SH OPTIONS +These programs follow the usual GNU command line syntax, with long +options starting with two dashes (`-'). +A summary of options is included below. +For a complete description, see the Info files. +.TP +.B \-\-soft-convert +Use software colour conversion during OpenGL screen rendering. May produce better or worse frame rates depending on hardware. +.TP +.B \-\-disable-3d +Disables the 3D emulation +.TP +.B \-\-disable-limiter +Disables the 60 fps limiter +.TP +.B \-\-arm9gdb=PORT_NUM +Enable the ARM9 GDB stub on the given port +.TP +.B \-\-arm7gdb=PORT_NUM +Enable the ARM7 GDB stub on the given port +.TP +.B \-h, \-\-help +Show summary of options. +.TP +.B \-v, \-\-version +Show version of program. +.SH SEE ALSO +.BR undocumented (7) +.br +.SH AUTHOR +desmume was written by DeSmuME team +(http://sourceforge.net/projects/desmume). +.PP +This manual page was written by Pascal Giard , for the Debian project (but may be used by others). diff --git a/desmume/src/gtk/Makefile.am b/desmume/src/gtk/Makefile.am index 2c113e343..5dab238cf 100644 --- a/desmume/src/gtk/Makefile.am +++ b/desmume/src/gtk/Makefile.am @@ -1,3 +1,4 @@ +SUBDIRS = doc include $(top_srcdir)/src/desmume.mk AM_CPPFLAGS += $(SDL_CFLAGS) $(GTK_CFLAGS) $(GTKGLEXT_CFLAGS) $(GTHREAD_CFLAGS) diff --git a/desmume/src/gtk/doc/Makefile.am b/desmume/src/gtk/doc/Makefile.am new file mode 100644 index 000000000..41aee3291 --- /dev/null +++ b/desmume/src/gtk/doc/Makefile.am @@ -0,0 +1 @@ +dist_man_MANS = desmume.1 diff --git a/desmume/src/gtk/doc/desmume.1 b/desmume/src/gtk/doc/desmume.1 new file mode 100644 index 000000000..b3e653fee --- /dev/null +++ b/desmume/src/gtk/doc/desmume.1 @@ -0,0 +1,74 @@ +.\" Hey, EMACS: -*- nroff -*- +.\" First parameter, NAME, should be all caps +.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection +.\" other parameters are allowed: see man(7), man(1) +.TH DESMUME 1 "June 26, 2007" +.\" Please adjust this date whenever revising the manpage. +.\" +.\" Some roff macros, for reference: +.\" .nh disable hyphenation +.\" .hy enable hyphenation +.\" .ad l left justify +.\" .ad b justify to both left and right margins +.\" .nf disable filling +.\" .fi enable filling +.\" .br insert line break +.\" .sp insert n+1 empty lines +.\" for manpage-specific macros, see man(7) +.SH NAME +desmume \- Nintendo DS emulator +.SH SYNOPSIS +.B desmume +.RI [ options ] " files" ... +.SH DESCRIPTION +This manual page documents briefly the +.B desmume +program +.PP +.\" TeX users may be more comfortable with the \fB\fP and +.\" \fI\fP escape sequences to invode bold face and italics, +.\" respectively. +\fBdesmume\fP is a Nintendo DS emulator running homebrew demos and commercial games. +.SH OPTIONS +These programs follow the usual GNU command line syntax, with long +options starting with two dashes (`-'). +A summary of options is included below. +For a complete description, see the Info files. +.TP +.B \-\-opengl-2d +Enables using OpenGL for screen rendering +.TP +.B \-\-soft-convert +Use software colour conversion during OpenGL screen rendering. May produce better or worse frame rates depending on hardware. +.TP +.B \-\-disable-3d +Disables the 3D emulation +.TP +.B \-\-disable-sound +Disables the sound emulation +.TP +.B \-\-disable-limiter +Disables the 60 fps limiter +.TP +.B \-\-arm9gdb=PORT_NUM +Enable the ARM9 GDB stub on the given port +.TP +.B \-\-arm7gdb=PORT_NUM +Enable the ARM7 GDB stub on the given port +.TP +.B \-\-cflash=PATH_TO_DISK_IMAGE +Enable disk image GBAMP compact flash emulation +.TP +.B \-h, \-\-help +Show summary of options. +.TP +.B \-v, \-\-version +Show version of program. +.SH SEE ALSO +.BR undocumented (7) +.br +.SH AUTHOR +desmume was written by DeSmuME team +(http://sourceforge.net/projects/desmume). +.PP +This manual page was written by Reinhard Tartler and modified by Pascal Giard , for the Debian project (but may be used by others).