1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-04 01:48:54 +00:00
freebsd-ports/games/utserver/files/template-patch-ngstatsut
Mario Sergio Fujikawa Ferreira 08cc060f42 o make all installation user writable; otherwise, nothing works
o update ngstats to 0.8.2 (from abfackeln)
o update PKGMESSAGE
o bump PORTREVISION due to these

Submitted by:	MAINTAINER
2001-10-26 22:08:04 +00:00

59 lines
1.7 KiB
Plaintext

--- NetGamesUSA.com/ngStats/ngStatsUT Thu Oct 18 18:27:19 2001
+++ NetGamesUSA.com/ngStats/ngStatsUT Thu Oct 18 18:44:01 2001
@@ -1,20 +1,27 @@
#!/bin/sh
+##
+## written by abfackeln@abfackeln.com, based on the original epic code
+##
+## 2000-10-10 (abfackeln)
+## added a lot of conditions to ensure that the files are actually found
+## 2001-06-15 (abfackeln)
+## added "at -b" as per suggestion from Matthew Hall <leareth@angui.sh>
+## 2001-10-18 (matuska)
+## modifications to suit FreeBSD UT installation
+
+INSTALL_DIR="%%LINUXBASE%%/%%UTDIR%%/System"
+
+# set three possible locations for the java executable
+
+JAVA1="%%LOCALBASE%%/linux-jdk1.2.2/bin/java"
+JAVA2=`which java`
+JAVA3="/usr/local/java/bin/java"
+
+# set three possible locations for the ngStats directory
-#######
-## this next bit written by abfackeln@abfackeln.com
-## to ensure that the files are actually found
-## this has not really been tested, hence the debug.
-## modified by abfackeln, 2000-10-10
-#######
-
-INSTALL_DIR=`cat $HOME/.loki/ut/install_dir`
-
-JAVA1=`which java`
-JAVA2="/usr/local/java/bin/java"
-JAVA3="/usr/jdk1.2/bin/java"
NGHOME1="../NetGamesUSA.com/ngStats"
NGHOME2="$INSTALL_DIR/../NetGamesUSA.com/ngStats"
-NGHOME3="$HOME/UnrealTournament/NetGamesUSA.com/ngStats"
+NGHOME3="%%LINUXBASE%%/%%UTDIR%/NetGamesUSA.com/ngStats"
# try each of the above to see if they work
@@ -52,11 +59,13 @@
NGHOME="$NGHOME1"
fi
-#######
+# export the vars for the java process to use
export CLASSPATH="$NGHOME/ngusa.jar"
export NGCONFIG="$NGHOME/ngStatsUT.cfg"
export NGHOME
+
+# execute java
echo "ngLS: $JAVA ngStatsUT -c $NGCONFIG -j $NGHOME $*"
$JAVA ngStatsUT -c $NGCONFIG -j $NGHOME $* &