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/scim-uim: ChangeLog scim-uim-0.2.0-r2.ebuild scim-uim-0.2.0.ebuild
Date: Sat, 03 Apr 2010 03:11:27
Message-Id: E1Nxtl6-0003jo-JO@stork.gentoo.org
1 matsuu 10/04/03 03:10:52
2
3 Modified: ChangeLog
4 Added: scim-uim-0.2.0-r2.ebuild
5 Removed: scim-uim-0.2.0.ebuild
6 Log:
7 Fixed to work with >=uim-1.5. the patch is from http://gist.github.com/333944.
8 (Portage version: 2.1.8.3/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.33 app-i18n/scim-uim/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/scim-uim/ChangeLog?rev=1.33&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/scim-uim/ChangeLog?rev=1.33&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/scim-uim/ChangeLog?r1=1.32&r2=1.33
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-i18n/scim-uim/ChangeLog,v
20 retrieving revision 1.32
21 retrieving revision 1.33
22 diff -u -r1.32 -r1.33
23 --- ChangeLog 1 Jun 2009 16:20:12 -0000 1.32
24 +++ ChangeLog 3 Apr 2010 03:10:52 -0000 1.33
25 @@ -1,6 +1,13 @@
26 # ChangeLog for app-i18n/scim-uim
27 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-i18n/scim-uim/ChangeLog,v 1.32 2009/06/01 16:20:12 nixnut Exp $
29 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/app-i18n/scim-uim/ChangeLog,v 1.33 2010/04/03 03:10:52 matsuu Exp $
31 +
32 +*scim-uim-0.2.0-r2 (03 Apr 2010)
33 +
34 + 03 Apr 2010; MATSUU Takuto <matsuu@g.o> -scim-uim-0.2.0.ebuild,
35 + +scim-uim-0.2.0-r2.ebuild, +files/scim-uim-0.2.0-uim-1.5.patch:
36 + Fixed to work with >=uim-1.5. the patch is from
37 + http://gist.github.com/333944.
38
39 01 Jun 2009; nixnut <nixnut@g.o> scim-uim-0.2.0-r1.ebuild:
40 ppc stable #268943
41
42
43
44 1.1 app-i18n/scim-uim/scim-uim-0.2.0-r2.ebuild
45
46 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/scim-uim/scim-uim-0.2.0-r2.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/scim-uim/scim-uim-0.2.0-r2.ebuild?rev=1.1&content-type=text/plain
48
49 Index: scim-uim-0.2.0-r2.ebuild
50 ===================================================================
51 # Copyright 1999-2010 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/app-i18n/scim-uim/scim-uim-0.2.0-r2.ebuild,v 1.1 2010/04/03 03:10:52 matsuu Exp $
54
55 EAPI="2"
56 inherit eutils
57
58 DESCRIPTION="scim-uim is an input module for Smart Common Input Method (SCIM) which uses uim as backend"
59 HOMEPAGE="http://www.scim-im.org/"
60 SRC_URI="mirror://sourceforge/scim/${P}.tar.gz"
61
62 LICENSE="GPL-2"
63 SLOT="0"
64 KEYWORDS="~alpha ~amd64 ~ppc ~x86"
65 IUSE=""
66
67 RDEPEND=">=app-i18n/uim-1.5.0
68 >=app-i18n/scim-1.4.0"
69 DEPEND="${RDEPEND}
70 dev-util/pkgconfig"
71
72 src_prepare() {
73 epatch "${FILESDIR}/${P}-gcc43.patch" \
74 "${FILESDIR}/${P}-uim-1.5.patch"
75 }
76
77 src_install() {
78 emake DESTDIR="${D}" install || die "make install failed"
79
80 dodoc AUTHORS ChangeLog README THANKS || die
81 }
82
83 pkg_postinst() {
84 elog
85 elog "To use SCIM with both GTK2 and XIM, you should use the following"
86 elog "in your user startup scripts such as .gnomerc or .xinitrc:"
87 elog
88 elog "LANG='your_language' scim -d"
89 elog "export XMODIFIERS=@im=SCIM"
90 elog
91 }