diff --git a/.gitignore b/.gitignore index a50576135ec8d53cc6770306086abf649bdf34d9..ab6c86d392b48e4ef5b19cf86b5b4c8396db2d06 100644 --- a/.gitignore +++ b/.gitignore @@ -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 diff --git a/programs/wineboot/Makefile.in b/programs/wineboot/Makefile.in index ab7999653a4f71dd481c2cd64db062085281d9f6..bd8632b2f11b8e72eccd0a23a7dad06dfbc145f6 100644 --- a/programs/wineboot/Makefile.in +++ b/programs/wineboot/Makefile.in @@ -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) diff --git a/programs/wineboot/wineboot.man.in b/programs/wineboot/wineboot.man.in new file mode 100644 index 0000000000000000000000000000000000000000..820ded3a13a0809a7e6fd6693042e61cb6838a44 --- /dev/null +++ b/programs/wineboot/wineboot.man.in @@ -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)