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.7.ebuild
Date: Mon, 10 May 2010 17:24:40
Message-Id: 20100510172434.AA68B2C5A3@corvid.gentoo.org
1 matsuu 10/05/10 17:24:34
2
3 Modified: ChangeLog
4 Added: ibus-skk-0.0.7.ebuild
5 Log:
6 Version bumped.
7 (Portage version: 2.1.8.3/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.7 app-i18n/ibus-skk/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-i18n/ibus-skk/ChangeLog?rev=1.7&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-i18n/ibus-skk/ChangeLog?rev=1.7&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-i18n/ibus-skk/ChangeLog?r1=1.6&r2=1.7
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-i18n/ibus-skk/ChangeLog,v
19 retrieving revision 1.6
20 retrieving revision 1.7
21 diff -u -r1.6 -r1.7
22 --- ChangeLog 4 May 2010 00:13:52 -0000 1.6
23 +++ ChangeLog 10 May 2010 17:24:34 -0000 1.7
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.6 2010/05/04 00:13:52 matsuu Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/app-i18n/ibus-skk/ChangeLog,v 1.7 2010/05/10 17:24:34 matsuu Exp $
29 +
30 +*ibus-skk-0.0.7 (10 May 2010)
31 +
32 + 10 May 2010; MATSUU Takuto <matsuu@g.o> +ibus-skk-0.0.7.ebuild:
33 + Version bumped.
34
35 *ibus-skk-0.0.5 (03 May 2010)
36
37
38
39
40 1.1 app-i18n/ibus-skk/ibus-skk-0.0.7.ebuild
41
42 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-i18n/ibus-skk/ibus-skk-0.0.7.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-i18n/ibus-skk/ibus-skk-0.0.7.ebuild?rev=1.1&content-type=text/plain
44
45 Index: ibus-skk-0.0.7.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.7.ebuild,v 1.1 2010/05/10 17:24:34 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 }