diff options
Diffstat (limited to 'www/wwwcount/files')
-rw-r--r-- | www/wwwcount/files/patch-aa | 135 | ||||
-rw-r--r-- | www/wwwcount/files/patch-ae | 69 |
2 files changed, 194 insertions, 10 deletions
diff --git a/www/wwwcount/files/patch-aa b/www/wwwcount/files/patch-aa index 65c95bb16fba..ad1f88ddfcf0 100644 --- a/www/wwwcount/files/patch-aa +++ b/www/wwwcount/files/patch-aa @@ -1,5 +1,5 @@ *** Count-config.orig Fri May 3 06:20:27 1996 ---- Count-config Thu May 16 22:18:17 1996 +--- Count-config Fri Sep 6 18:05:28 1996 *************** *** 20,26 **** trap 'echo '';echo "Interrupt Detected..exiting";rm -f "./Config.tmpl" 2>/dev/null;rm -f "./.alfcf" ;rm -f "./strict" 2>/dev/null;echo '';exit 1' 1 2 3 15 @@ -18,7 +18,7 @@ if [ ! -f "./VERSION" ] then *************** -*** 36,42 **** +*** 36,48 **** Version=`cat ./VERSION` Basedir="wwwcount$Version" ConfigH="config.h" @@ -26,14 +26,27 @@ ConfigDir="conf" ConfFile="count.cfg" DigitDir="digits" ---- 36,42 ---- + DataDir="data" +! LogDir="Log" +! LogFile="Count$Version.log" + RgbFile="./wcount/rgb.txt" + #allow_f_cr=0 + #strict_mode=0 +--- 36,49 ---- Version=`cat ./VERSION` Basedir="wwwcount$Version" ConfigH="config.h" ! BaseDir="${PREFIX}/etc/Counter" +! LibDir="${PREFIX}/lib/Counter" ConfigDir="conf" ConfFile="count.cfg" DigitDir="digits" + DataDir="data" +! LogDir="/var/log" +! LogFile="Counter.log" + RgbFile="./wcount/rgb.txt" + #allow_f_cr=0 + #strict_mode=0 *************** *** 114,120 **** @@ -43,7 +56,7 @@ fi until [ $answer = "y" -o $answer = "Y" -o $answer = "n" -o $answer = "N" ] do ---- 114,120 ---- +--- 115,121 ---- if [ .$answer = . ] then @@ -52,6 +65,48 @@ until [ $answer = "y" -o $answer = "Y" -o $answer = "n" -o $answer = "N" ] do *************** +*** 245,251 **** + You need to enter the directory of the Log file. + + EOB +! echo $n "*Log directory [$BaseDir/$LogDir]:$c " + read newpath + if [ .$newpath != . ] + then +--- 246,252 ---- + You need to enter the directory of the Log file. + + EOB +! echo $n "*Log directory [$LogDir]:$c " + read newpath + if [ .$newpath != . ] + then +*************** +*** 289,299 **** + echo "++++++++++++++++++++++++++++++" + echo "CgiBinDir=$CgiBinDir" + echo "BaseDir= $BaseDir" +! echo "DigitDir= $BaseDir/$DigitDir" + echo "ConfDir = $BaseDir/$ConfigDir" + echo "ConfFile= $ConfFile" + echo "DataDir= $BaseDir/$DataDir" +! echo "LogDir= $BaseDir/$LogDir" + echo "LogFile= $LogFile" + echo "++++++++++++++++++++++++++++++" + +--- 290,300 ---- + echo "++++++++++++++++++++++++++++++" + echo "CgiBinDir=$CgiBinDir" + echo "BaseDir= $BaseDir" +! echo "DigitDir= $LibDir/$DigitDir" + echo "ConfDir = $BaseDir/$ConfigDir" + echo "ConfFile= $ConfFile" + echo "DataDir= $BaseDir/$DataDir" +! echo "LogDir= $LogDir" + echo "LogFile= $LogFile" + echo "++++++++++++++++++++++++++++++" + +*************** *** 302,308 **** if [ .$answer = . ] @@ -60,7 +115,7 @@ fi until [ $answer = "y" -o $answer = "Y" -o $answer = "n" -o $answer = "N" ] do ---- 302,308 ---- +--- 303,309 ---- if [ .$answer = . ] then @@ -68,3 +123,73 @@ fi until [ $answer = "y" -o $answer = "Y" -o $answer = "n" -o $answer = "N" ] do +*************** +*** 338,345 **** + echo "#define ConfigDir \"$BaseDir/$ConfigDir\"" >> $ConfigH + echo "#define ConfigFile \"$ConfFile\"" >> $ConfigH + echo "#define DataDir \"$BaseDir/$DataDir\"" >> $ConfigH +! echo "#define DigitDir \"$BaseDir/$DigitDir\"" >> $ConfigH +! echo "#define LogDir \"$BaseDir/$LogDir\"" >> $ConfigH + echo "#define LogFile \"$LogFile\"" >> $ConfigH + + cat<<EOX>>$ConfigH +--- 339,346 ---- + echo "#define ConfigDir \"$BaseDir/$ConfigDir\"" >> $ConfigH + echo "#define ConfigFile \"$ConfFile\"" >> $ConfigH + echo "#define DataDir \"$BaseDir/$DataDir\"" >> $ConfigH +! echo "#define DigitDir \"$LibDir/$DigitDir\"" >> $ConfigH +! echo "#define LogDir \"$LogDir\"" >> $ConfigH + echo "#define LogFile \"$LogFile\"" >> $ConfigH + + cat<<EOX>>$ConfigH +*************** +*** 381,387 **** + * so RGB names can be looked up, but yet not allow users to make constant + * use of this very ineffiecient lookup. + *****************************************************************************/ +! #define RgbMappingDict "$BaseDir/rgb.txt" + EOX + + #if [ $allow_f_cr -eq 1 ] +--- 382,388 ---- + * so RGB names can be looked up, but yet not allow users to make constant + * use of this very ineffiecient lookup. + *****************************************************************************/ +! #define RgbMappingDict "$LibDir/rgb.txt" + EOX + + #if [ $allow_f_cr -eq 1 ] +*************** +*** 413,427 **** + ## + echo "creating variables template file $Tmpl for the install program.." + echo "BASE_DIR=\"$BaseDir\"" > $Tmpl + echo "CGIBIN_DIR=\"$CgiBinDir\"" >> $Tmpl + echo "CONFIG_FILE=\"$ConfFile\"" >> $Tmpl + echo "CONFIG_DIR=\"$BaseDir/$ConfigDir\"" >> $Tmpl +! echo "DIGIT_DIR=\"$BaseDir/$DigitDir\"" >> $Tmpl + echo "DATA_DIR=\"$BaseDir/$DataDir\"" >> $Tmpl +! echo "LOG_DIR=\"$BaseDir/$LogDir\"" >> $Tmpl + echo "LOG_FILE=\"$LogFile\"" >> $Tmpl + echo "RGB_FILE=\"$RgbFile\"" >> $Tmpl +! echo "RGB_DIR=\"$BaseDir\"" >> $Tmpl + ## + # create template for install program --ends + ## +--- 414,429 ---- + ## + echo "creating variables template file $Tmpl for the install program.." + echo "BASE_DIR=\"$BaseDir\"" > $Tmpl ++ echo "LIB_DIR=\"$LibDir\"" >> $Tmpl + echo "CGIBIN_DIR=\"$CgiBinDir\"" >> $Tmpl + echo "CONFIG_FILE=\"$ConfFile\"" >> $Tmpl + echo "CONFIG_DIR=\"$BaseDir/$ConfigDir\"" >> $Tmpl +! echo "DIGIT_DIR=\"$LibDir/$DigitDir\"" >> $Tmpl + echo "DATA_DIR=\"$BaseDir/$DataDir\"" >> $Tmpl +! echo "LOG_DIR=\"$LogDir\"" >> $Tmpl + echo "LOG_FILE=\"$LogFile\"" >> $Tmpl + echo "RGB_FILE=\"$RgbFile\"" >> $Tmpl +! echo "RGB_DIR=\"$LibDir\"" >> $Tmpl + ## + # create template for install program --ends + ## diff --git a/www/wwwcount/files/patch-ae b/www/wwwcount/files/patch-ae index eecea1e87d43..18c44adb6955 100644 --- a/www/wwwcount/files/patch-ae +++ b/www/wwwcount/files/patch-ae @@ -1,5 +1,5 @@ *** Count-install.orig Fri May 3 06:20:31 1996 ---- Count-install Thu May 16 22:34:39 1996 +--- Count-install Fri Sep 6 18:05:28 1996 *************** *** 193,199 **** @@ -85,7 +85,7 @@ until [ $answer != "x" ] do *************** -*** 298,304 **** +*** 298,318 **** # enter groud id -ends ## echo "installing Count.cgi->$CGIBIN_DIR" @@ -93,7 +93,21 @@ echo "installing $CONFIG_FILE->$CONFIG_DIR" $INSTALL_PROG -c -o $UserId -g $GroupId -m 664 $CONFIG_FILE $CONFIG_DIR/$CONFIG_FILE echo "installing sample datafile $SAMPLE_DAT->$DATA_DIR" ---- 298,304 ---- + $INSTALL_PROG -c -o $UserId -g $GroupId -m 664 $SAMPLE_DAT $DATA_DIR/sample.dat + chmod 775 $DATA_DIR + +! echo "installing rgb.txt->$BASE_DIR" +! $INSTALL_PROG -c -o $UserId -g $GroupId -m 644 $Rgbfile $BASE_DIR/rgb.txt + +! echo "creating Log directory $LOG_DIR" +! ./mkdirhier $LOG_DIR +! chown $UserId $LOG_DIR +! chgrp $GroupId $LOG_DIR +! chmod 775 $LOG_DIR + + echo "installing image strip for digit style A->$DIGIT_DIR/A" + $INSTALL_PROG -c -o $UserId -g $GroupId -m 644 $DigitA/strip.gif\ +--- 298,317 ---- # enter groud id -ends ## echo "installing Count.cgi->$CGIBIN_DIR" @@ -101,8 +115,32 @@ echo "installing $CONFIG_FILE->$CONFIG_DIR" $INSTALL_PROG -c -o $UserId -g $GroupId -m 664 $CONFIG_FILE $CONFIG_DIR/$CONFIG_FILE echo "installing sample datafile $SAMPLE_DAT->$DATA_DIR" + $INSTALL_PROG -c -o $UserId -g $GroupId -m 664 $SAMPLE_DAT $DATA_DIR/sample.dat + chmod 775 $DATA_DIR + +! echo "installing rgb.txt->$RGB_DIR" +! $INSTALL_PROG -c -o $UserId -g $GroupId -m 644 $Rgbfile $RGB_DIR/rgb.txt + +! echo "installing $LOG_FILE->$LOG_DIR" +! touch $LOG_DIR/$LOG_FILE +! chmod 644 $LOG_DIR/$LOG_FILE +! chown $UserId.$GroupId $LOG_DIR/$LOG_FILE + + echo "installing image strip for digit style A->$DIGIT_DIR/A" + $INSTALL_PROG -c -o $UserId -g $GroupId -m 644 $DigitA/strip.gif\ +*************** +*** 344,349 **** +--- 343,350 ---- + #chown -R $UserId.$GroupId $BASE_DIR + find $BASE_DIR -exec chown $UserId {} \; + find $BASE_DIR -exec chgrp $GroupId {} \; ++ find $LIB_DIR -exec chown $UserId {} \; ++ find $LIB_DIR -exec chgrp $GroupId {} \; + # echo "UserId=$UserId" + # echo "GroupId=$GroupId" + ;; *************** -*** 358,364 **** +*** 358,374 **** EOM echo "installing Count.cgi->$CGIBIN_DIR" @@ -110,7 +148,17 @@ echo "installing $CONFIG_FILE->$CONFIG_DIR" $INSTALL_PROG -c $CONFIG_FILE $CONFIG_DIR/$CONFIG_FILE echo "installing sample datafile $SAMPLE_DAT->$DATA_DIR" ---- 358,364 ---- + $INSTALL_PROG -c $SAMPLE_DAT $DATA_DIR/sample.dat + +! echo "installing rgb.txt->$BASE_DIR" +! $INSTALL_PROG -c $Rgbfile $BASE_DIR/rgb.txt + +! echo "creating Log directory $LOG_DIR" +! ./mkdirhier $LOG_DIR + + echo "installing image strip for digit style A->$DIGIT_DIR/A" + $INSTALL_PROG -c $DigitA/strip.gif $DIGIT_DIR/A/strip.gif +--- 359,376 ---- EOM echo "installing Count.cgi->$CGIBIN_DIR" @@ -118,3 +166,14 @@ echo "installing $CONFIG_FILE->$CONFIG_DIR" $INSTALL_PROG -c $CONFIG_FILE $CONFIG_DIR/$CONFIG_FILE echo "installing sample datafile $SAMPLE_DAT->$DATA_DIR" + $INSTALL_PROG -c $SAMPLE_DAT $DATA_DIR/sample.dat + +! echo "installing rgb.txt->$RGB_DIR" +! $INSTALL_PROG -c $Rgbfile $RGB_DIR/rgb.txt + +! echo "installing $LOG_FILE->$LOG_DIR" +! touch $LOG_DIR/$LOG_FILE +! chmod 644 $LOG_DIR/$LOG_FILE + + echo "installing image strip for digit style A->$DIGIT_DIR/A" + $INSTALL_PROG -c $DigitA/strip.gif $DIGIT_DIR/A/strip.gif |