Gentoo Archives: gentoo-commits

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