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-0.1.1.20080912-r1.ebuild ChangeLog
Date: Wed, 21 Jan 2009 14:42:30
Message-Id: E1LPeHi-0004qD-Cm@stork.gentoo.org
1 matsuu 09/01/21 14:42:26
2
3 Modified: ChangeLog
4 Added: ibus-anthy-0.1.1.20080912-r1.ebuild
5 Log:
6 Backport from git tree.
7 (Portage version: 2.1.6.6/cvs/Linux 2.6.28-gentoo x86_64)
8
9 Revision Changes Path
10 1.3 app-i18n/ibus-anthy/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/ibus-anthy/ChangeLog?rev=1.3&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/ibus-anthy/ChangeLog?rev=1.3&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/ibus-anthy/ChangeLog?r1=1.2&r2=1.3
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-i18n/ibus-anthy/ChangeLog,v
19 retrieving revision 1.2
20 retrieving revision 1.3
21 diff -u -r1.2 -r1.3
22 --- ChangeLog 12 Sep 2008 16:03:14 -0000 1.2
23 +++ ChangeLog 21 Jan 2009 14:42:26 -0000 1.3
24 @@ -1,6 +1,13 @@
25 # ChangeLog for app-i18n/ibus-anthy
26 -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-i18n/ibus-anthy/ChangeLog,v 1.2 2008/09/12 16:03:14 matsuu Exp $
28 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/app-i18n/ibus-anthy/ChangeLog,v 1.3 2009/01/21 14:42:26 matsuu Exp $
30 +
31 +*ibus-anthy-0.1.1.20080912-r1 (21 Jan 2009)
32 +
33 + 21 Jan 2009; MATSUU Takuto <matsuu@g.o>
34 + +files/ibus-anthy-0.1.1.20080912-gentoo.patch,
35 + +ibus-anthy-0.1.1.20080912-r1.ebuild:
36 + Backport from git tree.
37
38 *ibus-anthy-0.1.1.20080912 (12 Sep 2008)
39
40
41
42
43 1.1 app-i18n/ibus-anthy/ibus-anthy-0.1.1.20080912-r1.ebuild
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/ibus-anthy/ibus-anthy-0.1.1.20080912-r1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/ibus-anthy/ibus-anthy-0.1.1.20080912-r1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: ibus-anthy-0.1.1.20080912-r1.ebuild
49 ===================================================================
50 # Copyright 1999-2009 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/app-i18n/ibus-anthy/ibus-anthy-0.1.1.20080912-r1.ebuild,v 1.1 2009/01/21 14:42:26 matsuu Exp $
53
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 ~x86"
63 IUSE="nls"
64
65 RDEPEND="app-i18n/ibus
66 app-i18n/anthy
67 >=dev-lang/python-2.5
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 src_unpack() {
75 unpack ${A}
76 cd "${S}"
77 epatch "${FILESDIR}/${P}-gentoo.patch"
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 }