Included graphviz package to buildInstructions (for doxygen build)
[foam-extend-3.0.git] / ThirdParty / AllMake.stage4
blobd222d5ff5985b16a00a7126998fa4ef138718aae
1 #!/bin/bash
2 #------------------------------------------------------------------------------
3 # ========= |
4 # \\ / F ield | foam-extend: Open Source CFD
5 # \\ / O peration |
6 # \\ / A nd | For copyright notice see file Copyright
7 # \\/ M anipulation |
8 #------------------------------------------------------------------------------
9 # License
10 # This file is part of foam-extend.
12 # foam-extend is free software: you can redistribute it and/or modify it
13 # under the terms of the GNU General Public License as published by the
14 # Free Software Foundation, either version 3 of the License, or (at your
15 # option) any later version.
17 # foam-extend is distributed in the hope that it will be useful, but
18 # WITHOUT ANY WARRANTY; without even the implied warranty of
19 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 # General Public License for more details.
22 # You should have received a copy of the GNU General Public License
23 # along with foam-extend. If not, see <http://www.gnu.org/licenses/>.
25 # Script
26 # AllMake.stage4
28 # Description
29 # Build script for ThirdParty packages: Stage3
31 # The OpenFOAM viewers
33 # Requirements:
34 # 1: Your OpenFOAM environment must be properly initialized
35 # 2: AllMake.stage1 if you are overriding your system compiler
36 # 3: AllMake.stage2 if you are overriding your system comm. libraries
38 # Author:
39 # Martin Beaudoin, Hydro-Quebec, (2010)
41 #------------------------------------------------------------------------------
42 # run from third-party directory only
43 cd ${0%/*} || exit 1
45 wmakeCheckPwd "$WM_THIRD_PARTY_DIR" || {
46 echo "Error: Current directory is not \$WM_THIRD_PARTY_DIR"
47 echo " The environment variables are inconsistent with the installation."
48 echo " Check the OpenFOAM entries in your dot-files and source them."
49 exit 1
51 . tools/makeThirdPartyFunctionsForRPM
52 #------------------------------------------------------------------------------
54 echo ========================================
55 echo Starting ThirdParty AllMake: Stage4
56 echo ========================================
57 echo
59 # qt-everywhere-opensource-src-4.8.5
60 if [ ! -z "$QT_THIRD_PARTY" ]
61 then
62 ( 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 )
63 else
64 echo "Using system installed QT"
65 echo ""
68 # Paraview
69 if [ -z "$PARAVIEW_SYSTEM" ]
70 then
71 # Make sure we get the value of QT_BIN_DIR initialized
72 . $WM_PROJECT_DIR/etc/settings.sh
74 if [ -d "$QT_BIN_DIR" -a -r "$QT_BIN_DIR"/qmake ]
75 then
76 ( 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 \
77 -f --define='_qmakePath $QT_BIN_DIR/qmake'
79 else
80 echo "WARNING: "
81 echo "WARNING: Skipping the installation of ParaView-4.0.1."
82 echo "WARNING: Please make sure the QT_BIN_DIR environment variable properly"
83 echo "WARNING: initialized in the file prefs.sh or prefs.csh"
84 echo "WARNING: The command \$QT_BIN_DIR/qmake needs to be valid"
85 echo "WARNING: "
87 else
88 echo "Using system installed ParaView"
89 echo ""
92 echo ========================================
93 echo Done ThirdParty AllMake: Stage4
94 echo ========================================
95 echo
97 # ----------------------------------------------------------------- end-of-file