~ubuntu-branches/ubuntu/trusty/rheolef/trusty

« back to all changes in this revision

Viewing changes to config/rheolef-config.in

  • Committer: Package Import Robot
  • Author(s): Pierre Saramito
  • Date: 2012-04-06 09:12:21 UTC
  • mfrom: (1.1.5)
  • Revision ID: package-import@ubuntu.com-20120406091221-m58me99p1nxqui49
Tags: 6.0-1
* New upstream release 6.0 (major changes):
  - massively distributed and parallel support
  - full FEM characteristic method (Lagrange-Gakerkin method) support
  - enhanced users documentation 
  - source code supports g++-4.7 (closes: #667356)
* debian/control: dependencies for MPI distributed solvers added
* debian/rules: build commands simplified
* debian/librheolef-dev.install: man1/* to man9/* added
* debian/changelog: package description rewritted (closes: #661689)

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
# --------------------------------------------------------------------------
22
22
 
23
23
#Prog:rheolef-config
24
 
#NAME: rheolef-config -- get installation directories
 
24
#NAME: @code{rheolef-config} -- get installation directories
25
25
#@pindex rheolef-config
26
26
#@cindex installing
27
27
#@cindex configure
109
109
#       the library interface version.
110
110
#@itemx --hardcode-libdir-flag-spec
111
111
#       flag to hardcode a libdir into a binary during linking.
 
112
#@itemx --is-distributed
 
113
#       true or false: whether it is the distributed version.
112
114
#@end table
113
115
#
114
116
#DATE:
127
129
includedir=@includedir@
128
130
docdir=@prefix@/share/doc/@doc_dir@
129
131
exampledir=$docdir/examples
130
 
includes="@CFLAGS@ -I@includedir@ -I@libdir@"
131
 
libs="-L@libdir@ -lrheolef @LIBS_UMFPACK@ @LIBS_SPOOLES@ @LIBS_TAUCS@ @LDADD_FLOAT@ @LDADD_DMALLOC@ @HARDCODE_LIBDIR_FLAG_SPEC@"
132
 
ldadd="@libdir@/librheolef.la @LDADD_SPOOLES@ @LDADD_TAUCS@ @LDADD_FLOAT@ @LDADD_DMALLOC@ @LDFLAGS@"
133
 
shlibpath_var="@SHLIBPATH_VAR@"
 
132
includes="@CXXFLAGS@ @INCLUDES_FLOAT@ @INCLUDES_MPI@ @INCLUDES_BOOST_MPI@ @INCLUDES_BLAS@ @INCLUDES_SCOTCH@ @INCLUDES_PARMETIS@ @INCLUDES_PASTIX@ @INCLUDES_CGAL@ -I@includedir@ -I@libdir@"
 
133
libs="-L@libdir@ -lrheolef    @LDADD_CGAL@ @LIBS_UMFPACK@ @LIBS_SPOOLES@ @LDADD_PASTIX@ @LDADD_SCOTCH@ @LDADD_PARMETIS@ @LDADD_BLAS@ @LDADD_BOOST_MPI@ @LDADD_MPI@ @LDADD_FLOAT@ @RHEOLEF_HARDCODE_LIBDIR_FLAG_SPEC@"
 
134
ldadd="@libdir@/librheolef.la @LDADD_CGAL@ @LIBS_UMFPACK@ @LIBS_SPOOLES@ @LDADD_PASTIX@ @LDADD_SCOTCH@ @LDADD_PARMETIS@ @LDADD_BLAS@ @LDADD_BOOST_MPI@ @LDADD_MPI@ @LDADD_FLOAT@ @RHEOLEF_HARDCODE_LIBDIR_FLAG_SPEC@"
134
135
library_interface_version=@LIBRARY_VERSION@
135
 
hardcode_libdir_flag_spec="@HARDCODE_LIBDIR_FLAG_SPEC@"
 
136
shlibpath_var="@RHEOLEF_SHLIBPATH_VAR@"
 
137
hardcode_libdir_flag_spec="@RHEOLEF_HARDCODE_LIBDIR_FLAG_SPEC@"
 
138
use_distributed="@USE_DISTRIBUTED@"
136
139
 
137
140
usage="rheolef-config
138
141
        [--version
155
158
        | --shlibpath-var
156
159
        | --library-interface-version
157
160
        | --hardcode-libdir-flag-spec
 
161
        | --is-distributed
158
162
        | --check]
159
163
"
160
164
 
185
189
  --shlibpath-var) echo ${shlibpath_var};;
186
190
  --library-interface-version) echo ${library_interface_version};;
187
191
  --hardcode-libdir-flag-spec) echo ${hardcode_libdir_flag_spec};;
 
192
  --is-distributed) echo ${use_distributed};;
188
193
  --check) /bin/sh ${datadir}/rheolef/check-shlibpath_var.sh \
189
194
                ${shlibpath_var} ${libdir} ${bindir};;
190
195
  *) echo ${usage} >&2; exit 1;;