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