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