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