AllMake.stage3: new URL for libccmio-2.6.1. Bug fix from Hakan Nilsson and Niels...
[openfoam-extend-OpenFOAM-1.6-ext.git] / ThirdParty / AllMake.stage3
blobf0e8ff171ac6b5b5ce4fc4f1cd3cfbd00a44547b
1 #!/bin/bash
2 #------------------------------------------------------------------------------
3 # ========= |
4 # \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
5 # \\ / O peration |
6 # \\ / A nd | Copyright held by original author
7 # \\/ M anipulation |
8 #------------------------------------------------------------------------------
9 # License
10 # This file is part of OpenFOAM.
12 # OpenFOAM is free software: you can redistribute it and/or modify it
13 # under the terms of the GNU General Public License as published by
14 # the Free Software Foundation, either version 3 of the License, or
15 # (at your option) any later version.
17 # OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
18 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
19 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
20 # for more details.
22 # You should have received a copy of the GNU General Public License
23 # along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
25 # Script
26 # AllMake.stage3
28 # Description
29 # Build script for ThirdParty packages: Stage3
31 # The ThirdParty libraries
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: Stage3
56 echo ========================================
57 echo
59 # Metis
60 if [ -z "$METIS_SYSTEM" ]
61 then
62 ( rpm_make -p metis-5.0pre2 -s metis-5.0pre2.spec -u http://glaros.dtc.umn.edu/gkhome/fetch/sw/metis/OLD/metis-5.0pre2.tar.gz )
63 else
64 echo "Using system installed Metis"
65 echo ""
68 # ParMGridGen
69 if [ -z "$PARMGRIDGEN_SYSTEM" ]
70 then
71 ( rpm_make -p ParMGridGen-1.0 -s ParMGridGen-1.0.spec -u http://www.mgnet.org/mgnet/Codes/parmgridgen/ParMGridGen-1.0.tar.gz )
72 else
73 echo "Using system installed ParMGridGen"
74 echo ""
77 # Libccmio
78 if [ -z "$LIBCCMIO_SYSTEM" ]
79 then
80 ( rpm_make -p libccmio-2.6.1 -s libccmio-2.6.1.spec -u http://portal.nersc.gov/svn/visit/tags/2.4.2/third_party/libccmio-2.6.1.tar.gz )
81 else
82 echo "Using system installed Libccmio"
83 echo ""
86 # Mesquite
87 if [ -z "$MESQUITE_SYSTEM" ]
88 then
89 ( rpm_make -p mesquite-2.1.2 -s mesquite-2.1.2.spec -u http://software.sandia.gov/~jakraft/mesquite-2.1.2.tar.gz )
90 else
91 echo "Using system installed Mesquite"
92 echo ""
95 # The following three packages depends on the availability of OpenMPI
96 # The macro rpm_make() will make sure to update the ThirdParty environment variables before starting
97 # the compilation.
98 # Just make sure the OpenMPI environment variables are properly initialized, or that
99 # the AllMake.stage2 script completed correctly
101 # Scotch
102 if [ -z "$SCOTCH_SYSTEM" ]
103 then
104 ( rpm_make -p scotch-5.1.10b -s scotch-5.1.10b.spec -u https://gforge.inria.fr/frs/download.php/27583/scotch-5.1.10b.tar.gz )
105 else
106 echo "Using system installed Scotch"
107 echo ""
110 # ParMetis
111 if [ -z "$PARMETIS_SYSTEM" ]
112 then
113 ( rpm_make -p ParMetis-3.1.1 -s ParMetis-3.1.1.spec -u http://glaros.dtc.umn.edu/gkhome/fetch/sw/parmetis/OLD/ParMetis-3.1.1.tar.gz )
114 else
115 echo "Using system installed ParMetis"
116 echo ""
119 ## Zoltan
120 #if [ -z "$ZOLTAN_SYSTEM" ]
121 #then
122 # ( rpm_make -p zoltan-3.5 -s zoltan-3.5.spec -u http://www.cs.sandia.gov/~kddevin/Zoltan_Distributions/zoltan_distrib_v3.5.tar.gz )
123 #else
124 # echo "Using system installed Zoltan"
125 # echo ""
128 echo ========================================
129 echo Done ThirdParty AllMake: Stage3
130 echo ========================================
131 echo
133 # ----------------------------------------------------------------- end-of-file