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