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.2.0.20090804.ebuild
Date: Tue, 04 Aug 2009 14:24:35
Message-Id: E1MYKwL-0006Zs-Gk@stork.gentoo.org
1 matsuu 09/08/04 14:24:33
2
3 Modified: ChangeLog
4 Added: ibus-table-1.2.0.20090804.ebuild
5 Log:
6 Version bumped.
7 (Portage version: 2.1.6.13/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.17 app-i18n/ibus-table/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/ibus-table/ChangeLog?rev=1.17&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/ibus-table/ChangeLog?rev=1.17&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/ibus-table/ChangeLog?r1=1.16&r2=1.17
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-i18n/ibus-table/ChangeLog,v
19 retrieving revision 1.16
20 retrieving revision 1.17
21 diff -u -r1.16 -r1.17
22 --- ChangeLog 4 Jul 2009 00:16:06 -0000 1.16
23 +++ ChangeLog 4 Aug 2009 14:24:33 -0000 1.17
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.16 2009/07/04 00:16:06 matsuu Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/app-i18n/ibus-table/ChangeLog,v 1.17 2009/08/04 14:24:33 matsuu Exp $
29 +
30 +*ibus-table-1.2.0.20090804 (04 Aug 2009)
31 +
32 + 04 Aug 2009; MATSUU Takuto <matsuu@g.o>
33 + +ibus-table-1.2.0.20090804.ebuild:
34 + Version bumped.
35
36 *ibus-table-1.2.0.20090625 (04 Jul 2009)
37
38
39
40
41 1.1 app-i18n/ibus-table/ibus-table-1.2.0.20090804.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/ibus-table/ibus-table-1.2.0.20090804.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/ibus-table/ibus-table-1.2.0.20090804.ebuild?rev=1.1&content-type=text/plain
45
46 Index: ibus-table-1.2.0.20090804.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.2.0.20090804.ebuild,v 1.1 2009/08/04 14:24:33 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 python_mod_optimize /usr/share/${PN}/engine
90 }
91
92 pkg_postrm() {
93 python_mod_cleanup /usr/share/${PN}/engine
94 }