File: lr_check_prereq.in

package info (click to toggle)
lire 20020214-7
  • links: PTS
  • area: main
  • in suites: woody
  • size: 6,180 kB
  • ctags: 1,245
  • sloc: perl: 11,637; xml: 5,725; sh: 3,458; makefile: 1,008
file content (276 lines) | stat: -rw-r--r-- 6,559 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
#! /bin/sh -e

# $Id: lr_check_prereq.in,v 1.2 2002/02/12 17:40:05 flacoste Exp $

#
# Copyright (C) 2001 Stichting LogReport Foundation LogReport@LogReport.org
# 
#     This program 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 2 of the License, or
#     (at your option) any later version.
# 
#     This 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 (see COPYING); if not, check with
#     http://www.gnu.org/copyleft/gpl.html or write to the Free Software 
#     Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
#

PROGRAM=lr_check_prereq

tag="${SUPERSERVICE:-all} ${SERVICE:-all} ${LR_ID:-UNSET} $PROGRAM"

echo >&2 "$tag info started with $*"

if test $# -lt 1
then
  echo >&2 "$tag err expecting argument. syntax: $PROGRAM [-i] format"
  exit 1
fi

images=
while getopts :i a
do
    case $a in
    i)
        images=1
        ;;
    *)
        echo >&2 "$tag err usage $PROGRAM [-i] format"
        exit 1
        ;;
    esac
done
shift `expr $OPTIND - 1 || true`

format="$1"

# get global vars
prefix="@prefix@"
datadir="@datadir@/@PACKAGE@"
exec_prefix="@exec_prefix@"
libexecdir="@libexecdir@/@PACKAGE@"
etcdir="@sysconfdir@/@PACKAGE@"
. $etcdir/defaults

case $format in
    xml|txt)
	required=""
	;;
    pdf)
	required="xslt jade jadetex docbook-dtd docbook-dsssl"
	;;
    html)
	required="xslt docbook-dtd docbook-xsl-html tar"
	;;
    docbookx)
	required="xslt"
	;;
    xhtml)
	required="xslt docbook-dtd docbook-xsl-xhtml tar"
	;;
    rtf)
	required="xslt jade docbook-dtd docbook-dsssl"
        ;;
    logml)
	required="xslt"
	;;
    *)
        echo >&2 "$tag err format $format is not supported"
        exit 1
        ;;
esac

if test -n "$images"
then
    case $format in
    pdf|html|xhtml|docbookx)
	required="$required gd tar"
	;;
    rtf)
	required="$required gd zip"
	;;
    *)
        echo >&2 "$tag err format $format doesn't support images"
        exit 1
	;;
    esac
fi

if test -z "$required"
then
    echo >&2 "$tag info no specific requirements"
    exit 0
fi
echo >&2 "$tag info required for $format: $required"

for r in $required
do
    
    case $r in
    xslt)
	if test "x$XSLT_PROCESSOR" = "xnone" 
	then
	    cat >&2 <<EOF
$tag err no XSLT processor available!
$tag err Please install the Gnome XSLT Library available at http://xmlsoft.org/XSLT/
$tag err Consult Lire User's Manual for more informations.
EOF
	    #' Fontification hack
	    exit 1
	fi
	;;
    jade)
	if test -z "$JADE"
	then
	    cat >&2 <<EOF
$tag err Jade or Openjade don't seem to be installed.
$tag err Please install jade or openjade
$tag err Consult the Lire User's Manual for more informations.
EOF
	    exit 1
	fi
	if test ! -x "$JADE"
	then
	    echo >&2 "$tag err program '$JADE' is  not executable!"
	    exit 1
	fi
	;;
    jadetex)
	if test -z "$PDFJADETEX"
	then
	    cat >&2 <<EOF
$tag err Jadetex doesn't seem to be installed.
$tag err Please install jadetex.
$tag err Consult the Lire User's Manual for more informations.
EOF
	    exit 1
	fi
	if  test ! -x "$PDFJADETEX"
	then
	    echo >&2 "$tag err program '$PDFJADETEX' is not executable!"
	    exit 1
	fi
	;;
    gd)
	if @PATHTOPERL@ -MGD::Graph -e 'exit 0' 2>/dev/null
	then
	    :
	else
	    cat >&2 <<EOF
$tag err requested images cannot be generated: missing GD::Graph perl module.
$tag err Please install the GD::Graph perl modules from a local CPAN mirror.
$tag err Consult the Lire User's Manual for more informations.
EOF
	    #' Fontification hack
	    exit 1
	fi
	;;
    docbook-dtd)
	if test -z "$DBK_XML_DTD"
	then
	    cat >&2 <<EOF
$tag err The DocBook XML V4.1.2 DTD doesn't seem to be installed.
$tag err Please install the DocBook XML V4.1.2 DTD.
$tag err Consult the Lire User's Manual for more informations.
EOF
	    #' Fontification hack
	    exit 1
	fi
	if test ! -f "$DBK_XML_DTD"
	then
	    cat >&2 <<EOF
$tag err Please install the DocBook XML V4.1.2 DTD.
$tag err Consult the Lire User's Manual for more informations.
EOF
	    #' Fontification hack
	    exit 1
	fi
	;;
    docbook-dsssl)
	if test -z "$DBK_PRINT_STYLESHEET"
	then
	    cat >&2 <<EOF
$tag err The DocBook DSSSL stylesheets don't seem to be installed.
$tag err Please install Norman Walsh's DocBook DSSSL Stylesheets.
$tag err Consult the Lire User's Manual for more informations.
EOF
	    #' Fontification hack
	    exit 1
	fi
	if test ! -f "$DBK_PRINT_STYLESHEET"
	then
	    cat >&2 <<EOF
$tag err docbook.dsl file '$DBK_PRINT_STYLESHEET' does not exist!
$tag err Please install Norman Walsh's DocBook DSSSL Stylesheets.
$tag err Consult the Lire User's Manual for more informations.
EOF
	    exit 1
	fi
	;;
    docbook-xsl-html)
	if test -z "$DBK_HTML_XSL"
	then
	    cat >&2 <<EOF
$tag err The DocBook XSL stylesheets don't seem to be installed.
$tag err Please install Norman Walsh's DocBook XSL Stylesheets.
$tag err Consult the Lire User's Manual for more informations.
EOF
	    #' Fontification hack
	    exit 1
	fi
	if test ! -f "$DBK_HTML_XSL"
	then
	    cat >&2 <<EOF
$tag err docbook.xsl file '$DBK_HTML_XSL' does not exist!
$tag err Please install Norman Walsh's DocBook XSL Stylesheets.
$tag err Consult the Lire User's Manual for more informations.
EOF
	    exit 1
	fi
	;;
    docbook-xsl-xhtml)
	if test -z "$DBK_XHTML_XSL"
	then
	    cat >&2 <<EOF
$tag err The DocBook XSL stylesheets don't seem to be installed.
$tag err Please install Norman Walsh's DocBook XSL Stylesheets.
$tag err Consult the Lire User's Manual for more informations.
EOF
	    #' Fontification hack
	    exit 1
	fi
	if test ! -f "$DBK_XHTML_XSL"
	then
	    cat >&2 <<EOF
$tag err docbook.xsl file '$DBK_XHTML_XSL' does not exist!
$tag err Please install Norman Walsh's DocBook XSL Stylesheets.
$tag err Consult the Lire User's Manual for more informations.
EOF
	    exit 1
	fi
	;;
    tar)
	if test "x$TAR" = "x" || test ! -x "$TAR"
	then
	    echo >&2 "$tag err can't generate images: tar ('$TAR') is not available!"
	    exit 1
	fi
	;;
    zip)
	if test "x$ZIP" = "x" || test ! -x "$ZIP"
	then
	    echo >&2 "$tag err can't generate images: zip ('$ZIP') is not available!"
	    exit 1
	fi
	;;
    esac
done

echo >&2 "$tag info stopped"