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-hangul: ChangeLog ibus-hangul-0.1.1.20081023.ebuild
Date: Thu, 23 Oct 2008 22:58:05
Message-Id: E1Kt97y-0003xN-VG@stork.gentoo.org
1 matsuu 08/10/23 22:58:02
2
3 Modified: ChangeLog
4 Added: ibus-hangul-0.1.1.20081023.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-hangul/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/ibus-hangul/ChangeLog?rev=1.2&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/ibus-hangul/ChangeLog?rev=1.2&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/ibus-hangul/ChangeLog?r1=1.1&r2=1.2
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-i18n/ibus-hangul/ChangeLog,v
19 retrieving revision 1.1
20 retrieving revision 1.2
21 diff -u -r1.1 -r1.2
22 --- ChangeLog 6 Sep 2008 00:23:40 -0000 1.1
23 +++ ChangeLog 23 Oct 2008 22:58:02 -0000 1.2
24 @@ -1,6 +1,12 @@
25 # ChangeLog for app-i18n/ibus-hangul
26 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-i18n/ibus-hangul/ChangeLog,v 1.1 2008/09/06 00:23:40 matsuu Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/app-i18n/ibus-hangul/ChangeLog,v 1.2 2008/10/23 22:58:02 matsuu Exp $
29 +
30 +*ibus-hangul-0.1.1.20081023 (23 Oct 2008)
31 +
32 + 23 Oct 2008; MATSUU Takuto <matsuu@g.o>
33 + +ibus-hangul-0.1.1.20081023.ebuild:
34 + Version bumped. inherit python.
35
36 *ibus-hangul-0.1.1.20080901 (06 Sep 2008)
37
38
39
40
41 1.1 app-i18n/ibus-hangul/ibus-hangul-0.1.1.20081023.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/ibus-hangul/ibus-hangul-0.1.1.20081023.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/ibus-hangul/ibus-hangul-0.1.1.20081023.ebuild?rev=1.1&content-type=text/plain
45
46 Index: ibus-hangul-0.1.1.20081023.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-hangul/ibus-hangul-0.1.1.20081023.ebuild,v 1.1 2008/10/23 22:58:02 matsuu Exp $
51
52 inherit python
53
54 DESCRIPTION="The Hangul engine for IBus input platform"
55 HOMEPAGE="http://code.google.com/p/ibus/"
56 SRC_URI="http://ibus.googlecode.com/files/${P}.tar.gz"
57
58 LICENSE="GPL-2"
59 SLOT="0"
60 KEYWORDS="~amd64 ~x86"
61 IUSE="nls"
62
63 RDEPEND="app-i18n/ibus
64 app-i18n/libhangul
65 >=dev-lang/python-2.5
66 nls? ( virtual/libintl )"
67 DEPEND="${RDEPEND}
68 dev-lang/swig
69 dev-util/pkgconfig
70 nls? ( >=sys-devel/gettext-0.16.1 )"
71
72 src_unpack() {
73 unpack ${A}
74 cd "${S}"
75 mv py-compile py-compile.orig || die
76 ln -s "$(type -P true)" py-compile || die
77 }
78
79 src_compile() {
80 econf $(use_enable nls) || die
81 emake || die
82 }
83
84 src_install() {
85 emake DESTDIR="${D}" install || die
86
87 dodoc AUTHORS ChangeLog NEWS README
88 }
89
90 pkg_postinst() {
91 ewarn "This package is very experimental, please report your bugs to"
92 ewarn "http://ibus.googlecode.com/issues/list"
93 elog
94 elog "You should run ibus-setup and enable IM Engines you want to use!"
95 elog
96
97 python_mod_optimize /usr/share/${PN}
98 }
99
100 pkg_postrm() {
101 python_mod_cleanup /usr/share/${PN}
102 }