From 08b8fa28204d86cea6f5e27162afa81843223706 Mon Sep 17 00:00:00 2001 From: vsr Date: Tue, 22 Mar 2016 16:40:51 +0300 Subject: [PATCH] Copyright update: 2016 --- AUTHORS | 0 CALCULATOR_version.h.in | 2 +- CMakeLists.txt | 2 +- ChangeLog | 0 INSTALL | 1 - NEWS | 0 README | 108 ++++++++++++++++-- SalomeCALCULATORConfig.cmake.in | 2 +- adm_local/CMakeLists.txt | 2 +- adm_local/cmake_files/CMakeLists.txt | 2 +- .../cmake_files/FindSalomeCALCULATOR.cmake | 2 +- adm_local/unix/CMakeLists.txt | 2 +- adm_local/unix/config_files/CMakeLists.txt | 2 +- .../unix/config_files/check_CALCULATOR.m4 | 2 +- bin/CMakeLists.txt | 2 +- bin/runCALCULATOR.in | 2 +- bin/runCALCULATOR.py | 2 +- idl/CALCULATOR_Gen.idl | 2 +- idl/CMakeLists.txt | 2 +- resources/CALCULATORCatalog.xml.in | 2 +- resources/CMakeLists.txt | 2 +- resources/SalomeApp.xml.in | 2 +- src/CALCULATOR/CALCULATOR.cxx | 2 +- src/CALCULATOR/CALCULATOR.hxx | 2 +- src/CALCULATOR/CALCULATOR_TEST.py | 2 +- src/CALCULATOR/CMakeLists.txt | 2 +- src/CMakeLists.txt | 2 +- 27 files changed, 118 insertions(+), 35 deletions(-) delete mode 100644 AUTHORS delete mode 100644 ChangeLog delete mode 100644 INSTALL delete mode 100644 NEWS diff --git a/AUTHORS b/AUTHORS deleted file mode 100644 index e69de29..0000000 diff --git a/CALCULATOR_version.h.in b/CALCULATOR_version.h.in index ba167ab..de79bbb 100644 --- a/CALCULATOR_version.h.in +++ b/CALCULATOR_version.h.in @@ -1,4 +1,4 @@ -// Copyright (C) 2007-2015 CEA/DEN, EDF R&D, OPEN CASCADE +// Copyright (C) 2007-2016 CEA/DEN, EDF R&D, OPEN CASCADE // // Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN, // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS diff --git a/CMakeLists.txt b/CMakeLists.txt index d8e60f0..0f83a86 100755 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,4 @@ -# Copyright (C) 2013-2015 CEA/DEN, EDF R&D, OPEN CASCADE +# Copyright (C) 2013-2016 CEA/DEN, EDF R&D, OPEN CASCADE # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public diff --git a/ChangeLog b/ChangeLog deleted file mode 100644 index e69de29..0000000 diff --git a/INSTALL b/INSTALL deleted file mode 100644 index 71fa36c..0000000 --- a/INSTALL +++ /dev/null @@ -1 +0,0 @@ -SALOME2 : CALCULATOR module (sample) diff --git a/NEWS b/NEWS deleted file mode 100644 index e69de29..0000000 diff --git a/README b/README index af49f60..c8b1666 100644 --- a/README +++ b/README @@ -1,16 +1,100 @@ -This module is a Salome example of a module that is interfaced with MED library. +****************************** +About SALOME CALCULATOR sample +****************************** -Installation and compilation is like every Salome modules : - mkdir build_dir - mkdir instal_dir - cd build_dir - cmake -DCMAKE_INSTALL_PREFIX=instal_dir src_dir - make - make install +CALCULATOR module implements a sample of SALOME component. +It shows an example of a module that is interfaced with SALOME MED. -To check Calculator component, you can use CALCULATOR_TEST.py script, -or SUPERVISION graph src_dir/CALCULATOR/graphe1.py +For more information please visit the SALOME platform web site: -Documentation can be found in /doc directory. It was written in sxw format (openoffice) and was converted in pdf. + -Implementation is in /src/CALCULATOR directory. +======= +License +======= + +SALOME platform is distributed under the GNU Lesser General Public License. +See COPYING file for more details. + +Also, additional information can be found at SALOME platform web site: + + + +============ +Installation +============ + +-------------- +Pre-requisites +-------------- + +SALOME platform relies on a set of third-party softwares; some of them are needed +at build time only, while other ones are needed in runtime also. + +For more information about the pre-requisites please visit SALOME platform web +site: + +* Check Release Notes and Software Requirements of the latest SALOME release at + + + +* Pre-requisites page at SALOME web site: + + + +Note: SALOME CALCULATOR needs SALOME KERNEL, SALOME MED modules and MEDCoupling +tool as pre-requisites. + +------------------ +Basic Installation +------------------ + +The build procedure of the SALOME platform is implemented with CMake. +In order to build the module you have to do the following actions: + +1. Set up environment for pre-requisites (see "Pre-requisites" section above). + +2. Create a build directory: + + % mkdir CALCULATOR_BUILD + +3. Configure the build procedure: + + % cd CALCULATOR_BUILD + % cmake -DCMAKE_BUILD_TYPE= -DCMAKE_INSTALL_PREFIX= + + where + - is either Release or Debug (default: Release); + - is a destination folder to install SALOME CALCULATOR + module (default: /usr); + - is a path to the SALOME CALCULATOR sources directory. + + Note: by default (if CMAKE_INSTALL_PREFIX option is not given), SALOME CALCULATOR + module will be configured for installation to the /usr directory that requires + root permissions to complete the installation. + +4. Build and install: + + % make + % make install + + This will install SALOME CALCULATOR module to the + specified to cmake command on the previous step. + +------------------- +Custom installation +------------------- + +SALOME CALCULATOR module supports a set of advanced configuration options; +for more details learn CMakeLists.txt file in the root source directory. + +You can also use other options of cmake command to customize your installation. +Learn more about available options by typing + + % cmake --help + +=============== +Troubleshooting +=============== + +Please, send a mail to webmaster.salome@opencascade.com. diff --git a/SalomeCALCULATORConfig.cmake.in b/SalomeCALCULATORConfig.cmake.in index 5ce1d6b..85f1426 100644 --- a/SalomeCALCULATORConfig.cmake.in +++ b/SalomeCALCULATORConfig.cmake.in @@ -1,4 +1,4 @@ -# Copyright (C) 2013-2015 CEA/DEN, EDF R&D, OPEN CASCADE +# Copyright (C) 2013-2016 CEA/DEN, EDF R&D, OPEN CASCADE # # Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN, # CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS diff --git a/adm_local/CMakeLists.txt b/adm_local/CMakeLists.txt index 3f18151..4150922 100755 --- a/adm_local/CMakeLists.txt +++ b/adm_local/CMakeLists.txt @@ -1,4 +1,4 @@ -# Copyright (C) 2007-2015 CEA/DEN, EDF R&D, OPEN CASCADE +# Copyright (C) 2007-2016 CEA/DEN, EDF R&D, OPEN CASCADE # # Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN, # CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS diff --git a/adm_local/cmake_files/CMakeLists.txt b/adm_local/cmake_files/CMakeLists.txt index caab308..2522723 100755 --- a/adm_local/cmake_files/CMakeLists.txt +++ b/adm_local/cmake_files/CMakeLists.txt @@ -1,4 +1,4 @@ -# Copyright (C) 2013-2015 CEA/DEN, EDF R&D, OPEN CASCADE +# Copyright (C) 2013-2016 CEA/DEN, EDF R&D, OPEN CASCADE # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public diff --git a/adm_local/cmake_files/FindSalomeCALCULATOR.cmake b/adm_local/cmake_files/FindSalomeCALCULATOR.cmake index f594638..e33c452 100644 --- a/adm_local/cmake_files/FindSalomeCALCULATOR.cmake +++ b/adm_local/cmake_files/FindSalomeCALCULATOR.cmake @@ -1,4 +1,4 @@ -# Copyright (C) 2007-2015 CEA/DEN, EDF R&D, OPEN CASCADE +# Copyright (C) 2007-2016 CEA/DEN, EDF R&D, OPEN CASCADE # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public diff --git a/adm_local/unix/CMakeLists.txt b/adm_local/unix/CMakeLists.txt index b07e95b..758e103 100755 --- a/adm_local/unix/CMakeLists.txt +++ b/adm_local/unix/CMakeLists.txt @@ -1,4 +1,4 @@ -# Copyright (C) 2013-2015 CEA/DEN, EDF R&D, OPEN CASCADE +# Copyright (C) 2013-2016 CEA/DEN, EDF R&D, OPEN CASCADE # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public diff --git a/adm_local/unix/config_files/CMakeLists.txt b/adm_local/unix/config_files/CMakeLists.txt index d848c02..6048656 100755 --- a/adm_local/unix/config_files/CMakeLists.txt +++ b/adm_local/unix/config_files/CMakeLists.txt @@ -1,4 +1,4 @@ -# Copyright (C) 2007-2015 CEA/DEN, EDF R&D, OPEN CASCADE +# Copyright (C) 2007-2016 CEA/DEN, EDF R&D, OPEN CASCADE # # Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN, # CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS diff --git a/adm_local/unix/config_files/check_CALCULATOR.m4 b/adm_local/unix/config_files/check_CALCULATOR.m4 index 12e6fbd..b81ee3a 100755 --- a/adm_local/unix/config_files/check_CALCULATOR.m4 +++ b/adm_local/unix/config_files/check_CALCULATOR.m4 @@ -1,4 +1,4 @@ -dnl Copyright (C) 2007-2015 CEA/DEN, EDF R&D, OPEN CASCADE +dnl Copyright (C) 2007-2016 CEA/DEN, EDF R&D, OPEN CASCADE dnl dnl Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN, dnl CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS diff --git a/bin/CMakeLists.txt b/bin/CMakeLists.txt index 6f72fde..f1f9c0e 100755 --- a/bin/CMakeLists.txt +++ b/bin/CMakeLists.txt @@ -1,4 +1,4 @@ -# Copyright (C) 2013-2015 CEA/DEN, EDF R&D, OPEN CASCADE +# Copyright (C) 2013-2016 CEA/DEN, EDF R&D, OPEN CASCADE # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public diff --git a/bin/runCALCULATOR.in b/bin/runCALCULATOR.in index c27bd01..e6e6852 100755 --- a/bin/runCALCULATOR.in +++ b/bin/runCALCULATOR.in @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2007-2015 CEA/DEN, EDF R&D, OPEN CASCADE +# Copyright (C) 2007-2016 CEA/DEN, EDF R&D, OPEN CASCADE # # Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN, # CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS diff --git a/bin/runCALCULATOR.py b/bin/runCALCULATOR.py index eb7667e..6b08223 100755 --- a/bin/runCALCULATOR.py +++ b/bin/runCALCULATOR.py @@ -1,5 +1,5 @@ #!/usr/bin/env python -# Copyright (C) 2007-2015 CEA/DEN, EDF R&D, OPEN CASCADE +# Copyright (C) 2007-2016 CEA/DEN, EDF R&D, OPEN CASCADE # # Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN, # CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS diff --git a/idl/CALCULATOR_Gen.idl b/idl/CALCULATOR_Gen.idl index 59d7b51..ca9bdcc 100644 --- a/idl/CALCULATOR_Gen.idl +++ b/idl/CALCULATOR_Gen.idl @@ -1,4 +1,4 @@ -// Copyright (C) 2007-2015 CEA/DEN, EDF R&D, OPEN CASCADE +// Copyright (C) 2007-2016 CEA/DEN, EDF R&D, OPEN CASCADE // // Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN, // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS diff --git a/idl/CMakeLists.txt b/idl/CMakeLists.txt index 766e00e..b38d262 100755 --- a/idl/CMakeLists.txt +++ b/idl/CMakeLists.txt @@ -1,4 +1,4 @@ -# Copyright (C) 2013-2015 CEA/DEN, EDF R&D, OPEN CASCADE +# Copyright (C) 2013-2016 CEA/DEN, EDF R&D, OPEN CASCADE # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public diff --git a/resources/CALCULATORCatalog.xml.in b/resources/CALCULATORCatalog.xml.in index bbf0b00..3ec2c62 100644 --- a/resources/CALCULATORCatalog.xml.in +++ b/resources/CALCULATORCatalog.xml.in @@ -1,6 +1,6 @@