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-skk: ChangeLog ibus-skk-0.0.9.ebuild
Date: Fri, 02 Jul 2010 16:32:55
Message-Id: 20100702163252.110802C621@corvid.gentoo.org
1 matsuu 10/07/02 16:32:51
2
3 Modified: ChangeLog
4 Added: ibus-skk-0.0.9.ebuild
5 Log:
6 Version bumped
7 (Portage version: 2.1.8.3/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.10 app-i18n/ibus-skk/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-i18n/ibus-skk/ChangeLog?rev=1.10&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-i18n/ibus-skk/ChangeLog?rev=1.10&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-i18n/ibus-skk/ChangeLog?r1=1.9&r2=1.10
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-i18n/ibus-skk/ChangeLog,v
19 retrieving revision 1.9
20 retrieving revision 1.10
21 diff -u -r1.9 -r1.10
22 --- ChangeLog 16 Jun 2010 16:35:46 -0000 1.9
23 +++ ChangeLog 2 Jul 2010 16:32:51 -0000 1.10
24 @@ -1,6 +1,11 @@
25 # ChangeLog for app-i18n/ibus-skk
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-i18n/ibus-skk/ChangeLog,v 1.9 2010/06/16 16:35:46 matsuu Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/app-i18n/ibus-skk/ChangeLog,v 1.10 2010/07/02 16:32:51 matsuu Exp $
29 +
30 +*ibus-skk-0.0.9 (02 Jul 2010)
31 +
32 + 02 Jul 2010; MATSUU Takuto <matsuu@g.o> +ibus-skk-0.0.9.ebuild:
33 + Version bumped.
34
35 *ibus-skk-0.0.8 (16 Jun 2010)
36
37
38
39
40 1.1 app-i18n/ibus-skk/ibus-skk-0.0.9.ebuild
41
42 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-i18n/ibus-skk/ibus-skk-0.0.9.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-i18n/ibus-skk/ibus-skk-0.0.9.ebuild?rev=1.1&content-type=text/plain
44
45 Index: ibus-skk-0.0.9.ebuild
46 ===================================================================
47 # Copyright 1999-2010 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/app-i18n/ibus-skk/ibus-skk-0.0.9.ebuild,v 1.1 2010/07/02 16:32:51 matsuu Exp $
50
51 EAPI="2"
52 PYTHON_DEPEND="2:2.5"
53 inherit python
54
55 DESCRIPTION="Japanese input method Anthy IMEngine for IBus Framework"
56 HOMEPAGE="http://github.com/ueno/ibus-skk"
57 SRC_URI="http://cloud.github.com/downloads/ueno/${PN}/${P}.tar.gz"
58
59 LICENSE="GPL-2"
60 SLOT="0"
61 KEYWORDS="~amd64 ~x86"
62 IUSE="nls"
63
64 RDEPEND="app-i18n/ibus
65 nls? ( virtual/libintl )"
66 DEPEND="${RDEPEND}
67 nls? ( >=sys-devel/gettext-0.16.1 )"
68 RDEPEND="${RDEPEND}
69 app-i18n/skk-jisyo"
70
71 pkg_setup() {
72 python_set_active_version 2
73
74 }
75
76 src_prepare() {
77 mv py-compile py-compile.orig || die
78 ln -s "$(type -P true)" py-compile || die
79 }
80
81 src_configure() {
82 econf $(use_enable nls) || die
83 }
84
85 src_install() {
86 emake DESTDIR="${D}" install || die
87
88 dodoc AUTHORS ChangeLog NEWS README THANKS TODO || die
89 }
90
91 pkg_postinst() {
92 python_mod_optimize /usr/share/${PN}
93 }
94
95 pkg_postrm() {
96 python_mod_cleanup /usr/share/${PN}
97 }