# !/bin/csh -f
#>
#> PACT-SCS - define the Source Control System being used
#>
# Modification History:
#   03-21-94 Jan Moura, LLNL:  Added cvs command option control CvsOpt.
#                              Added SCSVersion and SCSRelease.
#   07-07-94 Jan Moura, LLNL:  Added cvs history command
####################
# Source Version: 2.0
# Software Release #92-0043
#
# include "cpyright.h"
#

set SCSName = CVS
set SCSVersion = "2.0"
set SCSRelease = "#92-0043"

#
# new CVS variables
#
set SCSRoot = CVSROOT
set ADM     = CVS

if ($?CVSROOT) then
   if (`expr "$CVSROOT" : '.*\(:\).*'` == "") then
      set SCSLock = $CVSROOT/commit.lock
   else
      set SCSLock = commit.lock
   endif
else
   set SCSLock = commit.lock
endif

# be sure to define the CvsOpt if undefined by this time
if (!($?CvsOpt)) then
   set CvsOpt = ""
endif

if ($CvsOpt != "") then
   echo "Using new  CVS options: "  $CvsOpt
endif

#
# Source Control Systems operations
#
set Commit   = "cvs $CvsOpt  commit"
set History  = "cvs $CvsOpt  history"
set Tag      = "cvs $CvsOpt  rtag"
set Update   = "cvs $CvsOpt  update"
set CheckOut = "cvs $CvsOpt  $SCSRepository co $SRCDate"

