head	1.6;
access;
symbols;
locks; strict;
comment	@# @;


1.6
date	2008.04.13.10.33.02;	author gvermeul;	state Exp;
branches;
next	1.5;

1.5
date	2008.04.12.18.39.01;	author gvermeul;	state Exp;
branches;
next	1.4;

1.4
date	2007.04.22.14.58.17;	author gvermeul;	state Exp;
branches;
next	1.3;

1.3
date	2007.03.08.06.48.37;	author gvermeul;	state Exp;
branches;
next	1.2;

1.2
date	2006.10.08.07.13.48;	author gvermeul;	state Exp;
branches;
next	1.1;

1.1
date	2006.09.24.04.57.19;	author gvermeul;	state Exp;
branches;
next	;


desc
@@


1.6
log
@Back out to Qt-4.3.4.
@
text
@#!/bin/bash

PKG=Coin-2.5.0
JOBS=$(getconf _NPROCESSORS_ONLN)

pushd ../SOURCES
if [ ! -f $PKG.tar.gz ]; then
    wget http://ftp.coin3d.org/coin/src/$PKG.tar.gz
fi
popd

pushd ../BUILD
rm -rf $PKG
tar xfz ../SOURCES/$PKG.tar.gz
pushd $PKG
./configure --prefix $HOME/usr/lib/qt4.3 --enable-threads --enable-threadsafe
make -j $JOBS
make install

make docs/coin.doxygen
pushd docs
doxygen -u coin.doxygen
cat >> coin.doxygen << EOF
GENERATE_HTML = yes
HTML_HEADER =
HTML_FOOTER =
HTML_STYLESHEET =
HAVE_DOT = yes
EOF
doxygen coin.doxygen
rm -f html/*.{map,md5}
mkdir -p $HOME/usr/share/doc/$PKG
cp -r html $HOME/usr/share/doc/$PKG
popd # docs

make install

popd # $PKG
popd # ../BUILD

# Local Variables: ***
# mode: sh ***
# End: ***

@


1.5
log
@Upgrade to Qt-4.4rc1 and to latest releases and snapshots.
@
text
@d16 1
a16 1
./configure --prefix $HOME/usr/lib/qt4.4 --enable-threads --enable-threadsafe
@


1.4
log
@Sync with the latest releases.
@
text
@d3 1
a3 1
PKG=Coin-2.4.6
d16 1
a16 1
./configure --prefix $HOME/usr/lib/qt4.2 --enable-threads --enable-threadsafe
@


1.3
log
@Add generation of documentation.
@
text
@d3 1
a3 1
PKG=Coin-2.4.5
@


1.2
log
@Switch from Qt-4.1.4 to Qt-4.2.0.
@
text
@d19 19
@


1.1
log
@Add the build files for Coin3D.
@
text
@d16 1
a16 1
./configure --prefix $HOME/usr/lib/qt4.1 --enable-threads --enable-threadsafe
@

