Revision 2492, 1.2 kB
(checked in by jerome, 19 years ago)
|
Removed pkhint from the list of commands for which a manpage has to be generated.
|
-
Property svn:eol-style set to
native
-
Property svn:executable set to
*
-
Property svn:keywords set to
Author Date Id Revision
|
Line | |
---|
1 | #! /bin/sh |
---|
2 | # |
---|
3 | # PyKota - Print Quotas for CUPS and LPRng |
---|
4 | # |
---|
5 | # (c) 2003, 2004, 2005 Jerome Alet <alet@librelogiciel.com> |
---|
6 | # You're welcome to redistribute this software under the |
---|
7 | # terms of the GNU General Public Licence version 2.0 |
---|
8 | # or, at your option, any higher version. |
---|
9 | # |
---|
10 | # You can read the complete GNU GPL in the file COPYING |
---|
11 | # which should come along with this software, or visit |
---|
12 | # the Free Software Foundation's WEB site http://www.fsf.org |
---|
13 | # |
---|
14 | # $Id$ |
---|
15 | # |
---|
16 | for prog in pkturnkey pkbcodes pkmail pkbanner autopykota dumpykota edpykota pykotme repykota warnpykota pkprinters pykosd ; do |
---|
17 | echo $prog ; |
---|
18 | help2man --no-info --section=1 --manual "User Commands" --source="C@LL - Conseil Internet & Logiciels Libres" --output=$prog.1 $prog ; |
---|
19 | cd ../po ; |
---|
20 | for dir in * ; do |
---|
21 | if [ -d $dir ] ; then |
---|
22 | if [ -e $dir/pykota.po ] ; then |
---|
23 | echo " $dir" ; |
---|
24 | cd ../man/$dir ; |
---|
25 | help2man --no-info --locale=$dir --section=1 --manual "User Commands" --source="C@LL - Conseil Internet & Logiciels Libres" --output=$prog.1 $prog ; |
---|
26 | cd ../../po ; |
---|
27 | fi ; |
---|
28 | fi ; |
---|
29 | done |
---|
30 | cd ../man ; |
---|
31 | echo ; |
---|
32 | done |
---|