X-Git-Url: http://mop.ddnsfree.com/gitweb/?a=blobdiff_plain;f=INSTALL.sh;h=71b50d27f6859ee876ee1ee908362665da6f2d84;hb=3a38798bd66e565b82f3e53f7f12aef7e70e2c82;hp=5ffa87ab344c4455eafc6a8797037a056f13f959;hpb=5b278aedf100a2edadf1f5328e1a8d8fdc2ea8f3;p=brisk.git diff --git a/INSTALL.sh b/INSTALL.sh index 5ffa87a..71b50d2 100755 --- a/INSTALL.sh +++ b/INSTALL.sh @@ -9,7 +9,7 @@ web_path="$HOME/brisk" web_only="FALSE" if [ -f $HOME/.brisk_install ]; then - . $HOME/.brisk_install + . $HOME/.spawn_install fi if [ "x$cookie_path" = "x" ]; then cookie_path=$web_path @@ -17,7 +17,7 @@ fi function usage () { echo echo "$1 -h" - echo "$1 [-W] [-n 3|5] [-f conffile] [-p outconf] [-d TRUE|FALSE] [-w web_dir] [-k ] [-c ]" + echo "$1 [-W] [-n 3|5] [-f conffile] [-p outconf] [-d TRUE|FALSE] [-w web_dir] [-k ] [-l ] [-y ] [-c ]" echo " -h this help" echo " -f use this config file" echo " -p save preferences in the file" @@ -26,6 +26,8 @@ function usage () { echo " -d activate dabug - def. $brisk_debug" echo " -w dir where place the web tree - def. \"$web_path\"" echo " -k dir where place ftok files - def. \"$ftok_path\"" + echo " -l dir where save logs - def. \"$legal_path\"" + echo " -y dir where place proxy files - def. \"$proxy_path\"" echo " -c cookie path - def. \"$cookie_path\"" echo @@ -58,7 +60,9 @@ while [ $# -gt 0 ]; do -d*) brisk_debug="`get_param "-d" "$1" "$2"`"; sh=$?;; -w*) web_path="`get_param "-w" "$1" "$2"`"; sh=$?;; -k*) ftok_path="`get_param "-k" "$1" "$2"`"; sh=$?;; + -y*) proxy_path="`get_param "-y" "$1" "$2"`"; sh=$?;; -c*) cookie_path="`get_param "-c" "$1" "$2"`"; sh=$?;; + -l*) legal_path="`get_param "-l" "$1" "$2"`"; sh=$?;; -W) web_only="TRUE";; -h) usage $0; exit 0;; *) usage $0; exit 1;; @@ -81,6 +85,8 @@ echo " n_players: $n_players" echo " brisk_debug:\"$brisk_debug\"" echo " web_path: \"$web_path\"" echo " ftok_path: \"$ftok_path\"" +echo " legal_path: \"$legal_path\"" +echo " proxy_path: \"$proxy_path\"" echo " cookie_path:\"$cookie_path\"" echo " web_only: \"$web_only\"" @@ -93,6 +99,8 @@ if [ ! -z "$outconf" ]; then echo "brisk_debug=\"$brisk_debug\"" echo "web_path=\"$web_path\"" echo "ftok_path=\"$ftok_path\"" + echo "proxy_path=\"$proxy_path\"" + echo "legal_path=\"$legal_path\"" echo "cookie_path=\"$cookie_path\"" echo "web_only=\"$web_only\"" ) > "$outconf" @@ -121,7 +129,14 @@ if [ "$web_only" = "FALSE" ]; then chmod 666 ${ftok_path}/main fi install -d $web_path -install -m 644 web/*.{php,phh,css,js,mp3,swf} ${web_path} +for i in `find web -type d | grep -v /CVS | sed 's/^....//g'`; do + install -d ${web_path}/$i +done + +for i in `find web -name '*.php' -o -name '*.phh' -o -name '*.css' -o -name '*.js' -o -name '*.mp3' -o -name '*.swf' | grep -v /CVS | sed 's/^....//g'`; do + install -m 644 web/$i ${web_path}/$i +done + cd web find . -name '.htaccess' -exec install -m 644 {} ${web_path}/{} \; cd - @@ -142,8 +157,13 @@ sed -i "s/define *( *PLAYERS_N, *[0-9]\+ *)/define(PLAYERS_N, $n_players)/g" `fi sed -i "s@define *( *FTOK_PATH,[^)]*)@define(FTOK_PATH, \"$ftok_path\")@g" `find ${web_path} -type f -name '*.ph*' -exec grep -l 'define *( *FTOK_PATH,[^)]*)' {} \;` -sed -i "s@define *( *BRISK_DEBUG,[^)]*)@define(BRISK_DEBUG, $brisk_debug)@g" ${web_path}/brisk.phh +sed -i "s@define *( *BRISK_DEBUG,[^)]*)@define(BRISK_DEBUG, $brisk_debug)@g" ${web_path}/Obj/brisk.phh + +sed -i "s@define *( *LEGAL_PATH,[^)]*)@define(LEGAL_PATH, \"$legal_path\")@g" ${web_path}/Obj/brisk.phh + +sed -i "s@define *( *PROXY_PATH,[^)]*)@define(PROXY_PATH, \"$proxy_path\")@g" ${web_path}/Obj/brisk.phh sed -i "s@var \+xhr_rd_cookiepath \+= \+\"[^\"]*\";@var xhr_rd_cookiepath = \"$cookie_path\";@g" ${web_path}/xhr.js +sed -i "s@var \+cookiepath \+= \+\"[^\"]*\";@var cookiepath = \"$cookie_path\";@g" ${web_path}/commons.js -exit 0 \ No newline at end of file +exit 0