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.1.20081014.ebuild
Date: Sun, 19 Oct 2008 14:18:31
Message-Id: E1KrZ6t-0003X3-Bc@stork.gentoo.org
1 matsuu 08/10/19 14:18:23
2
3 Modified: ChangeLog
4 Added: ibus-table-0.1.1.20081014.ebuild
5 Log:
6 Version bumped. Fixed QA issue.
7 (Portage version: 2.2_rc12/cvs/Linux 2.6.27-gentoo x86_64)
8
9 Revision Changes Path
10 1.2 app-i18n/ibus-table/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/ibus-table/ChangeLog?rev=1.2&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/ibus-table/ChangeLog?rev=1.2&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/ibus-table/ChangeLog?r1=1.1&r2=1.2
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-i18n/ibus-table/ChangeLog,v
19 retrieving revision 1.1
20 retrieving revision 1.2
21 diff -u -r1.1 -r1.2
22 --- ChangeLog 10 Sep 2008 00:18:25 -0000 1.1
23 +++ ChangeLog 19 Oct 2008 14:18:23 -0000 1.2
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.1 2008/09/10 00:18:25 matsuu Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/app-i18n/ibus-table/ChangeLog,v 1.2 2008/10/19 14:18:23 matsuu Exp $
29 +
30 +*ibus-table-0.1.1.20081014 (19 Oct 2008)
31 +
32 + 19 Oct 2008; MATSUU Takuto <matsuu@g.o>
33 + +ibus-table-0.1.1.20081014.ebuild:
34 + Version bumped. Fixed QA issue.
35
36 *ibus-table-0.1.1.20080901 (10 Sep 2008)
37
38
39
40
41 1.1 app-i18n/ibus-table/ibus-table-0.1.1.20081014.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/ibus-table/ibus-table-0.1.1.20081014.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/ibus-table/ibus-table-0.1.1.20081014.ebuild?rev=1.1&content-type=text/plain
45
46 Index: ibus-table-0.1.1.20081014.ebuild
47 ===================================================================
48 # Copyright 1999-2008 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-0.1.1.20081014.ebuild,v 1.1 2008/10/19 14:18:23 matsuu Exp $
51
52 EAPI="1"
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="+additional cangjie5 erbi-qs extra-phrases nls wubi zhengma"
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 additional) \
87 $(use_enable cangjie5) \
88 $(use_enable erbi-qs) \
89 $(use_enable extra-phrases) \
90 $(use_enable wubi wubi86) \
91 $(use_enable wubi wubi98) \
92 $(use_enable zhengma) \
93 $(use_enable nls) || die
94
95 # Parallel make uses a lot of memory to generate databases.
96 emake -j1 || die
97 }
98
99 src_install() {
100 emake DESTDIR="${D}" install || die
101
102 dodoc AUTHORS ChangeLog NEWS README
103 }
104
105 pkg_postinst() {
106 ewarn "This package is very experimental, please report your bugs to"
107 ewarn "http://ibus.googlecode.com/issues/list"
108 elog
109 elog "You should run ibus-setup and enable IM Engines you want to use!"
110 elog
111 python_mod_optimize /usr/share/${PN}/engine
112 }
113
114 pkg_postrm() {
115 python_mod_cleanup /usr/share/${PN}/engine
116 }