From: bri Date: Mon, 10 Feb 2014 14:06:14 +0000 (+0400) Subject: - X-Git-Tag: Delivery_V1_0_2013_07_12~25 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=ecbfc4146c6aeb30cb7e7704da52f34108740290;p=tools%2Fsimanio.git - --- diff --git a/scripts/README b/scripts/README index 9fdc9f0..979b32b 100644 --- a/scripts/README +++ b/scripts/README @@ -4,7 +4,7 @@ How prepare runnable SALOME-SIMAN code 2. Take from CVS SALOME-SIMAN code for branch "BR_siman_phase1" based on SALOME 6.5.0 -starting from SIMAN repository like : +Start from SIMAN repository like : cvs -d :pserver:bri@cvs.opencascade.com:/home/server/cvs/SIMAN checkout SIMANIO_SRC Move the required product wso2-wsf-cpp-2.1.0 and all scripts to SALOME root directory diff --git a/scripts/build.csh b/scripts/build.csh deleted file mode 100644 index 8eb0a32..0000000 --- a/scripts/build.csh +++ /dev/null @@ -1,463 +0,0 @@ -#!/bin/csh -f - -#################################################################################### -# File : build.csh -# Created : Thu Jan 27 09:50:55 2005 -# Author : Vadim SANDLER, Open CASCADE SAS (vadim.sandler@opencascade.com) -# Project : SALOME -# Module : Installation Wizard -# Copyright : 2002-2012 CEA -# -# This script is the part of the SALOME installation procedure. -# -# This script can be used to build and install SALOME modules from sources. -# Try build.csh -h for more details about usage. -# -#################################################################################### - -set is_build_configure=0 -set is_configure=0 -set inst_with_gui=1 -set is_delete=0 -set verbose_level=2 -set params="" -set modules=(KERNEL GUI GEOM MED SMESH VISU PARAVIS YACS NETGENPLUGIN GHS3DPLUGIN BLSURFPLUGIN HexoticPLUGIN GHS3DPRLPLUGIN COMPONENT PYCALCULATOR CALCULATOR HELLO PYHELLO LIGHT PYLIGHT SIERPINSKY RANDOMIZER HEXABLOCK HEXABLOCKPLUGIN ATOMIC ATOMGEN ATOMSOLV HOMARD JOBMANAGER) -set optim="" -set is_install=1 -set is_help=0 -set is_tui=0 -set prefix="" -set def_install_dir="/INSTALL" -set b_params="" - -######################################################### -# parse parameters -######################################################### -while ( ${%1} > 0 ) - if ( "$1" == "-b" ) then - set is_build_configure=1 - set is_configure=1 - else if ( "$1" == "-c" ) then - set is_configure=1 - else if ( "$1" == "-w" ) then - set inst_with_gui=0 - else if ( "$1" == "-d" ) then - set is_delete=1 - else if ( "$1" == "-o" ) then - set optim="--enable-production=yes --disable-debug" - else if ( "$1" == "-v" ) then - shift - set verbose_level=$1 - else if ( "$1" == "-p" ) then - shift - set is_install=1 - set prefix=$1 - else if ( "$1" == "-h" ) then - set is_help=1 - else if ( "$1" == "-t" ) then - set is_tui=1 - else - set ckt=`echo ${modules} | grep -E "\<$1\>"` - if ( "$ckt" != "" ) then - set params="$params $1" - else - set b_params="$b_params $1" - echo "\!\!\! Warning \!\!\! Unknown module: $1." - endif - endif - shift -end - -######################################################### -# if -h option is given - print help info and exit -######################################################### -if ( $is_help == 1 ) then -echo "" -echo "" -echo "Description:" -echo " Builds given SALOME modules by performing make and make install commands" -echo "" -echo "Usage:" -echo " build.csh [