#!/bin/bash #------------------------------------------------------------------------------ # ========= | # \\ / F ield | foam-extend: Open Source CFD # \\ / O peration | # \\ / A nd | For copyright notice see file Copyright # \\/ M anipulation | #------------------------------------------------------------------------------ # License # This file is part of foam-extend. # # foam-extend 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. # # foam-extend 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 foam-extend. If not, see . # # Script # AllMake.stage4 # # Description # Build script for ThirdParty packages: Stage4 # # The foam-extend viewers # # Requirements: # 1: Your foam-extend 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 foam-extend 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.8.5 if [ ! -z "$QT_THIRD_PARTY" ] then ( rpm_make -p qt-everywhere-opensource-src-4.8.5 -s qt-everywhere-opensource-src-4.8.5.spec -u http://download.qt-project.org/official_releases/qt/4.8/4.8.5/qt-everywhere-opensource-src-4.8.5.tar.gz ) else echo "Using system installed QT" echo "" fi # Paraview if [ -z "$PARAVIEW_SYSTEM" ] then # Make sure we get the value of QT_BIN_DIR initialized . $WM_PROJECT_DIR/etc/settings.sh if [ -d "$QT_BIN_DIR" -a -r "$QT_BIN_DIR"/qmake ] then ( rpm_make -p ParaView-4.0.1 -s ParaView-4.0.1.spec -u http://www.paraview.org/files/v4.0/ParaView-v4.0.1-source.tgz \ -f --define='_qmakePath $QT_BIN_DIR/qmake' ) else echo "WARNING: " echo "WARNING: Skipping the installation of ParaView-4.0.1." echo "WARNING: Please make sure the QT_BIN_DIR environment variable properly" echo "WARNING: initialized in the file prefs.sh or prefs.csh" echo "WARNING: The command \$QT_BIN_DIR/qmake needs to be valid" echo "WARNING: " fi else echo "Using system installed ParaView" echo "" fi echo ======================================== echo Done ThirdParty AllMake: Stage4 echo ======================================== echo # ----------------------------------------------------------------- end-of-file