diff options
author | Larry Hajali <larryhaja[at]gmail[dot]com> | 2010-05-12 23:29:22 +0200 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-12 23:29:22 +0200 |
commit | 52ded40386444b9ddf135da7b2581c570eecc240 (patch) | |
tree | 130898019e560c95a5aedf40cabc6fd0387ed791 /games/glest/glest.sh | |
parent | 55655a60b15221ab7bcf5d185ee603a3a682cd1d (diff) | |
download | slackbuilds-52ded40386444b9ddf135da7b2581c570eecc240.tar.gz |
games/glest: Added to 12.2 repository
Diffstat (limited to 'games/glest/glest.sh')
-rw-r--r-- | games/glest/glest.sh | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/games/glest/glest.sh b/games/glest/glest.sh new file mode 100644 index 0000000000..9676827744 --- /dev/null +++ b/games/glest/glest.sh @@ -0,0 +1,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 |