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


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

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


desc
@@


1.2
log
@Upgrade to the latest releases and snapshots.
@
text
@#!/bin/bash

WHERE=http://www.riverbankcomputing.com/static/Downloads/QScintilla2
PKG=QScintilla-gpl-2.3.3-snapshot-20090305
JOBS=$(getconf _NPROCESSORS_ONLN)

pushd ../SOURCES
if [ ! -f $PKG.tar.gz ]; then
    wget $WHERE/$PKG.tar.gz
fi
popd

pushd ../BUILD
rm -rf $PKG
tar xfz ../SOURCES/$PKG.tar.gz
pushd $PKG/Qt4
qmake
make -j $JOBS
make install
popd # $PKG/Qt4
pushd $PKG/designer-Qt4
qmake
make
make install
popd # $PKG/designer-Qt4
pushd $PKG/Python
python configure.py -j $JOBS
make -j $JOBS
make install
popd # $PKG/Python
popd # ../BUILD

# EOF@


1.1
log
@Upgrade to the latest releases and subversion snapshots.
Add build-qscintilla2-svn.
Zap build-celementtree and build-engauge.
@
text
@d4 1
a4 1
PKG=QScintilla-gpl-2.3.1-snapshot-20081004
@

