From d8222611d868e4ba7e23285f0ea0d74093226292 Mon Sep 17 00:00:00 2001 From: Nick White Date: Wed, 15 Apr 2009 12:34:18 +0100 Subject: Use direct download links for extra pst patches --- pst/install-patch-fixpack.sh | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'pst/install-patch-fixpack.sh') diff --git a/pst/install-patch-fixpack.sh b/pst/install-patch-fixpack.sh index 6630023..5f9fdca 100755 --- a/pst/install-patch-fixpack.sh +++ b/pst/install-patch-fixpack.sh @@ -11,11 +11,7 @@ checkforbin WeiDU unrar setuptmp -if [ ! -f "$PATCHDIR/pstfixpack.rar" ]; then - echo "You need to download the fixpack from http://dl.spellholdstudios.net/pst-fixpack" 1>&2 - echo "and put it in $PATCHDIR to install this patch" 1>&2 - exit -fi +getpatch "http://www.shsforums.net/index.php?automodule=downloads&req=download&code=confirm_download&id=647" pstfixpack.rar unrar x -o+ -cl "$PATCHDIR/pstfixpack.rar" "$TARGETDIR" || die rm "$TARGETDIR/setup-pst-fix.exe" -- cgit v1.2.3 From a86984984f21b70bcdb835fe9625b7eeda029cb8 Mon Sep 17 00:00:00 2001 From: Nick White Date: Wed, 15 Apr 2009 12:36:37 +0100 Subject: Add info on unrar version required --- pst/install-patch-fixpack.sh | 2 ++ 1 file changed, 2 insertions(+) (limited to 'pst/install-patch-fixpack.sh') diff --git a/pst/install-patch-fixpack.sh b/pst/install-patch-fixpack.sh index 5f9fdca..c65a7ca 100755 --- a/pst/install-patch-fixpack.sh +++ b/pst/install-patch-fixpack.sh @@ -1,5 +1,7 @@ #!/bin/bash # Planescape: Torment Ultimate Weidu Fixpack +# Note: This requires the freeware version of unrar, available +# from http://www.rarlab.com/rar_add.htm scriptdir="$(dirname $0)"/.. source "$scriptdir/includes/generic-includes.sh" -- cgit v1.2.3 From be2066c426699d84ce2b40749df6d218ee90f81f Mon Sep 17 00:00:00 2001 From: Nick White Date: Wed, 15 Apr 2009 15:35:59 +0100 Subject: Added license notice to all files --- pst/install-patch-fixpack.sh | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'pst/install-patch-fixpack.sh') diff --git a/pst/install-patch-fixpack.sh b/pst/install-patch-fixpack.sh index c65a7ca..acd5207 100755 --- a/pst/install-patch-fixpack.sh +++ b/pst/install-patch-fixpack.sh @@ -1,4 +1,19 @@ #!/bin/bash +# Copyright 2009 Nick White +# +# 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. +# +# See for a copy of the GNU General +# Public License. +# # Planescape: Torment Ultimate Weidu Fixpack # Note: This requires the freeware version of unrar, available # from http://www.rarlab.com/rar_add.htm -- cgit v1.2.3 From 3ecf0d63f3ce379f08e3d6aa609a4e73aa1f98b2 Mon Sep 17 00:00:00 2001 From: Nick White Date: Wed, 15 Apr 2009 23:08:30 +0100 Subject: Removed Qwinn's fix/mod packs Turned out to be more trouble than it was worth to integrate these into the install. Best to leave it to intrepid users, at least for now. --- pst/install-patch-fixpack.sh | 48 -------------------------------------------- 1 file changed, 48 deletions(-) delete mode 100755 pst/install-patch-fixpack.sh (limited to 'pst/install-patch-fixpack.sh') diff --git a/pst/install-patch-fixpack.sh b/pst/install-patch-fixpack.sh deleted file mode 100755 index acd5207..0000000 --- a/pst/install-patch-fixpack.sh +++ /dev/null @@ -1,48 +0,0 @@ -#!/bin/bash -# Copyright 2009 Nick White -# -# 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. -# -# See for a copy of the GNU General -# Public License. -# -# Planescape: Torment Ultimate Weidu Fixpack -# Note: This requires the freeware version of unrar, available -# from http://www.rarlab.com/rar_add.htm - -scriptdir="$(dirname $0)"/.. -source "$scriptdir/includes/generic-includes.sh" -source "$scriptdir/includes/patch-includes.sh" - -parseargs "$@" - -checkforbin WeiDU unrar - -setuptmp - -getpatch "http://www.shsforums.net/index.php?automodule=downloads&req=download&code=confirm_download&id=647" pstfixpack.rar - -unrar x -o+ -cl "$PATCHDIR/pstfixpack.rar" "$TARGETDIR" || die -rm "$TARGETDIR/setup-pst-fix.exe" -cd "$TARGETDIR" - -case "$LANGUAGE" in - "German" ) langno=1 ;; - "Spanish" ) langno=2 ;; - "Italian" ) langno=3 ;; - * ) langno=0 ;; -esac - -# echo to install all manually as --yes assumes English -echo -e "${langno}\nn\ni\ni\ni\n\n" \ -| WeiDU --continue setup-pst-fix.tp2 || die - -setperms "$TARGETDIR" -- cgit v1.2.3