aboutsummaryrefslogtreecommitdiffstats
path: root/tools/verify-evolution-install.sh
blob: 854d33cc79ae81c622d401d021c823ffd6d792a2 (plain) (blame)
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
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
#!/bin/sh
#
# Verifies that Evolution and all its supporting components
# are installed correctly. A tool to weed out common
# build problems.
#
# (C)2000 Helix Code, Inc.
# Author: Peter Williams <peterw@helixcode.com>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU Library 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 Library General Public License for more details.
#
# You should have received a copy of the GNU Library General Public
# License along with this program; if not, write to the Free Software
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
#

problem() {
    echo "I detected the following problem: $problem"
    if test x"$rpmsystem" = xyes ; then
    echo "Suggested solution via RPM: $rpmsolution"
    fi
    if test x"$debsystem" = xyes ; then
    echo "Suggested solution via DEB: $debsolution"
    fi
    echo "Suggested solution via sources: $srcsolution"
    if test x"$comment" != x ; then
    echo ""
    echo "$comment"
    fi
    exit 1
}

check_config() {
    #bigname=$1
    #cfgname=$2
    #pkgname=$3
    eval $1=\${$1-\`which $2\`}

    eval val=\$$1
    if test ! -x $val ; then
    problem="Cannot find $2 or it ($val) is not executable"
    rpmsolution="Install or reinstall the \'$3-devel\' package"
    debsolution="Install or reinstall the $3 development libraries." #FIXME
    srcsolution="Get the latest release of $3 and install it."
    comment="If you know that $3 is installed, try setting the
environment variable $1 to its location"
    problem
    fi
}

check_prefix() {
    #othercfg=$1
    #othername=$2
    #strict=$3

    eval otherpfx=\`\$$1 --prefix\`
    if test x"$3" = xstrict ; then
    if test x"$otherpfx" != x"$gl_prefix" ; then
        problem="gnome-libs and $2 do not share the same prefix"
        rpmsolution="This problem shouldn\'t happen with RPM installations. Verify your installation of Helix Gnome."
        debsolution="This problem shouldn\'t happen with DEB installations. Verify your installation of Helix Gnome."
        srcsolution="Re-run \'configure\' in $2\'s source directory with the flag \'--prefix=$gl_prefix\'."
        problem
    fi
    else
    IFSbak="$IFS"
    ok="$GNOME_PATH:$gl_prefix"
    IFS=":"
    passed=no

    for e in $ok; do
        if test x"$e" != x ; then
        if test $otherpfx = $e ; then
            passed=yes;
        fi
        fi
    done

    IFS="$IFSbak"

    if test x"$passed" = xno ; then
        problem="$2 is not in GNOME_PATH or the same prefix as gnome-libs"
        rpmsolution="This problem shouldn\'t happen with RPM installations. Verify your installation of Helix Gnome."
        debsolution="This problem shouldn\'t happen with DEB installations. Verify your installation of Helix Gnome."
        srcsolution="Re-run \'configure\' in $2\'s source directory with the flag \'--prefix=$gl_prefix\'."
        comment="Try exporting an environment variable \'GNOME_PATH\' with the prefix of $2."
        problem
    fi
    fi
}

check_sysconf() {
    #othercfg=$1
    #othername=$2

    eval othersysc=\`\$$1 --sysconfdir\`
    if test x"$othersysc" != x"$gl_sysconf" ; then
    problem="gnome-libs and $2 do not share the same sysconfdir"
    rpmsolution="This problem shouldn\'t happen with RPM installations. Verify your installation of Helix Gnome."
    debsolution="This problem shouldn\'t happen with DEB installations. Verify your installation of Helix Gnome."
    srcsolution="Re-run \'configure\' in $2\'s source directory with the flag \'--sysconfdir=$gl_sysconf\'."
    problem
    fi
}

check_oafinfo() {
    #basename=$1
    #othername=$2

    base=$1.oafinfo
    search="${gl_datadir}/oaf:$OAF_INFO_PATH"
    IFSback="$IFS"
    IFS=":"
    ok=no

    for ping in $search ; do
    if test x"$ping" != x ; then
        if test -f $ping/$base ; then
        file=$ping/$base
        ok=yes
        fi
    fi
    done

    IFS="$IFSback"

    if test x$ok = xno ; then
    problem="$1.oafinfo isn\'t installed into Gnome\'s prefix or in OAF_INFO_PATH"
    rpmsolution="This problem shouldn\'t happen with RPM installations. Verify your installation of Helix Gnome."
    debsolution="This problem shouldn\'t happen with DEB installations. Verify your installation of Helix Gnome."
    srcsolution="Re-run \'configure\' in $2\'s source directory with the flag \'--datadir=$gl_datadir\'."
    comment="Another likely cause of this problem would be a failed installation of $2.
You should check to see that the install succeeded. You may also add the
location $1.oafinfo to the environment variable OAF_INFO_PATH"
    problem
    fi

    iids=`cat $file |grep iid= |sed -e 's,.*iid="\([^"]*\)".*,\1,'`
    IFS="
"

    tempfile="temp-$$-verifier"
    for iid in $iids ; do
    echo "Attempting to activate IID \"$iid\"..."
    $OAF_CLIENT -qs "iid == '$iid'" >$tempfile
    result=`cat $tempfile |grep exception`
    if test x"$result" != x ; then
        problem="The component $2 (in $file) couldn't be activated by OAF"
        rpmsolution="Verify that $file is valid and that oaf and $2 are correctly installed."
        debsolution="Verify that $file is valid and that oaf and $2 are correctly installed."
        srcsolution="Verify that $file is valid and that oaf and $2 are correctly installed."
        comment="$OAF_CLIENT reported this:
`cat $tempfile`"
        rm -f $tempfile
        problem
        fi
    done
    rm -f $tempfile

    IFS="$IFSback"
}

check_bin() {
    #name=$1
    #othername=$2

    if test ! -f ${gl_bindir}/$1 ; then
    problem="The binary $1 isn\'t installed into Gnome\'s prefix"
    rpmsolution="This problem shouldn\'t happen with RPM installations. Verify your installation of Helix Gnome."
    debsolution="This problem shouldn\'t happen with DEB installations. Verify your installation of Helix Gnome."
    srcsolution="Re-run \'configure\' in $2\'s source directory with the flag \'--bindir=$gl_bindir\'."
    comment="Another likely cause of this problem would be a failed installation of $2.
You should check to see that the install succeeded."
    problem
    fi
}

check_no_gnorba() {
    #libs=$1
    #othername=$2

    ping=`echo $1 |grep 'gnorba'`

    if test x"$ping" != x ; then
    problem="$2 was built using Gnorba, not OAF"
    rpmsolution="This problem shouldn\'t happen with RPM installations. Verify your installation of Helix Gnome."
    debsolution="This problem shouldn\'t happen with DEB installations. Verify your installation of Helix Gnome."
    srcsolution="Update $2 and re-run \'configure\' in its source directory with the flag \'--enable-oaf=yes\'."
    problem
    fi
}

########################################

versionparse3() {
    #inst_version=$1
    #reqd_version=$2
    #package=$3

    inst_version=`versiongrab3 "$1"`
    inst_major=`echo $inst_version |sed -e 's,\([0-9][0-9]*\)\..*\..*,\1,'`
    inst_minor=`echo $inst_version |sed -e 's,.*\.\([0-9][0-9]*\)\..*,\1,'`
    inst_micro=`echo $inst_version |sed -e 's,.*\..*\.\([0-9][0-9]*\),\1,'`

    reqd_version=`versiongrab3 "$2"`
    reqd_major=`echo $reqd_version |sed -e 's,\([0-9][0-9]*\)\..*\..*,\1,'`
    reqd_minor=`echo $reqd_version |sed -e 's,.*\.\([0-9][0-9]*\)\..*,\1,'`
    reqd_micro=`echo $reqd_version |sed -e 's,.*\..*\.\([0-9][0-9]*\),\1,'`

    ok=yes
    if test $inst_major -lt $reqd_major ; then
    ok=no
    elif test $inst_major -gt $reqd_major ; then
    ok=yes
    elif test $inst_minor -lt $reqd_minor; then
    ok=no
    elif test $inst_minor -gt $reqd_minor; then
    ok=yes
    elif test $inst_micro -lt $reqd_micro; then
    ok=no
    fi

    if test x$ok = xno ; then
    problem="Package $3 is not new enough ($1 detected, $2 required)"
    rpmsolution="Obtain a newer version and install it"
    depsolution="Obtain a newer version and install it"
    srcsolution="Obtain a newer version and install it"
    comment="If you think you have a newer installation, make sure that the
package is not installed twice."
    problem
    fi
}

versiongrab3() {
    echo $1 |sed -e 's,.*\([0-9][0-9]*\.[0-9][0-9]*\.[0-9][0-9]*\).*,\1,'
}

check_module3() {
    #$1=gnome-libs name
    #$2=package
    #$3=version
    $GNOME_CONFIG --modversion $1 1>/dev/null 2>/dev/null </dev/null
    if test x$? != x0 ; then
    problem="Package $2 doesn\'t seem to be installed."
    rpmsolution="Get and install the packages \'$2\' and \'$2-devel\'"
    debsolution="Get and install the package $2 and its development libraries" #FIXME
    srcsolution="Download the source and install the package $2"
    comment="If you think the package is installed, check that its prefix is $gl_prefix --
${1}Conf.sh should be installed into `$GNOME_CONFIG --libdir`"
    problem
    fi

    instversion=`$GNOME_CONFIG --modversion $1`

    #eew eew hacky
    # gnome-vfs used to be versioned gnome-vfs-0.1,
    # and gnome-vfs-0.2, but then they moved to three figs--
    # now it's gnome-vfs-0.2.0

    if test $2 = gnome-vfs ; then
    case "$instversion" in
    gnome-vfs-0.1)
        problem="Package gnome-vfs is not new enough (0.1 detected, $3 required)"
        rpmsolution="Obtain a newer version and install it"
        depsolution="Obtain a newer version and install it"
        srcsolution="Obtain a newer version and install it"
        comment="If you think you have a newer installation, make sure that the
package is not installed twice."
        problem
        ;;
    gnome-vfs-0.2)
        instversion="gnome-vfs-0.2.0"
        ;;
    *)
        #nothing, version is ok
        ;;
    esac
    fi

    versionparse3 "$instversion" "$3" "$2"
}

########################################

versionparse2() {
    #inst_version=$1
    #reqd_version=$2
    #package=$3

    inst_version=`versiongrab2 "$1"`
    inst_major=`echo $inst_version |sed -e 's,\([0-9][0-9]*\)\..*,\1,'`
    inst_minor=`echo $inst_version |sed -e 's,.*\.\([0-9][0-9]*\),\1,'`

    reqd_version=`versiongrab2 "$2"`
    reqd_major=`echo $reqd_version |sed -e 's,\([0-9][0-9]*\)\..*,\1,'`
    reqd_minor=`echo $reqd_version |sed -e 's,.*\.\([0-9][0-9]*\),\1,'`

    ok=yes
    if test $inst_major -lt $reqd_major ; then
    ok=no
    elif test $inst_major -gt $reqd_major ; then
    ok=yes
    elif test $inst_minor -lt $reqd_minor; then
    ok=no
    fi

    if test x$ok = xno ; then
    problem="Package $3 is not new enough ($1 detected, $2 required)"
    rpmsolution="Obtain a newer version and install it"
    depsolution="Obtain a newer version and install it"
    srcsolution="Obtain a newer version and install it"
    comment="If you think you have a newer installation, make sure that the
package is not installed twice."
    problem
    fi
}

versiongrab2() {
    echo $1 |sed -e 's,.*\([0-9][0-9]*\.[0-9][0-9]*\).*,\1,'
}

check_module2() {
    #$1=gnome-libs name
    #$2=package
    #$3=version
    $GNOME_CONFIG --modversion $1 1>/dev/null 2>/dev/null </dev/null
    if test x$? != x0 ; then
    problem="Package $2 doesn\'t seem to be installed."
    rpmsolution="Get and install the packages \'$2\' and \'$2-devel\'"
    debsolution="Get and install the package $2 and its development libraries" #FIXME
    srcsolution="Download the source and install the package $2"
    comment="If you think the package is installed, check that its prefix is $gl_prefix --
${1}Conf.sh should be installed into `$GNOME_CONFIG --libdir`"
    problem
    fi

    instversion=`$GNOME_CONFIG --modversion $1`
    versionparse2 "$instversion" "$3" "$2"
}

########################################

#prep
if test -d /var/lib/rpm ; then
    rpmsystem=yes
    RPM=${RPM_PROG-`which rpm`}

    $RPM --version 1>/dev/null 2>/dev/null </dev/null
    if test x$? != x0 ; then
    problem="The rpm executable ($RPM) does not seem to work."
    rpmsolution="none, if rpm doesn\'t work."
    debsolution="not applicable."
    srcsolution="download and install rpm manually."
    comment="If rpm really won\'t work then there is something wrong with your system."
    problem
    fi
else
    rpmsystem=no
fi

if test -d /var/lib/dpkg ; then
    debsystem=yes
    #FIXME: check if deb works
else
    debsystem=no
fi

if test x"$GNOME_PATH" != x ; then
    PATH="$GNOME_PATH:$PATH"
fi

#gnome-libs
check_config GNOME_CONFIG gnome-config gnome-libs

gl_version=`$GNOME_CONFIG --version` # |sed -e 's,.*\([0-9][0-9]*\.[0-9][0-9]*\.[0-9][0-9]*\).*,\1,'`
gl_sysconf=`$GNOME_CONFIG --sysconfdir`
gl_prefix=`$GNOME_CONFIG --prefix`
gl_datadir=`$GNOME_CONFIG --datadir`
gl_bindir=`$GNOME_CONFIG --bindir`

versionparse3 "$gl_version" "1.0.59" "gnome-libs"

#libunicode
check_config UNICODE_CONFIG unicode-config libunicode
check_prefix UNICODE_CONFIG libunicode
versionparse2 "`$UNICODE_CONFIG --version`" "0.4" libunicode

#ORBit
check_config ORBIT_CONFIG orbit-config ORBit
check_prefix ORBIT_CONFIG ORBit

#oaf
check_config OAF_CONFIG oaf-config oaf
check_prefix OAF_CONFIG oaf
versionparse3 "`$OAF_CONFIG --version`" "0.4.0" "oaf"
check_bin oafd

OAF_CLIENT=${OAF_CLIENT-`which oaf-client`}
if test ! -x ${OAF_CLIENT-notexecutable} ; then
    problem="oaf-client couldn't be found"
    rpmsolution="Install the 'oaf-devel' package"
    debsolution="Install the oaf development libraries"
    srcsolution="Make sure that oaf is installed correctly"
    comment="If you think you have oaf-client installed, try exporting an
environment variable OAF_CLIENT pointing to it"
    problem
fi

check_oafinfo oafd oaf

#gconf
check_config GCONF_CONFIG gconf-config GConf
check_prefix GCONF_CONFIG GConf
versionparse2 "`$GCONF_CONFIG --version`" "0.5" GConf
if test x`which gconfd-1` != x ; then
    check_oafinfo gconfd-1 GConf
    check_bin gconfd-1
else
    check_oafinfo gconfd GConf
    check_bin gconfd
fi
check_no_gnorba "`$GCONF_CONFIG --libs`" GConf

#gnome vfs
check_module3 vfs gnome-vfs "0.2.0"
check_no_gnorba "`$GNOME_CONFIG --libs vfs`" gnome-vfs

#gnome print
check_module2 print gnome-print "0.20"
check_no_gnorba "`$GNOME_CONFIG --libs print`" gnome-print

#bonobo
check_module2 bonobo bonobo "0.15"
check_prefix "GNOME_CONFIG bonobo" bonobo strict
check_oafinfo audio-ulaw bonobo
check_bin bonobo-audio-ulaw bonobo
check_no_gnorba "`$GNOME_CONFIG --libs bonobo`" bonobo

#gtkhtml
check_module2 gtkhtml GtkHTML "0.5"
check_oafinfo html-editor-control GtkHTML
check_bin html-editor-control GtkHTML
check_no_gnorba "`$GNOME_CONFIG --libs gtkhtml`" GtkHTML

#evolution
check_oafinfo addressbook evolution
check_oafinfo calendar-control evolution
check_oafinfo evolution-mail evolution
check_oafinfo evolution-calendar evolution
check_oafinfo evolution-addressbook-select-names evolution
check_oafinfo wombat evolution
check_bin evolution-mail evolution
check_bin evolution-calendar evolution
check_bin evolution-addressbook evolution
check_bin wombat evolution
check_bin evolution evolution

#done
echo "Your Gnome system appears to be properly set up. Enjoy Evolution!"
exit 0