wineboot: Add a manpage.

This commit is contained in:
Austin English 2010-11-25 08:02:08 -08:00 committed by Alexandre Julliard
parent 1c7d349f26
commit 8d821bd933
3 changed files with 44 additions and 0 deletions

1
.gitignore vendored
View File

@ -269,6 +269,7 @@ programs/rpcss/irot.h
programs/rpcss/irot_s.c
programs/services/svcctl.h
programs/services/svcctl_s.c
programs/wineboot/wineboot.man
programs/winecfg/winecfg.man
programs/winedbg/dbg.tab.c
programs/winedbg/dbg.tab.h

View File

@ -31,4 +31,16 @@ RC_SRCS = \
wineboot_Uk.rc \
wineboot_Zh.rc
MANPAGES = wineboot.man
@MAKE_PROG_RULES@
all: $(MANPAGES)
install-man-pages:: $(MANPAGES) $(DESTDIR)$(mandir)/man$(prog_manext)
$(INSTALL_DATA) wineboot.man $(DESTDIR)$(mandir)/man$(prog_manext)/wineboot.$(prog_manext)
@WOW64_DISABLE@ install install-lib:: install-man-pages
uninstall::
$(RM) $(DESTDIR)$(mandir)/man$(prog_manext)/wineboot.$(prog_manext)

View File

@ -0,0 +1,31 @@
.TH WINEBOOT 1 "November 2010" "@PACKAGE_STRING@" "Wine Programs"
.SH NAME
wineboot \- perform Wine initialization, startup, and shutdown tasks
.SH SYNOPSIS
.BR "wineboot "\fI[OPTION]\fR "
.SH DESCRIPTION
.B wineboot
performs the initial creation and setup of a WINEPREFIX for wine(1). It can also perform a simulated
reboot or shutdown to any applications running within the WINEPREFIX.
.SH "SEE ALSO"
.BR wine(1)
.SH "OPTIONS"
.IP \-h,\ \-\-help
Display help message.
.IP \-e,\ \-\-end\-session
End the current session cleanly.
.IP \-f,\ \-\-force
Force exit for processes that don't exit cleanly
.IP \-i,\ \-\-init
Initialize the WINEPREFIX.
.IP \-k,\ \-\-kill
Kill running processes without any cleanup.
.IP \-r,\ \-\-restart
Restart only, don't do normal startup operations.
.IP \-s,\ \-\-shutdown
Shutdown only, don't reboot.
.IP \-u,\ \-\-update
Update the WINEPREFIX.
.SH "SEE ALSO"
.BR wine(1)