#!/bin/bash #------------------------------------------------------------------------------ # ========= | # \\ / F ield | OpenFOAM: The Open Source CFD Toolbox # \\ / O peration | # \\ / A nd | Copyright held by original author # \\/ M anipulation | #------------------------------------------------------------------------------ # License # This file is part of OpenFOAM. # # OpenFOAM is free software: you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # OpenFOAM is distributed in the hope that it will be useful, but WITHOUT # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License # for more details. # # You should have received a copy of the GNU General Public License # along with OpenFOAM. If not, see . # # Script # AllMake.stage4 # # Description # Build script for ThirdParty packages: Stage3 # # The OpenFOAM viewers # # Requirements: # 1: Your OpenFOAM environment must be properly initialized # 2: AllMake.stage1 if you are overriding your system compiler # 3: AllMake.stage2 if you are overriding your system comm. libraries # # Author: # Martin Beaudoin, Hydro-Quebec, (2010) # #------------------------------------------------------------------------------ # run from third-party directory only cd ${0%/*} || exit 1 wmakeCheckPwd "$WM_THIRD_PARTY_DIR" || { echo "Error: Current directory is not \$WM_THIRD_PARTY_DIR" echo " The environment variables are inconsistent with the installation." echo " Check the OpenFOAM entries in your dot-files and source them." exit 1 } . tools/makeThirdPartyFunctionsForRPM #------------------------------------------------------------------------------ echo ======================================== echo Starting ThirdParty AllMake: Stage4 echo ======================================== echo # qt-everywhere-opensource-src-4.7.0 #( rpm_make qt-everywhere-opensource-src-4.7.0 http://get.qt.nokia.com/qt/source/qt-everywhere-opensource-src-4.7.0.tar.gz ) # paraview if [ -d "$QT_DIR" -a -r "$QT_DIR"/bin/qmake ] then ( rpm_make ParaView-3.8.1 http://www.paraview.org/files/v3.8/ParaView-3.8.1.tar.gz \ -D '_qmakePath $QT_DIR/bin/qmake' ) else echo "WARNING: Skipping the installation of ParaView-3.8.1." echo "WARNING: Please initialize the QT_DIR environment variable to your QT installation directory." echo "WARNING: The command \$QT_DIR/bin/qmake needs to be valid" echo "WARNING: " fi echo ======================================== echo Done ThirdParty AllMake: Stage4 echo ======================================== echo # ----------------------------------------------------------------- end-of-file