Gentoo Archives: gentoo-commits

From: "Naohiro Aota (naota)" <naota@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-i18n/ibus-anthy: ibus-anthy-1.2.6.ebuild ChangeLog
Date: Wed, 18 May 2011 23:31:14
Message-Id: 20110518233104.05B4420054@flycatcher.gentoo.org
1 naota 11/05/18 23:31:04
2
3 Modified: ChangeLog
4 Added: ibus-anthy-1.2.6.ebuild
5 Log:
6 app-i18n/ibus-anthy version bump to 1.2.6
7
8 (Portage version: 2.2.0_alpha31/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.28 app-i18n/ibus-anthy/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-i18n/ibus-anthy/ChangeLog?rev=1.28&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-i18n/ibus-anthy/ChangeLog?rev=1.28&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-i18n/ibus-anthy/ChangeLog?r1=1.27&r2=1.28
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-i18n/ibus-anthy/ChangeLog,v
20 retrieving revision 1.27
21 retrieving revision 1.28
22 diff -u -r1.27 -r1.28
23 --- ChangeLog 16 Apr 2011 22:12:10 -0000 1.27
24 +++ ChangeLog 18 May 2011 23:31:03 -0000 1.28
25 @@ -1,6 +1,11 @@
26 # ChangeLog for app-i18n/ibus-anthy
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-i18n/ibus-anthy/ChangeLog,v 1.27 2011/04/16 22:12:10 arfrever Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/app-i18n/ibus-anthy/ChangeLog,v 1.28 2011/05/18 23:31:03 naota Exp $
30 +
31 +*ibus-anthy-1.2.6 (18 May 2011)
32 +
33 + 18 May 2011; Naohiro Aota <naota@g.o> +ibus-anthy-1.2.6.ebuild:
34 + Version bump.
35
36 16 Apr 2011; Arfrever Frehtes Taifersar Arahesis <arfrever@g.o>
37 ibus-anthy-1.2.0.20100115.ebuild, ibus-anthy-1.2.1.ebuild,
38
39
40
41 1.1 app-i18n/ibus-anthy/ibus-anthy-1.2.6.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-i18n/ibus-anthy/ibus-anthy-1.2.6.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-i18n/ibus-anthy/ibus-anthy-1.2.6.ebuild?rev=1.1&content-type=text/plain
45
46 Index: ibus-anthy-1.2.6.ebuild
47 ===================================================================
48 # Copyright 1999-2011 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/app-i18n/ibus-anthy/ibus-anthy-1.2.6.ebuild,v 1.1 2011/05/18 23:31:03 naota Exp $
51
52 EAPI=3
53 PYTHON_DEPEND="2:2.5"
54 inherit eutils python
55
56 DESCRIPTION="Japanese input method Anthy IMEngine for IBus Framework"
57 HOMEPAGE="http://code.google.com/p/ibus/"
58 SRC_URI="http://ibus.googlecode.com/files/${P}.tar.gz"
59
60 LICENSE="GPL-2"
61 SLOT="0"
62 KEYWORDS="~amd64 ~ppc ~x86"
63 IUSE="nls"
64
65 RDEPEND=">=app-i18n/ibus-1.2.0.20100111
66 app-i18n/anthy
67 >=dev-python/pygtk-2.15.2
68 nls? ( virtual/libintl )"
69 DEPEND="${RDEPEND}
70 dev-lang/swig
71 dev-util/pkgconfig
72 nls? ( >=sys-devel/gettext-0.16.1 )"
73
74 pkg_setup() {
75 python_set_active_version 2
76 python_pkg_setup
77 }
78
79 src_prepare() {
80 mv py-compile py-compile.orig || die
81 ln -s "$(type -P true)" py-compile || die
82 sed -i -e "s/python/python2/" \
83 engine/ibus-engine-anthy.in setup/ibus-setup-anthy.in || die
84 }
85
86 src_configure() {
87 econf $(use_enable nls)
88 }
89
90 src_install() {
91 emake DESTDIR="${D}" install || die
92
93 dodoc AUTHORS ChangeLog NEWS README || die
94 }
95
96 pkg_postinst() {
97 elog
98 elog "app-dicts/kasumi is not required but probably useful for you."
99 elog
100 elog "# emerge app-dicts/kasumi"
101 elog
102
103 python_mod_optimize /usr/share/${PN}
104 }
105
106 pkg_postrm() {
107 python_mod_cleanup /usr/share/${PN}
108 }