forked from mariux64/bee
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* manpages: Update manpages in .gitignore manpages: update all man pages from xml files manpages: add Makefile to generate man pages from xml files manpages: add man pages in xml format Makefile: do not put man pages in the manpages subdirectory
- Loading branch information
Showing
19 changed files
with
2,073 additions
and
748 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
quiet-command = $(if ${V},${1},$(if ${2},@echo ${2} && ${1}, @${1})) | ||
|
||
MANPAGES += bee | ||
MANPAGES += bee-check | ||
MANPAGES += bee-download | ||
MANPAGES += bee-list | ||
MANPAGES += bee-init | ||
MANPAGES += bee-install | ||
MANPAGES += bee-query | ||
MANPAGES += bee-remove | ||
|
||
XMLTO = xmlto | ||
XMLTO_FLAGS = --stringparam man.output.quietly=1 | ||
|
||
.PHONY: all | ||
all: | ||
@echo "Following targets are availabe:" | ||
@echo " xml2man - update manpages" | ||
|
||
.PHONY: xml2man | ||
xml2man: force-clean $(addsuffix .1.in,$(MANPAGES)) | ||
|
||
.PHONY: force-clean | ||
force-clean: | ||
$(call quiet-command,rm -f $(addsuffix .1.in,$(MANPAGES)),"CLEAN *.1.in") | ||
$(call quiet-command,rm -f $(addsuffix .1, $(MANPAGES)),"CLEAN *.1") | ||
|
||
%.1: %.xml | ||
$(call quiet-command,$(XMLTO) $(XMLTO_FLAGS) man $<,"XMLTO $<") | ||
|
||
%.1.in: %.1 | ||
$(call quiet-command,mv $< $@,"RENAME $<") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,93 +1,82 @@ | ||
." manpage of bee-check | ||
." | ||
." Copyright (C) 2009-2012 | ||
." Marius Tolzmann <tolzmann@molgen.mpg.de> | ||
." Tobias Dreyer <dreyer@molgen.mpg.de> | ||
." and other bee developers | ||
." | ||
." This file is part of bee. | ||
." | ||
." bee is free software; you can redistribute it and/or modify | ||
." it under the terms of the GNU General Public License as published by | ||
." the Free Software Foundation, either version 3 of the License, or | ||
." (at your option) any later version. | ||
." | ||
." program is distributed in the hope that it will be useful, | ||
." but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
." MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
." GNU General Public License for more details. | ||
." | ||
." You should have received a copy of the GNU General Public License | ||
." along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
|
||
.TH "bee-check" "1" "2012-08-31" "bee @BEE_VERSION@" "bee - bau et einfach" | ||
|
||
'\" t | ||
.\" Title: bee-check | ||
.\" Author: Marius Tolzmann <tolzmann@molgen.mpg.de> | ||
.\" Generator: DocBook XSL Stylesheets v1.75.2 <http://docbook.sf.net/> | ||
.\" Date: 04/24/2013 | ||
.\" Manual: bee - bau et einfach | ||
.\" Source: bee @BEE_VERSION@ | ||
.\" Language: English | ||
.\" | ||
.TH "BEE\-CHECK" "1" "04/24/2013" "bee @BEE_VERSION@" "bee - bau et einfach" | ||
.\" ----------------------------------------------------------------- | ||
.\" * set default formatting | ||
.\" ----------------------------------------------------------------- | ||
.\" disable hyphenation | ||
.nh | ||
.\" disable justification (adjust text to left margin only) | ||
.ad l | ||
.\" ----------------------------------------------------------------- | ||
.\" * MAIN CONTENT STARTS HERE * | ||
.\" ----------------------------------------------------------------- | ||
.SH "NAME" | ||
bee\-check \- Perform some consistency checks on a bee package | ||
|
||
bee-check \- perform some consistency checks on a bee package | ||
.SH "SYNOPSIS" | ||
.SY "bee check" | ||
.OP options | ||
.I <pattern> | ||
.YS | ||
|
||
.HP \w'\fBbee\ check\fR\ 'u | ||
\fBbee check\fR [options] \fI<pattern>\fR | ||
.SH "DESCRIPTION" | ||
.P | ||
.B bee-check | ||
.PP | ||
\fBbee\-check\fR | ||
is used to perform consistency checks on a bee package matching | ||
.I <pattern> | ||
and shows missing link targets, missing files and directories or changed md5 sums. | ||
|
||
\fIpattern\fR | ||
and shows missing link targets, missing files and directories or changed md5 sums\&. | ||
.SH "OPTIONS" | ||
.TP | ||
.B \-d, \-\-deps, \-\-dependencies | ||
Print package dependencies. | ||
.TP | ||
.B \-f, \-\-force | ||
Use | ||
.B \-\-force | ||
to check all packages matching | ||
.IR <pattern> , | ||
if it does not match a full packagename. | ||
.TP | ||
.B \-h, \-\-help | ||
Print a little help screen. | ||
|
||
.PP | ||
\fB\-d, \-\-deps, \-\-dependencies\fR | ||
.RS 4 | ||
Print package dependencies\&. | ||
.RE | ||
.PP | ||
\fB\-f, \-\-force\fR | ||
.RS 4 | ||
Check all packages matching | ||
\fIpattern\fR | ||
if it does not match a full packagename\&. | ||
.RE | ||
.PP | ||
\fB\-h, \-\-help\fR | ||
.RS 4 | ||
Print a usage message\&. | ||
.RE | ||
.SH "ENVIRONMENT" | ||
.TP | ||
.B BEE_METADIR | ||
.RS | ||
.PP | ||
\fBBEE_METADIR\fR | ||
.RS 4 | ||
Directory searched for installed bee packages | ||
.RE | ||
.SH "BUGS" | ||
.PP | ||
Please report bugs to bee\-dev@googlegroups\&.com or directly to the authors\&. | ||
.SH "SEE ALSO" | ||
.PP | ||
|
||
\fBbee\fR(1), | ||
\fBbee-download\fR(1), | ||
\fBbee-init\fR(1), | ||
\fBbee-install\fR(1), | ||
\fBbee-list\fR(1), | ||
\fBbee-query\fR(1), | ||
\fBbee-remove\fR(1), | ||
\fBbee-update\fR(1) | ||
.SH "AUTHORS" | ||
.P | ||
.MT tolzmann@molgen.mpg.de | ||
Marius Tolzmann | ||
.ME | ||
.br | ||
.MT dreyer@molgen.mpg.de | ||
Tobias Dreyer | ||
.ME | ||
.br | ||
.MT ruester@molgen.mpg.de | ||
Matthias Ruester | ||
.ME | ||
.br | ||
and other bee developers | ||
|
||
.SH "BEE" | ||
.P | ||
This file is part of bee. | ||
.P | ||
Please report bugs to bee-dev@googlegroups.com or directly to the authors. | ||
|
||
.SH "SEE ALSO" | ||
.BR bee (1) | ||
.BR bee\-check (1) | ||
.BR bee\-download (1) | ||
.BR bee\-init (1) | ||
.BR bee\-install (1) | ||
.BR bee\-list (1) | ||
.BR bee\-query (1) | ||
.BR bee\-remove (1) | ||
.BR bee\-update (1) | ||
.PP | ||
\fBMarius Tolzmann\fR <\&tolzmann@molgen\&.mpg\&.de\&> | ||
.RS 4 | ||
.RE | ||
.PP | ||
\fBTobias Dreyer\fR <\&dreyer@molgen\&.mpg\&.de\&> | ||
.RS 4 | ||
.RE | ||
.PP | ||
\fBand other bee developers\fR | ||
.RS 4 | ||
.RE |
Oops, something went wrong.