blob: 967682774470427782187cf1677d11b5e17ca90e (
plain)
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
|
#!/bin/sh
# Wrapper script taken from the Ubuntu guys.
# I guess they're good for something. :-)
# Modified for the accompanying glest.SlackBuild.
MAINDIR=/usr/share/glest
BASEDIR="$XDG_CONFIG_HOME"
if [ -z "$BASEDIR" ]; then
BASEDIR="$HOME/.config"
fi
DIR="$BASEDIR/glest"
if [ ! -d "$DIR" ]; then
if [ -d "$HOME/.glest" ]; then
# Move the configuration directory to ~/.config
mkdir -p $BASEDIR
mv "$HOME/.glest" "$DIR"
else
mkdir $DIR
fi
fi
cd $DIR
if [ -f glest.ini ]; then
# Update for Glest 3.2.1
sed -i 's/\.lng//' glest.ini
language=$(cat glest.ini | grep Lang | cut -d'=' -f2)
[ -f /usr/share/glest/data/lang/${language}.lng ] || \
sed -i "s/${language}/english/" glest.ini
# If the configuration file is too old, replace it
grep AutoTest glest.ini >/dev/null 2>&1
if [ $? -ne 0 ]; then
mv glest.ini glest.ini.bck
cp /etc/glest/glest.ini .
[ -h docs ] || unlink docs
fi
else
cp /etc/glest/glest.ini .
sed -i 's/\.lng//' glest.ini
fi
[ -h glest ] || ln -s /usr/lib/glest/glest .
[ -f servers.ini ] || cp $MAINDIR/servers.ini .
for i in data scenarios techs tilesets; do
[ -h $i ] || ln -s $MAINDIR/$i .
done
[ -d maps ] || mkdir maps
[ -d screens ] || mkdir screens
cd maps
for i in $MAINDIR/maps/*; do
[ -h `basename $i` ] || ln -s $i .
done
cd ..
exec ./glest
|