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.1.0.20090402.ebuild ChangeLog
Date: Thu, 02 Apr 2009 16:04:07
Message-Id: E1LpPOf-0001zr-IJ@stork.gentoo.org
1 matsuu 09/04/02 16:04:05
2
3 Modified: ChangeLog
4 Added: ibus-anthy-1.1.0.20090402.ebuild
5 Log:
6 Version bumped.
7 (Portage version: 2.1.6.11/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.8 app-i18n/ibus-anthy/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/ibus-anthy/ChangeLog?rev=1.8&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/ibus-anthy/ChangeLog?rev=1.8&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/ibus-anthy/ChangeLog?r1=1.7&r2=1.8
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-i18n/ibus-anthy/ChangeLog,v
19 retrieving revision 1.7
20 retrieving revision 1.8
21 diff -u -r1.7 -r1.8
22 --- ChangeLog 31 Mar 2009 14:56:39 -0000 1.7
23 +++ ChangeLog 2 Apr 2009 16:04:05 -0000 1.8
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.7 2009/03/31 14:56:39 matsuu Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/app-i18n/ibus-anthy/ChangeLog,v 1.8 2009/04/02 16:04:05 matsuu Exp $
29 +
30 +*ibus-anthy-1.1.0.20090402 (02 Apr 2009)
31 +
32 + 02 Apr 2009; MATSUU Takuto <matsuu@g.o>
33 + +ibus-anthy-1.1.0.20090402.ebuild:
34 + Version bumped.
35
36 31 Mar 2009; MATSUU Takuto <matsuu@g.o>
37 -ibus-anthy-0.1.1.20090203.ebuild, -ibus-anthy-1.1.0.20090205.ebuild:
38
39
40
41 1.1 app-i18n/ibus-anthy/ibus-anthy-1.1.0.20090402.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/ibus-anthy/ibus-anthy-1.1.0.20090402.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/ibus-anthy/ibus-anthy-1.1.0.20090402.ebuild?rev=1.1&content-type=text/plain
45
46 Index: ibus-anthy-1.1.0.20090402.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.1.0.20090402.ebuild,v 1.1 2009/04/02 16:04:05 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.1.0
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 }