diff options
author | obache <obache@pkgsrc.org> | 2012-08-23 12:34:14 +0000 |
---|---|---|
committer | obache <obache@pkgsrc.org> | 2012-08-23 12:34:14 +0000 |
commit | 94fb5a5753b936c82d446c6ca0165ac07bd389e8 (patch) | |
tree | f7f9b244f7b4c231c948792cef84a3102be3cc25 /inputmethod | |
parent | 7fc04e29afc255b706361f9c883c68188247f563 (diff) | |
download | pkgsrc-94fb5a5753b936c82d446c6ca0165ac07bd389e8.tar.gz |
Update ibus to 1.4.2.
* Some bug fixings.
Diffstat (limited to 'inputmethod')
-rw-r--r-- | inputmethod/ibus/Makefile | 5 | ||||
-rw-r--r-- | inputmethod/ibus/distinfo | 9 | ||||
-rw-r--r-- | inputmethod/ibus/patches/patch-setup_i18n.py | 29 |
3 files changed, 6 insertions, 37 deletions
diff --git a/inputmethod/ibus/Makefile b/inputmethod/ibus/Makefile index 87d2f8f97d8..bf44a6ec06d 100644 --- a/inputmethod/ibus/Makefile +++ b/inputmethod/ibus/Makefile @@ -1,8 +1,7 @@ -# $NetBSD: Makefile,v 1.17 2012/06/14 07:44:05 sbd Exp $ +# $NetBSD: Makefile,v 1.18 2012/08/23 12:34:14 obache Exp $ # -DISTNAME= ibus-1.4.1 -PKGREVISION= 3 +DISTNAME= ibus-1.4.2 CATEGORIES= inputmethod MASTER_SITES= http://ibus.googlecode.com/files/ diff --git a/inputmethod/ibus/distinfo b/inputmethod/ibus/distinfo index 1f40e99765a..85ed463e5ee 100644 --- a/inputmethod/ibus/distinfo +++ b/inputmethod/ibus/distinfo @@ -1,6 +1,5 @@ -$NetBSD: distinfo,v 1.6 2012/05/18 11:12:24 obache Exp $ +$NetBSD: distinfo,v 1.7 2012/08/23 12:34:14 obache Exp $ -SHA1 (ibus-1.4.1.tar.gz) = 4cc045553885d35a118ec4b44c2694910209509e -RMD160 (ibus-1.4.1.tar.gz) = 4003fc9392c59ce35048689aa50a941cfd151cff -Size (ibus-1.4.1.tar.gz) = 1479412 bytes -SHA1 (patch-setup_i18n.py) = 0069b00b83a9348cca73c85adddf554733356544 +SHA1 (ibus-1.4.2.tar.gz) = a2d11d8bb64761691df918e9e50f0b35c711760d +RMD160 (ibus-1.4.2.tar.gz) = 88e143fcae7da6bf44b3c9459e0845a104895432 +Size (ibus-1.4.2.tar.gz) = 1489482 bytes diff --git a/inputmethod/ibus/patches/patch-setup_i18n.py b/inputmethod/ibus/patches/patch-setup_i18n.py deleted file mode 100644 index 4895a03da82..00000000000 --- a/inputmethod/ibus/patches/patch-setup_i18n.py +++ /dev/null @@ -1,29 +0,0 @@ -$NetBSD: patch-setup_i18n.py,v 1.2 2012/05/18 11:12:25 obache Exp $ - -* fix translations fail - http://code.google.com/p/ibus/issues/detail?id=1453 - ---- setup/i18n.py.orig 2012-02-02 04:54:54.000000000 +0000 -+++ setup/i18n.py -@@ -20,6 +20,7 @@ - # Free Software Foundation, Inc., 59 Temple Place, Suite 330, - # Boston, MA 02111-1307 USA - -+import locale - import gettext - import os - -@@ -30,5 +31,13 @@ N_ = lambda a: a - - def init(): - localedir = os.getenv("IBUS_LOCALEDIR") -+ # Python's locale module doesn't provide all methods on some -+ # operating systems like FreeBSD -+ try: -+ # for non-standard localedir -+ locale.bindtextdomain(DOMAINNAME, localedir) -+ locale.bind_textdomain_codeset(DOMAINNAME, "UTF-8") -+ except AttributeError: -+ pass - gettext.bindtextdomain(DOMAINNAME, localedir) - gettext.bind_textdomain_codeset(DOMAINNAME, "UTF-8") |