# $Id: PKGBUILD 96072 2013-08-19 20:07:32Z eric $
# Maintainer: Eric Bélanger <eric@archlinux.org>

pkgname=wxgtk2.9
pkgver=2.9.5
pkgrel=1
pkgdesc="GTK+ implementation of wxWidgets API for GUI"
arch=('i686' 'x86_64')
url="http://wxwidgets.org"
license=('custom:wxWindows')
depends=('gtk2' 'gstreamer0.10-base')
makedepends=('gstreamer0.10-base-plugins' 'gconf' 'webkitgtk2')
optdepends=('webkitgtk2: for webview support')
options=('!emptydirs')
source=(http://downloads.sourceforge.net/wxwindows/wxWidgets-${pkgver}.tar.bz2
        wxGTK-2.9.5-collision.patch)
sha1sums=('0bab57ecd6d065a3672ec5fbb09d287456727ea4'
          '22f21e91d847779f17cace8cfde553ab1ffac279')

prepare() {
  cd wxWidgets-${pkgver}
  patch -p1 -i ../wxGTK-2.9.5-collision.patch
}

build() {
  cd wxWidgets-${pkgver}
  ./configure --prefix=/usr --libdir=/usr/lib --with-gtk=2 --with-opengl --enable-unicode \
    --enable-graphics_ctx --enable-mediactrl --enable-webview --with-regex=builtin \
    --with-libpng=sys --with-libxpm=sys --with-libjpeg=sys --with-libtiff=sys \
    --disable-precomp-headers
  make
  make -C locale allmo
}

package() {
  cd wxWidgets-${pkgver}
  make DESTDIR="${pkgdir}" install
  install -D -m644 docs/licence.txt "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
}
