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-pinyin: ChangeLog scim-pinyin-0.5.91-r2.ebuild
Date: Sat, 21 Jun 2008 04:41:50
Message-Id: E1K9uv2-0001jc-QG@stork.gentoo.org
1 matsuu 08/06/21 04:41:44
2
3 Modified: ChangeLog
4 Added: scim-pinyin-0.5.91-r2.ebuild
5 Log:
6 Fixed to work with gcc-4.3*, bug #227689.
7 (Portage version: 2.1.5_rc6)
8
9 Revision Changes Path
10 1.27 app-i18n/scim-pinyin/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/scim-pinyin/ChangeLog?rev=1.27&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/scim-pinyin/ChangeLog?rev=1.27&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/scim-pinyin/ChangeLog?r1=1.26&r2=1.27
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-i18n/scim-pinyin/ChangeLog,v
19 retrieving revision 1.26
20 retrieving revision 1.27
21 diff -u -r1.26 -r1.27
22 --- ChangeLog 22 Jul 2007 09:25:03 -0000 1.26
23 +++ ChangeLog 21 Jun 2008 04:41:44 -0000 1.27
24 @@ -1,6 +1,12 @@
25 # ChangeLog for app-i18n/scim-pinyin
26 -# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-i18n/scim-pinyin/ChangeLog,v 1.26 2007/07/22 09:25:03 calchan Exp $
28 +# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/app-i18n/scim-pinyin/ChangeLog,v 1.27 2008/06/21 04:41:44 matsuu Exp $
30 +
31 +*scim-pinyin-0.5.91-r2 (21 Jun 2008)
32 +
33 + 21 Jun 2008; MATSUU Takuto <matsuu@g.o>
34 + +files/scim-pinyin-0.5.91-gcc43.patch, +scim-pinyin-0.5.91-r2.ebuild:
35 + Fixed to work with gcc-4.3*, bug #227689.
36
37 22 Jul 2007; Denis Dupeyron <calchan@g.o>
38 scim-pinyin-0.5.91.ebuild, scim-pinyin-0.5.91-r1.ebuild:
39
40
41
42 1.1 app-i18n/scim-pinyin/scim-pinyin-0.5.91-r2.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/scim-pinyin/scim-pinyin-0.5.91-r2.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/scim-pinyin/scim-pinyin-0.5.91-r2.ebuild?rev=1.1&content-type=text/plain
46
47 Index: scim-pinyin-0.5.91-r2.ebuild
48 ===================================================================
49 # Copyright 1999-2008 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/app-i18n/scim-pinyin/scim-pinyin-0.5.91-r2.ebuild,v 1.1 2008/06/21 04:41:44 matsuu Exp $
52
53 WANT_AUTOCONF=latest
54 WANT_AUTOMAKE=latest
55
56 inherit kde-functions eutils autotools
57
58 DESCRIPTION="Smart Common Input Method (SCIM) Smart Pinyin Input Method"
59 HOMEPAGE="http://www.scim-im.org/"
60 SRC_URI="mirror://sourceforge/scim/${P}.tar.gz"
61
62 IUSE="kde nls"
63 LICENSE="GPL-2"
64 SLOT="0"
65 KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~sparc ~x86"
66
67 RDEPEND="x11-libs/libXt
68 || ( >=app-i18n/scim-1.1 >=app-i18n/scim-cvs-1.1 )
69 kde? ( app-i18n/skim )
70 nls? ( virtual/libintl )"
71
72 DEPEND="${RDEPEND}
73 dev-util/pkgconfig
74 nls? ( sys-devel/gettext )"
75
76 src_unpack() {
77 unpack ${A}
78 cd "${S}"
79 epatch "${FILESDIR}/${P}-fixconfigure.patch"
80 epatch "${FILESDIR}/${PN}-qt335.patch"
81 epatch "${FILESDIR}/${P}-gcc43.patch"
82
83 AT_M4DIR=m4 AT_NO_RECURSIVE=yes eautoreconf
84 }
85
86 src_compile() {
87 econf \
88 $(use_enable nls) \
89 $(use_enable kde skim-support) \
90 --without-arts \
91 --disable-static \
92 --disable-depedency-tracking \
93 || die "econf failed"
94 emake || die "emake failed"
95 }
96
97 src_install() {
98 emake DESTDIR="${D}" install || die "make install failed"
99 dodoc AUTHROS NEWS README ChangeLog
100 }
101
102
103
104 --
105 gentoo-commits@l.g.o mailing list