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.0.20090907.ebuild
Date: Tue, 08 Sep 2009 00:04:27
Message-Id: E1MkoC9-0007sv-D8@stork.gentoo.org
1 matsuu 09/09/08 00:04:25
2
3 Modified: ChangeLog
4 Added: ibus-anthy-1.2.0.20090907.ebuild
5 Log:
6 Version bumped. Fixed dependency.
7 (Portage version: 2.1.6.13/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.13 app-i18n/ibus-anthy/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/ibus-anthy/ChangeLog?rev=1.13&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/ibus-anthy/ChangeLog?rev=1.13&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/ibus-anthy/ChangeLog?r1=1.12&r2=1.13
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-i18n/ibus-anthy/ChangeLog,v
19 retrieving revision 1.12
20 retrieving revision 1.13
21 diff -u -r1.12 -r1.13
22 --- ChangeLog 13 Aug 2009 14:50:43 -0000 1.12
23 +++ ChangeLog 8 Sep 2009 00:04:25 -0000 1.13
24 @@ -1,6 +1,12 @@
25 # ChangeLog for app-i18n/ibus-anthy
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-i18n/ibus-anthy/ChangeLog,v 1.12 2009/08/13 14:50:43 matsuu Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/app-i18n/ibus-anthy/ChangeLog,v 1.13 2009/09/08 00:04:25 matsuu Exp $
29 +
30 +*ibus-anthy-1.2.0.20090907 (08 Sep 2009)
31 +
32 + 08 Sep 2009; MATSUU Takuto <matsuu@g.o>
33 + +ibus-anthy-1.2.0.20090907.ebuild:
34 + Version bumped. Fixed dependency.
35
36 *ibus-anthy-1.2.0.20090813 (13 Aug 2009)
37
38
39
40
41 1.1 app-i18n/ibus-anthy/ibus-anthy-1.2.0.20090907.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/ibus-anthy/ibus-anthy-1.2.0.20090907.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/ibus-anthy/ibus-anthy-1.2.0.20090907.ebuild?rev=1.1&content-type=text/plain
45
46 Index: ibus-anthy-1.2.0.20090907.ebuild
47 ===================================================================
48 # Copyright 1999-2009 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.0.20090907.ebuild,v 1.1 2009/09/08 00:04:25 matsuu Exp $
51
52 inherit eutils python
53
54 DESCRIPTION="Japanese input method Anthy IMEngine for IBus Framework"
55 HOMEPAGE="http://code.google.com/p/ibus/"
56 SRC_URI="http://ibus.googlecode.com/files/${P}.tar.gz"
57
58 LICENSE="GPL-2"
59 SLOT="0"
60 KEYWORDS="~amd64 ~x86"
61 IUSE="nls"
62
63 RDEPEND=">=app-i18n/ibus-1.2.0.20090904
64 app-i18n/anthy
65 >=dev-lang/python-2.5
66 nls? ( virtual/libintl )"
67 DEPEND="${RDEPEND}
68 dev-lang/swig
69 dev-util/pkgconfig
70 nls? ( >=sys-devel/gettext-0.16.1 )"
71
72 src_unpack() {
73 unpack ${A}
74 cd "${S}"
75 mv py-compile py-compile.orig || die
76 ln -s "$(type -P true)" py-compile || die
77 }
78
79 src_compile() {
80 econf $(use_enable nls) || die
81 emake || die
82 }
83
84 src_install() {
85 emake DESTDIR="${D}" install || die
86
87 dodoc AUTHORS ChangeLog NEWS README
88 }
89
90 pkg_postinst() {
91 ewarn "This package is very experimental, please report your bugs to"
92 ewarn "http://ibus.googlecode.com/issues/list"
93 elog
94 elog "You should run ibus-setup and enable IM Engines you want to use!"
95 elog
96
97 python_mod_optimize /usr/share/${PN}
98 }
99
100 pkg_postrm() {
101 python_mod_cleanup /usr/share/${PN}
102 }