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


1.5
date	2007.03.20.11.22.10;	author gvermeul;	state dead;
branches;
next	1.4;

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

1.3
date	2006.11.20.17.07.00;	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.03.46.54;	author gvermeul;	state Exp;
branches;
next	;


desc
@@


1.5
log
@Replace build-qwt by build-qwt-qt3 and build-qwt-qt4.
Sync with the latest PyQt4 SVN revision.
@
text
@#!/bin/bash

PKG=qwt-5.0.1

pushd ../SOURCES
if [ ! -f $PKG.tar.bz2 ]; then
    wget $SF/qwt/$PKG.tar.bz2
fi
popd

pushd ../BUILD
rm -rf $PKG
tar xfj ../SOURCES/$PKG.tar.bz2
pushd $PKG

# patch the configuration
perl -pi -e 's|release|debug|g' qwtconfig.pri
perl -pi -e 's|INSTALLBASE/lib|\[QT_INSTALL_PREFIX\]/lib|g' qwtconfig.pri
perl -pi -e 's|INSTALLBASE/include|\[QT_INSTALL_PREFIX\]/include/qwt|g' qwtconfig.pri
perl -pi -e 's|INSTALLBASE/doc|\[QT_INSTALL_PREFIX\]/doc/qwt|g' qwtconfig.pri

# library
(cd src && qmake && make && make install)
# examples
(cd examples && qmake && make)
# designer
(cd designer && qmake && make && make install)
popd # $PKG
popd # ../BUILD

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

@


1.4
log
@Upgrade to the latest releases and snapshots.
Compile Qt and Qwt in debug mode.
@
text
@@


1.3
log
@Upgrade to Qwt-5.0.0rc1.
@
text
@d3 1
a3 1
PKG=qwt-5.0.0rc1
d15 7
d23 1
a23 9
mv qwt.pro qwt.pro.in
head -n -9 qwt.pro.in >qwt.pro 
cat >> qwt.pro <<EOF
include.path += \$\$[QT_INSTALL_PREFIX]/include/qwt
include.files += \$\${HEADERS}
target.path += \$\$[QT_INSTALL_PREFIX]/lib
INSTALLS += include target
EOF
(qmake && make && make install)
@


1.2
log
@Switch from Qt-4.1.4 to Qt-4.2.0.
@
text
@d3 1
a3 1
PKG=qwt-5.0.0rc0
@


1.1
log
@Add build-gccxml, build-qwt, and build-qwtplot3d.
Add build-celementtree, build-elementtree (not needed for Python-2.5)
@
text
@d19 1
a19 1
include.path += $HOME/usr/include/qwt
d21 1
a21 1
target.path += $HOME/usr/lib
@

