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.20090615.ebuild
Date: Thu, 18 Jun 2009 15:38:28
Message-Id: E1MHJh3-00021u-JV@stork.gentoo.org
1 matsuu 09/06/18 15:38:25
2
3 Modified: ChangeLog
4 Added: ibus-table-1.1.0.20090615.ebuild
5 Log:
6 Version bumped.
7 (Portage version: 2.1.6.13/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.15 app-i18n/ibus-table/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/ibus-table/ChangeLog?rev=1.15&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/ibus-table/ChangeLog?rev=1.15&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/ibus-table/ChangeLog?r1=1.14&r2=1.15
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-i18n/ibus-table/ChangeLog,v
19 retrieving revision 1.14
20 retrieving revision 1.15
21 diff -u -r1.14 -r1.15
22 --- ChangeLog 9 Jun 2009 16:26:24 -0000 1.14
23 +++ ChangeLog 18 Jun 2009 15:38:25 -0000 1.15
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.14 2009/06/09 16:26:24 matsuu Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/app-i18n/ibus-table/ChangeLog,v 1.15 2009/06/18 15:38:25 matsuu Exp $
29 +
30 +*ibus-table-1.1.0.20090615 (18 Jun 2009)
31 +
32 + 18 Jun 2009; MATSUU Takuto <matsuu@g.o>
33 + +ibus-table-1.1.0.20090615.ebuild:
34 + Version bumped.
35
36 *ibus-table-1.1.0.20090609 (09 Jun 2009)
37
38
39
40
41 1.1 app-i18n/ibus-table/ibus-table-1.1.0.20090615.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/ibus-table/ibus-table-1.1.0.20090615.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.20090615.ebuild?rev=1.1&content-type=text/plain
45
46 Index: ibus-table-1.1.0.20090615.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.20090615.ebuild,v 1.1 2009/06/18 15:38:25 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 }