Date: Wednesday, April 10, 2013 @ 10:22:30 Author: svenstaro Revision: 88024
upgpkg: wt 3.3.0-1 Upating to 3.3.0, built with clang this time to avoid gcc segfault Modified: wt/trunk/PKGBUILD ----------+ PKGBUILD | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2013-04-10 08:08:06 UTC (rev 88023) +++ PKGBUILD 2013-04-10 08:22:30 UTC (rev 88024) @@ -3,16 +3,19 @@ # Maintainer: Sven-Hendrik Haase <[email protected]> # Contributor: Denis Martinez <[email protected]> +# TODO: Remove this note and change back to gcc once gcc 4.8.1 is out +# It fixes a segfault while building the examples. + pkgname=wt -pkgver=3.2.3 -_pkgver=3.2.3 -pkgrel=6 +pkgver=3.3.0 +_pkgver=3.3.0 +pkgrel=1 pkgdesc="a C++ library and application server for developing and deploying web applications" arch=('i686' 'x86_64') url="http://www.webtoolkit.eu/" license=('GPL') depends=('boost-libs' 'libharu') -makedepends=('boost' 'cmake>=2.8' 'postgresql-libs' 'zlib' 'fcgi' 'sqlite' 'graphicsmagick' 'pango' 'mysql++' 'qt5-base') +makedepends=('boost' 'cmake>=2.8' 'postgresql-libs' 'zlib' 'fcgi' 'sqlite' 'graphicsmagick' 'pango' 'mysql++' 'qt4' 'clang') optdepends=('openssl: for SSL support in built-in webserver' 'zlib: for compression in HTTP protocol' 'fcgi: for FastCGI support' @@ -21,17 +24,17 @@ 'graphicsmagick: for raster image support (WRasterImage)' 'pango: for advanced font rendering (WRasterImage)' 'mysql++: for the hangman example' - 'qt: for the Wt/Qt interopability example (wtwithqt)') + 'qt4: for the Wt/Qt interopability example (wtwithqt)') backup=('etc/wt/wt_config.xml') source=(http://downloads.sourceforge.net/witty/$pkgname-${_pkgver}.tar.gz) -md5sums=('58922ba5d68104880adbe2e022132fb5') +md5sums=('b2331942ad01c4fda376abf30c6a503a') build() { cd ${srcdir}/${pkgname}-${_pkgver} [[ -d build ]] && rm -r build mkdir -p build && cd build - cmake \ + CXX=clang++ cmake \ -DCONNECTOR_HTTP=ON \ -DCMAKE_INSTALL_PREFIX=/usr \ -DWEBUSER=http \
