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-table: ChangeLog ibus-table-1.1.0.20090220.ebuild
Date: Wed, 25 Feb 2009 17:10:19
Message-Id: E1LcNGz-0005Pc-5u@stork.gentoo.org
1 matsuu 09/02/25 17:10:17
2
3 Modified: ChangeLog
4 Added: ibus-table-1.1.0.20090220.ebuild
5 Log:
6 Version bumped.
7 (Portage version: 2.1.6.7/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.7 app-i18n/ibus-table/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/ibus-table/ChangeLog?rev=1.7&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/ibus-table/ChangeLog?rev=1.7&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/ibus-table/ChangeLog?r1=1.6&r2=1.7
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-i18n/ibus-table/ChangeLog,v
19 retrieving revision 1.6
20 retrieving revision 1.7
21 diff -u -r1.6 -r1.7
22 --- ChangeLog 5 Feb 2009 16:05:32 -0000 1.6
23 +++ ChangeLog 25 Feb 2009 17:10:17 -0000 1.7
24 @@ -1,6 +1,12 @@
25 # ChangeLog for app-i18n/ibus-table
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-i18n/ibus-table/ChangeLog,v 1.6 2009/02/05 16:05:32 matsuu Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/app-i18n/ibus-table/ChangeLog,v 1.7 2009/02/25 17:10:17 matsuu Exp $
29 +
30 +*ibus-table-1.1.0.20090220 (25 Feb 2009)
31 +
32 + 25 Feb 2009; MATSUU Takuto <matsuu@g.o>
33 + +ibus-table-1.1.0.20090220.ebuild:
34 + Version bumped.
35
36 05 Feb 2009; MATSUU Takuto <matsuu@g.o>
37 -ibus-table-0.1.1.20081115.ebuild, ibus-table-0.1.2.20090104.ebuild:
38
39
40
41 1.1 app-i18n/ibus-table/ibus-table-1.1.0.20090220.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/ibus-table/ibus-table-1.1.0.20090220.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/ibus-table/ibus-table-1.1.0.20090220.ebuild?rev=1.1&content-type=text/plain
45
46 Index: ibus-table-1.1.0.20090220.ebuild
47 ===================================================================
48 # Copyright 1999-2009 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/app-i18n/ibus-table/ibus-table-1.1.0.20090220.ebuild,v 1.1 2009/02/25 17:10:17 matsuu Exp $
51
52 EAPI="2"
53 inherit eutils python
54
55 DESCRIPTION="The Table Engine 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 LGPL-2.1"
60 SLOT="0"
61 KEYWORDS="~amd64 ~x86"
62 IUSE="minimal nls"
63
64 RDEPEND=">=app-i18n/ibus-1.1
65 >=dev-lang/python-2.5[sqlite]
66 nls? ( virtual/libintl )"
67 DEPEND="${RDEPEND}
68 nls? ( >=sys-devel/gettext-0.16.1 )
69 dev-util/pkgconfig"
70
71 src_prepare() {
72 mv py-compile py-compile.orig || die
73 ln -s "$(type -P true)" py-compile || die
74 }
75
76 src_configure() {
77 econf \
78 $(use_enable !minimal additional) \
79 $(use_enable nls) || die
80 }
81
82 src_install() {
83 emake DESTDIR="${D}" install || die
84
85 dodoc AUTHORS ChangeLog NEWS README
86 }
87
88 pkg_postinst() {
89 ewarn "This package is very experimental, please report your bugs to"
90 ewarn "http://ibus.googlecode.com/issues/list"
91 elog
92 elog "You should run ibus-setup and enable IM Engines you want to use!"
93 elog
94 python_mod_optimize /usr/share/${PN}/engine
95 }
96
97 pkg_postrm() {
98 python_mod_cleanup /usr/share/${PN}/engine
99 }