From 9e1680d27e43e7fabe67437e20aca2ddb1a579dc Mon Sep 17 00:00:00 2001 From: Andrew Riedi Date: Wed, 6 Feb 2008 22:52:50 -0800 Subject: [PATCH] wineboot: Add man page. --- programs/wineboot/Makefile.in | 10 +++++++ programs/wineboot/wineboot.man.in | 50 +++++++++++++++++++++++++++++++++++++ 2 files changed, 60 insertions(+), 0 deletions(-) diff --git a/programs/wineboot/Makefile.in b/programs/wineboot/Makefile.in index a9db582..b4e58ba 100644 --- a/programs/wineboot/Makefile.in +++ b/programs/wineboot/Makefile.in @@ -14,6 +14,16 @@ C_SRCS = \ RC_SRCS = wineboot.rc +MANPAGES = wineboot.man + @MAKE_PROG_RULES@ +all: $(MANPAGES) + +install:: $(MANPAGES) $(DESTDIR)$(mandir)/man$(prog_manext) + $(INSTALL_DATA) wineboot.man $(DESTDIR)$(mandir)/man$(prog_manext)/wineboot.$(prog_manext) + +uninstall:: + $(RM) $(DESTDIR)$(mandir)/man$(prog_manext)/wineboot.$(prog_manext) + @DEPENDENCIES@ # everything below this line is overwritten by make depend diff --git a/programs/wineboot/wineboot.man.in b/programs/wineboot/wineboot.man.in new file mode 100644 index 0000000..0122d25 --- /dev/null +++ b/programs/wineboot/wineboot.man.in @@ -0,0 +1,50 @@ +.\" -*- nroff -*- +.TH WINEBOOT 1 "February 2008" "@PACKAGE_STRING@" "Windows On Unix" +.SH NAME +wineboot \- Wine's virtual rebooter +.SH SYNOPSIS +.BR "wineboot " +.RI "[" " options " "]" +.PP +.BR "wineboot " +.BI "--help" +.PP +.SH DESCRIPTION +.B wineboot +is a virtual rebooter for Wine. It can simulate a system reboot and start-up. +.RE +.PP + +.SH OPTIONS +.PP +.IP \fI-h,--help\fR +Display basic help information. +.PP +.IP \fI-e,--end-session\fR +End the current session cleanly. +.PP +.IP \fI-f,--force\fR +Force exit for processes that don't exit cleanly. +.PP +.IP \fI-i,--init\fR +Perform initialization for first Wine instance. +.PP +.IP \fI-k,--kill\fR +Kill running processes without any cleanup. +.PP +.IP \fI-r,--restart\fR +Restart only, don't do normal startup operations. +.PP +.IP \fI-s,--shutdown\fR +Shutdown only, don't reboot. + +.SH BUGS +No known bugs at this time. +.SH AUTHORS +Man page written by Andrew Riedi. +.BR "Wineboot " +written by Wine developers. +.PP +See Wine's AUTHORS file for the list of contributors. +.SH "SEE ALSO" +The Wine Users Guide -- 1.4.4.2