diff options
Diffstat (limited to 'community/ibus/PKGBUILD')
-rw-r--r-- | community/ibus/PKGBUILD | 47 |
1 files changed, 23 insertions, 24 deletions
diff --git a/community/ibus/PKGBUILD b/community/ibus/PKGBUILD index ab31b3bf7..445e8fd37 100644 --- a/community/ibus/PKGBUILD +++ b/community/ibus/PKGBUILD @@ -1,50 +1,49 @@ # Contributor: Rainy <rainylau(at)gmail(dot)com> # Contributor: Lee.MaRS <leemars at gmail dot com> -# Maintainer: Daniel J Griffiths <ghost1227@archlinux.us> +# Contributor: Daniel J Griffiths <ghost1227@archlinux.us> +# Maintainer: Brad Fanella <bradfanella@archlinux.us> pkgname=ibus -pkgver=1.3.9 -pkgrel=3 +pkgver=1.4.0 +pkgrel=1 pkgdesc='Next Generation Input Bus for Linux.' arch=('i686' 'x86_64') license=('LGPL') url='http://ibus.googlecode.com' -depends=('dbus-python>=0.83.0' 'gconf' 'python2' 'pygtk' 'pyxdg' 'iso-codes' 'librsvg' 'python-notify' 'hicolor-icon-theme' 'gtk3') +depends=('dbus-python>=0.84.0' 'gconf' 'dconf' 'python2' 'pygtk' 'pyxdg' 'iso-codes' 'librsvg' 'python-notify' 'hicolor-icon-theme' 'gtk3') optdepends=('notification-daemon') makedepends=('intltool') options=('!libtool') install=ibus.install source=("http://ibus.googlecode.com/files/${pkgname}-${pkgver}.tar.gz") -md5sums=('57345a3c1cfe37ce3825f6221676dcfe') +md5sums=('b4f063794e89c71eb1f8cb543210da30') build() { - cd ${pkgname}-${pkgver} + cd ${pkgname}-${pkgver} - export PYTHON=python2 + export PYTHON=python2 - ./configure \ - --prefix=/usr \ - --libexecdir=/usr/lib/ibus \ - --sysconfdir=/etc \ - --with-gconf-schema-file-dir=/usr/share/gconf/schemas \ - --enable-gtk3 - #--enable-introspection=no # disabled because build fails with - # gobject-introspection 0.9.10-2 + ./configure \ + --prefix=/usr \ + --libexecdir=/usr/lib/ibus \ + --sysconfdir=/etc \ + --with-gconf-schema-file-dir=/usr/share/gconf/schemas \ + --enable-gtk3 - # python2 fix - for file in setup/ibus-setup.in ui/gtk/ibus-ui-gtk.in; do - sed -i 's_exec python_exec python2_' $file - done + # python2 fix + for file in setup/ibus-setup.in ui/gtk/ibus-ui-gtk.in; do + sed -i 's_exec python_exec python2_' $file + done - make + make } package() { - cd ${pkgname}-${pkgver} + cd ${pkgname}-${pkgver} - export PYTHON=python2 + export PYTHON=python2 - make DESTDIR=${pkgdir} install + make DESTDIR=${pkgdir} install - find ${pkgdir} -type f -exec sed -i 's_exec /usr/bin/python_exec /usr/bin/python2_' {} \; + find ${pkgdir} -type f -exec sed -i 's_exec /usr/bin/python_exec /usr/bin/python2_' {} \; } |