~chaffra/+junk/trilinos

« back to all changes in this revision

Viewing changes to packages/Sundance/doc/Doxygen/sundance-linux-mpi-debug

  • Committer: Bazaar Package Importer
  • Author(s): Christophe Prud'homme, Christophe Prud'homme, Johannes Ring
  • Date: 2009-12-13 12:53:22 UTC
  • mfrom: (5.1.2 sid)
  • Revision ID: james.westby@ubuntu.com-20091213125322-in0nrdjc55deqsw9
Tags: 10.0.3.dfsg-1
[Christophe Prud'homme]
* New upstream release

[Johannes Ring]
* debian/patches/libname.patch: Add prefix 'libtrilinos_' to all
  libraries. 
* debian/patches/soname.patch: Add soversion to libraries.
* debian/watch: Update download URL.
* debian/control:
  - Remove python-numeric from Build-Depends (virtual package).
  - Remove automake and autotools from Build-Depends and add cmake to
    reflect switch to CMake.
  - Add python-support to Build-Depends.
* debian/rules: 
  - Cleanup and updates for switch to CMake.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
 
 
3
##################################################################
 
4
#
 
5
# Configuration of Trilinos for use with Sundance
 
6
#
 
7
##################################################################
 
8
 
 
9
 
 
10
BUILD_DIR=`pwd`
 
11
 
 
12
../configure --enable-mpi --with-mpi-compilers \
 
13
CXXFLAGS="-g -O0 -Wreturn-type" \
 
14
--with-libs="-lexpat" \
 
15
--disable-default-packages \
 
16
--enable-teuchos --enable-teuchos-extended \
 
17
--enable-teuchos-complex --enable-teuchos-abc --enable-teuchos-expat \
 
18
--enable-thyra \
 
19
--disable-thyra-tests \
 
20
--disable-thyra-examples \
 
21
--disable-aztecoo-thyra \
 
22
--disable-epetra-thyra \
 
23
--enable-epetra \
 
24
--enable-epetraext \
 
25
--enable-ml \
 
26
--disable-ml-examples \
 
27
--enable-aztecoo \
 
28
--enable-ifpack \
 
29
--enable-nox \
 
30
--disable-loca \
 
31
--with-gnumake \
 
32
--with-install="/usr/bin/install -c -p" \
 
33
--prefix=$BUILD_DIR
 
34
 
 
35