From dc73cc2aaf06d3ff402bbc061747fda6ca1e1d10 Mon Sep 17 00:00:00 2001 From: vsr Date: Tue, 22 Mar 2016 20:00:28 +0300 Subject: [PATCH] Copyright update: 2016 --- AUTHORS | 0 CMakeLists.txt | 2 +- ChangeLog | 0 INSTALL | 1 - NEWS | 0 README | 109 ++++++++++++++++-- SalomeRANDOMIZERConfig.cmake.in | 2 +- adm_local/CMakeLists.txt | 2 +- adm_local/cmake_files/CMakeLists.txt | 2 +- .../cmake_files/FindSalomeRANDOMIZER.cmake | 2 +- adm_local/unix/CMakeLists.txt | 2 +- adm_local/unix/config_files/CMakeLists.txt | 2 +- .../unix/config_files/check_RANDOMIZER.m4 | 2 +- bin/CMakeLists.txt | 2 +- idl/CMakeLists.txt | 2 +- idl/Randomizer.idl | 2 +- resources/CMakeLists.txt | 2 +- resources/RANDOMIZERCatalog.xml.in | 2 +- resources/SalomeApp.xml.in | 2 +- src/CMakeLists.txt | 2 +- src/Randomizer/CMakeLists.txt | 2 +- src/Randomizer/RANDOMIZER.py | 2 +- 22 files changed, 117 insertions(+), 27 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/CMakeLists.txt b/CMakeLists.txt index 99c55f9..b3dae23 100755 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,4 @@ -# Copyright (C) 2013-2015 OPEN CASCADE +# Copyright (C) 2013-2016 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 1279d94..0000000 --- a/INSTALL +++ /dev/null @@ -1 +0,0 @@ -SALOME2 : RANDOMIZER module (sample) diff --git a/NEWS b/NEWS deleted file mode 100644 index e69de29..0000000 diff --git a/README b/README index c640430..a7372fd 100644 --- a/README +++ b/README @@ -1,9 +1,100 @@ -This module is a Salome example of a module that is interfaced with MED library. - -Installation and compilation is like every Salome modules : - mkdir build_dir - mkdir instal_dir - cd build_dir - cmake -DCMAKE_BUILD_TYPE=Debug -DCMAKE_INSTALL_PREFIX=instal_dir ../src_dir - make - make install +****************************** +About SALOME RANDOMIZER sample +****************************** + +RANDOMIZER is a simple example of SALOME module written in Python and +implementing services via CORBA interface. It works in conjunction +with SALOME SIERPINSKY sample module. + +For more information please visit the SALOME platform web site: + + + +======= +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 RANDOMIZER needs SALOME KERNEL as a pre-requisite. + +------------------ +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 RANDOMIZER_BUILD + +3. Configure the build procedure: + + % cd RANDOMIZER_BUILD + % cmake -DCMAKE_BUILD_TYPE= -DCMAKE_INSTALL_PREFIX= + + where + - is either Release or Debug (default: Release); + - is a destination folder to install SALOME RANDOMIZER + module (default: /usr); + - is a path to the SALOME RANDOMIZER sources directory. + + Note: by default (if CMAKE_INSTALL_PREFIX option is not given), SALOME RANDOMIZER + 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 RANDOMIZER module to the + specified to cmake command on the previous step. + +------------------- +Custom installation +------------------- + +SALOME RANDOMIZER 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/SalomeRANDOMIZERConfig.cmake.in b/SalomeRANDOMIZERConfig.cmake.in index 1495d92..0b64ff9 100644 --- a/SalomeRANDOMIZERConfig.cmake.in +++ b/SalomeRANDOMIZERConfig.cmake.in @@ -5,7 +5,7 @@ # ############################################################### -# Copyright (C) 2013-2015 OPEN CASCADE +# Copyright (C) 2013-2016 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/CMakeLists.txt b/adm_local/CMakeLists.txt index 6e8e91c..b01f446 100755 --- a/adm_local/CMakeLists.txt +++ b/adm_local/CMakeLists.txt @@ -1,4 +1,4 @@ -# Copyright (C) 2013-2015 OPEN CASCADE +# Copyright (C) 2013-2016 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/CMakeLists.txt b/adm_local/cmake_files/CMakeLists.txt index 85cf0ca..9548e8a 100755 --- a/adm_local/cmake_files/CMakeLists.txt +++ b/adm_local/cmake_files/CMakeLists.txt @@ -1,4 +1,4 @@ -# Copyright (C) 2013-2015 OPEN CASCADE +# Copyright (C) 2013-2016 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/FindSalomeRANDOMIZER.cmake b/adm_local/cmake_files/FindSalomeRANDOMIZER.cmake index c76bb6e..c897fa1 100644 --- a/adm_local/cmake_files/FindSalomeRANDOMIZER.cmake +++ b/adm_local/cmake_files/FindSalomeRANDOMIZER.cmake @@ -1,4 +1,4 @@ -# Copyright (C) 2013-2015 OPEN CASCADE +# Copyright (C) 2013-2016 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 800c376..cdd76eb 100755 --- a/adm_local/unix/CMakeLists.txt +++ b/adm_local/unix/CMakeLists.txt @@ -1,4 +1,4 @@ -# Copyright (C) 2013-2015 OPEN CASCADE +# Copyright (C) 2013-2016 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 56492c6..9fe9259 100755 --- a/adm_local/unix/config_files/CMakeLists.txt +++ b/adm_local/unix/config_files/CMakeLists.txt @@ -1,4 +1,4 @@ -# Copyright (C) 2013-2015 OPEN CASCADE +# Copyright (C) 2013-2016 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/check_RANDOMIZER.m4 b/adm_local/unix/config_files/check_RANDOMIZER.m4 index c981787..99a8533 100755 --- a/adm_local/unix/config_files/check_RANDOMIZER.m4 +++ b/adm_local/unix/config_files/check_RANDOMIZER.m4 @@ -1,4 +1,4 @@ -dnl Copyright (C) 2005-2015 OPEN CASCADE +dnl Copyright (C) 2005-2016 OPEN CASCADE dnl dnl This library is free software; you can redistribute it and/or dnl modify it under the terms of the GNU Lesser General Public diff --git a/bin/CMakeLists.txt b/bin/CMakeLists.txt index 5d4b391..c6576c8 100644 --- a/bin/CMakeLists.txt +++ b/bin/CMakeLists.txt @@ -1,4 +1,4 @@ -# Copyright (C) 2013-2015 OPEN CASCADE +# Copyright (C) 2013-2016 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/idl/CMakeLists.txt b/idl/CMakeLists.txt index 46e8702..13b3235 100755 --- a/idl/CMakeLists.txt +++ b/idl/CMakeLists.txt @@ -1,4 +1,4 @@ -# Copyright (C) 2013-2015 OPEN CASCADE +# Copyright (C) 2013-2016 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/idl/Randomizer.idl b/idl/Randomizer.idl index db153ef..aa2cedb 100644 --- a/idl/Randomizer.idl +++ b/idl/Randomizer.idl @@ -1,4 +1,4 @@ -// Copyright (C) 2005-2015 OPEN CASCADE +// Copyright (C) 2005-2016 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/CMakeLists.txt b/resources/CMakeLists.txt index 0144eb9..70a4f67 100755 --- a/resources/CMakeLists.txt +++ b/resources/CMakeLists.txt @@ -1,4 +1,4 @@ -# Copyright (C) 2013-2015 OPEN CASCADE +# Copyright (C) 2013-2016 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/RANDOMIZERCatalog.xml.in b/resources/RANDOMIZERCatalog.xml.in index 4a262e4..781ec90 100644 --- a/resources/RANDOMIZERCatalog.xml.in +++ b/resources/RANDOMIZERCatalog.xml.in @@ -1,6 +1,6 @@