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: ibus-table-1.1.0.20090527.ebuild ChangeLog
Date: Sun, 31 May 2009 13:24:20
Message-Id: E1MAl1N-0005IG-Mr@stork.gentoo.org
1 matsuu 09/05/31 13:24:17
2
3 Modified: ChangeLog
4 Added: ibus-table-1.1.0.20090527.ebuild
5 Log:
6 Version bumped.
7 (Portage version: 2.1.6.13/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.11 app-i18n/ibus-table/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/ibus-table/ChangeLog?rev=1.11&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/ibus-table/ChangeLog?rev=1.11&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/ibus-table/ChangeLog?r1=1.10&r2=1.11
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-i18n/ibus-table/ChangeLog,v
19 retrieving revision 1.10
20 retrieving revision 1.11
21 diff -u -r1.10 -r1.11
22 --- ChangeLog 7 May 2009 23:47:54 -0000 1.10
23 +++ ChangeLog 31 May 2009 13:24:17 -0000 1.11
24 @@ -1,6 +1,16 @@
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.10 2009/05/07 23:47:54 matsuu Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/app-i18n/ibus-table/ChangeLog,v 1.11 2009/05/31 13:24:17 matsuu Exp $
29 +
30 + 31 May 2009; MATSUU Takuto <matsuu@g.o>
31 + +ibus-table-1.1.0.20090527.ebuild:
32 + Version bumped.
33 +
34 +*ibus-table-1.1.0.20090527 (31 May 2009)
35 +
36 + 31 May 2009; MATSUU Takuto <matsuu@g.o>
37 + +ibus-table-1.1.0.20090527.ebuild:
38 + Version bumped.
39
40 *ibus-table-1.1.0.20090505 (07 May 2009)
41
42
43
44
45 1.1 app-i18n/ibus-table/ibus-table-1.1.0.20090527.ebuild
46
47 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/ibus-table/ibus-table-1.1.0.20090527.ebuild?rev=1.1&view=markup
48 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/ibus-table/ibus-table-1.1.0.20090527.ebuild?rev=1.1&content-type=text/plain
49
50 Index: ibus-table-1.1.0.20090527.ebuild
51 ===================================================================
52 # Copyright 1999-2009 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 # $Header: /var/cvsroot/gentoo-x86/app-i18n/ibus-table/ibus-table-1.1.0.20090527.ebuild,v 1.1 2009/05/31 13:24:17 matsuu Exp $
55
56 EAPI="2"
57 inherit eutils python
58
59 DESCRIPTION="The Table Engine for IBus Framework"
60 HOMEPAGE="http://code.google.com/p/ibus/"
61 SRC_URI="http://ibus.googlecode.com/files/${P}.tar.gz"
62
63 LICENSE="GPL-2 LGPL-2.1"
64 SLOT="0"
65 KEYWORDS="~amd64 ~x86"
66 IUSE="minimal nls"
67
68 RDEPEND=">=app-i18n/ibus-1.1
69 >=dev-lang/python-2.5[sqlite]
70 nls? ( virtual/libintl )"
71 DEPEND="${RDEPEND}
72 nls? ( >=sys-devel/gettext-0.16.1 )
73 dev-util/pkgconfig"
74
75 src_prepare() {
76 mv py-compile py-compile.orig || die
77 ln -s "$(type -P true)" py-compile || die
78 }
79
80 src_configure() {
81 econf \
82 $(use_enable !minimal additional) \
83 $(use_enable nls) || 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 python_mod_optimize /usr/share/${PN}/engine
94 }
95
96 pkg_postrm() {
97 python_mod_cleanup /usr/share/${PN}/engine
98 }