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.2.0.20090904.ebuild ChangeLog
Date: Mon, 07 Sep 2009 23:19:57
Message-Id: E1MknV1-000527-KC@stork.gentoo.org
1 matsuu 09/09/07 23:19:51
2
3 Modified: ChangeLog
4 Added: ibus-table-1.2.0.20090904.ebuild
5 Log:
6 Version bumped. Removed minimal USE flag. Fixed dependency.
7 (Portage version: 2.1.6.13/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.18 app-i18n/ibus-table/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/ibus-table/ChangeLog?rev=1.18&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/ibus-table/ChangeLog?rev=1.18&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/ibus-table/ChangeLog?r1=1.17&r2=1.18
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-i18n/ibus-table/ChangeLog,v
19 retrieving revision 1.17
20 retrieving revision 1.18
21 diff -u -r1.17 -r1.18
22 --- ChangeLog 4 Aug 2009 14:24:33 -0000 1.17
23 +++ ChangeLog 7 Sep 2009 23:19:51 -0000 1.18
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.17 2009/08/04 14:24:33 matsuu Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/app-i18n/ibus-table/ChangeLog,v 1.18 2009/09/07 23:19:51 matsuu Exp $
29 +
30 +*ibus-table-1.2.0.20090904 (07 Sep 2009)
31 +
32 + 07 Sep 2009; MATSUU Takuto <matsuu@g.o>
33 + +ibus-table-1.2.0.20090904.ebuild:
34 + Version bumped. Removed minimal USE flag. Fixed dependency.
35
36 *ibus-table-1.2.0.20090804 (04 Aug 2009)
37
38
39
40
41 1.1 app-i18n/ibus-table/ibus-table-1.2.0.20090904.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/ibus-table/ibus-table-1.2.0.20090904.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.20090904.ebuild?rev=1.1&content-type=text/plain
45
46 Index: ibus-table-1.2.0.20090904.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.20090904.ebuild,v 1.1 2009/09/07 23:19:51 matsuu Exp $
51
52 EAPI="2"
53 inherit 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="nls"
63
64 RDEPEND=">=app-i18n/ibus-1.2
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 $(use_enable nls) || die
78 }
79
80 src_install() {
81 emake DESTDIR="${D}" install || die
82
83 dodoc AUTHORS ChangeLog NEWS README
84 }
85
86 pkg_postinst() {
87 python_mod_optimize /usr/share/${PN}/engine
88 }
89
90 pkg_postrm() {
91 python_mod_cleanup /usr/share/${PN}/engine
92 }