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-0.1.2.20090101.ebuild
Date: Fri, 02 Jan 2009 16:26:02
Message-Id: E1LImqV-0000RV-MD@stork.gentoo.org
1 matsuu 09/01/02 16:25:59
2
3 Modified: ChangeLog
4 Added: ibus-table-0.1.2.20090101.ebuild
5 Log:
6 Version bumped.
7 (Portage version: 2.1.6.4/cvs/Linux 2.6.28-gentoo x86_64)
8
9 Revision Changes Path
10 1.4 app-i18n/ibus-table/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/ibus-table/ChangeLog?rev=1.4&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/ibus-table/ChangeLog?rev=1.4&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/ibus-table/ChangeLog?r1=1.3&r2=1.4
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-i18n/ibus-table/ChangeLog,v
19 retrieving revision 1.3
20 retrieving revision 1.4
21 diff -u -r1.3 -r1.4
22 --- ChangeLog 16 Nov 2008 17:14:56 -0000 1.3
23 +++ ChangeLog 2 Jan 2009 16:25:59 -0000 1.4
24 @@ -1,6 +1,12 @@
25 # ChangeLog for app-i18n/ibus-table
26 -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-i18n/ibus-table/ChangeLog,v 1.3 2008/11/16 17:14:56 matsuu Exp $
28 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/app-i18n/ibus-table/ChangeLog,v 1.4 2009/01/02 16:25:59 matsuu Exp $
30 +
31 +*ibus-table-0.1.2.20090101 (02 Jan 2009)
32 +
33 + 02 Jan 2009; MATSUU Takuto <matsuu@g.o>
34 + +ibus-table-0.1.2.20090101.ebuild:
35 + Version bumped.
36
37 *ibus-table-0.1.1.20081115 (16 Nov 2008)
38
39
40
41
42 1.1 app-i18n/ibus-table/ibus-table-0.1.2.20090101.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/ibus-table/ibus-table-0.1.2.20090101.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/ibus-table/ibus-table-0.1.2.20090101.ebuild?rev=1.1&content-type=text/plain
46
47 Index: ibus-table-0.1.2.20090101.ebuild
48 ===================================================================
49 # Copyright 1999-2009 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/app-i18n/ibus-table/ibus-table-0.1.2.20090101.ebuild,v 1.1 2009/01/02 16:25:59 matsuu Exp $
52
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"
60 SLOT="0"
61 KEYWORDS="~amd64 ~x86"
62 IUSE="minimal nls"
63
64 RDEPEND="app-i18n/ibus
65 >=dev-lang/python-2.5
66 nls? ( virtual/libintl )"
67 DEPEND="${RDEPEND}
68 nls? ( >=sys-devel/gettext-0.16.1 )"
69
70 pkg_setup() {
71 if ! built_with_use '>=dev-lang/python-2.5' sqlite; then
72 ewarn "You need build dev-lang/python with \"sqlite\" USE flag!"
73 die "Please rebuild dev-lang/python with sqlite USE flag!"
74 fi
75 }
76
77 src_unpack() {
78 unpack ${A}
79 cd "${S}"
80 mv py-compile py-compile.orig || die
81 ln -s "$(type -P true)" py-compile || die
82 }
83
84 src_compile() {
85 econf \
86 $(use_enable !minimal additional) \
87 $(use_enable nls) || die
88 emake || die
89 }
90
91 src_install() {
92 emake DESTDIR="${D}" install || die
93
94 dodoc AUTHORS ChangeLog NEWS README
95 }
96
97 pkg_postinst() {
98 ewarn "This package is very experimental, please report your bugs to"
99 ewarn "http://ibus.googlecode.com/issues/list"
100 elog
101 elog "You should run ibus-setup and enable IM Engines you want to use!"
102 elog
103 python_mod_optimize /usr/share/${PN}/engine
104 }
105
106 pkg_postrm() {
107 python_mod_cleanup /usr/share/${PN}/engine
108 }