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: ibus-anthy-1.2.5.ebuild ChangeLog
Date: Wed, 01 Dec 2010 16:42:39
Message-Id: 20101201164225.0B7EB20054@flycatcher.gentoo.org
1 matsuu 10/12/01 16:42:25
2
3 Modified: ChangeLog
4 Added: ibus-anthy-1.2.5.ebuild
5 Log:
6 Version bumped.
7
8 (Portage version: 2.1.9.24/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.26 app-i18n/ibus-anthy/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-i18n/ibus-anthy/ChangeLog?rev=1.26&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-i18n/ibus-anthy/ChangeLog?rev=1.26&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-i18n/ibus-anthy/ChangeLog?r1=1.25&r2=1.26
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-i18n/ibus-anthy/ChangeLog,v
20 retrieving revision 1.25
21 retrieving revision 1.26
22 diff -u -r1.25 -r1.26
23 --- ChangeLog 27 Oct 2010 16:21:57 -0000 1.25
24 +++ ChangeLog 1 Dec 2010 16:42:24 -0000 1.26
25 @@ -1,6 +1,11 @@
26 # ChangeLog for app-i18n/ibus-anthy
27 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-i18n/ibus-anthy/ChangeLog,v 1.25 2010/10/27 16:21:57 matsuu Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/app-i18n/ibus-anthy/ChangeLog,v 1.26 2010/12/01 16:42:24 matsuu Exp $
30 +
31 +*ibus-anthy-1.2.5 (01 Dec 2010)
32 +
33 + 01 Dec 2010; MATSUU Takuto <matsuu@g.o> +ibus-anthy-1.2.5.ebuild:
34 + Version bumped.
35
36 *ibus-anthy-1.2.4 (27 Oct 2010)
37
38
39
40
41 1.1 app-i18n/ibus-anthy/ibus-anthy-1.2.5.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-i18n/ibus-anthy/ibus-anthy-1.2.5.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-i18n/ibus-anthy/ibus-anthy-1.2.5.ebuild?rev=1.1&content-type=text/plain
45
46 Index: ibus-anthy-1.2.5.ebuild
47 ===================================================================
48 # Copyright 1999-2010 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.5.ebuild,v 1.1 2010/12/01 16:42:24 matsuu Exp $
51
52 EAPI=2
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 }
77
78 src_prepare() {
79 mv py-compile py-compile.orig || die
80 ln -s "$(type -P true)" py-compile || die
81 sed -i -e "s/python/python2/" \
82 engine/ibus-engine-anthy.in setup/ibus-setup-anthy.in || die
83 }
84
85 src_configure() {
86 econf $(use_enable nls) || die
87 }
88
89 src_install() {
90 emake DESTDIR="${D}" install || die
91
92 dodoc AUTHORS ChangeLog NEWS README || die
93 }
94
95 pkg_postinst() {
96 elog
97 elog "app-dicts/kasumi is not required but probably useful for you."
98 elog
99 elog "# emerge app-dicts/kasumi"
100 elog
101
102 python_mod_optimize /usr/share/${PN}
103 }
104
105 pkg_postrm() {
106 python_mod_cleanup /usr/share/${PN}
107 }