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/kakasi: ChangeLog kakasi-2.3.4-r1.ebuild
Date: Thu, 30 Oct 2008 23:11:02
Message-Id: E1KvgfM-0006ck-6h@stork.gentoo.org
1 matsuu 08/10/30 23:11:00
2
3 Modified: ChangeLog
4 Added: kakasi-2.3.4-r1.ebuild
5 Log:
6 Fixed CC variable, bug #243596.
7 (Portage version: 2.2_rc12/cvs/Linux 2.6.27-gentoo x86_64)
8
9 Revision Changes Path
10 1.13 app-i18n/kakasi/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/kakasi/ChangeLog?rev=1.13&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/kakasi/ChangeLog?rev=1.13&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/kakasi/ChangeLog?r1=1.12&r2=1.13
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-i18n/kakasi/ChangeLog,v
19 retrieving revision 1.12
20 retrieving revision 1.13
21 diff -u -r1.12 -r1.13
22 --- ChangeLog 12 Jul 2006 21:09:14 -0000 1.12
23 +++ ChangeLog 30 Oct 2008 23:11:00 -0000 1.13
24 @@ -1,6 +1,11 @@
25 # ChangeLog for app-i18n/kakasi
26 -# Copyright 2000-2006 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-i18n/kakasi/ChangeLog,v 1.12 2006/07/12 21:09:14 agriffis Exp $
28 +# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/app-i18n/kakasi/ChangeLog,v 1.13 2008/10/30 23:11:00 matsuu Exp $
30 +
31 +*kakasi-2.3.4-r1 (30 Oct 2008)
32 +
33 + 30 Oct 2008; MATSUU Takuto <matsuu@g.o> +kakasi-2.3.4-r1.ebuild:
34 + Fixed CC variable, bug #243596.
35
36 12 Jul 2006; Aron Griffis <agriffis@g.o> kakasi-2.3.4.ebuild:
37 Mark 2.3.4 stable on ia64
38
39
40
41 1.1 app-i18n/kakasi/kakasi-2.3.4-r1.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/kakasi/kakasi-2.3.4-r1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/kakasi/kakasi-2.3.4-r1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: kakasi-2.3.4-r1.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/kakasi/kakasi-2.3.4-r1.ebuild,v 1.1 2008/10/30 23:11:00 matsuu Exp $
51
52 inherit toolchain-funcs
53
54 DESCRIPTION="Converts Japanese text between kanji, kana, and romaji"
55 HOMEPAGE="http://kakasi.namazu.org/"
56 SRC_URI="http://kakasi.namazu.org/stable/${P}.tar.gz"
57
58 LICENSE="GPL-2"
59 SLOT="0"
60 KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
61 IUSE=""
62
63 src_compile() {
64 econf || die
65 emake CC="$(tc-getCC)" || die
66 }
67
68 src_install() {
69 emake DESTDIR="${D}" install || die
70 doman doc/kakasi.1
71 dodoc AUTHORS ChangeLog NEWS ONEWS README README-ja THANKS TODO
72 dodoc doc/ChangeLog.lib doc/JISYO doc/README.lib README.wakati
73 }