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-dicts/kasumi: ChangeLog kasumi-2.3-r1.ebuild
Date: Tue, 22 Apr 2008 16:54:32
Message-Id: E1JoLlE-0008AO-Mo@stork.gentoo.org
1 matsuu 08/04/22 16:54:28
2
3 Modified: ChangeLog
4 Added: kasumi-2.3-r1.ebuild
5 Log:
6 Fixed to compile with gcc-4.3, bug #218107.
7 (Portage version: 2.1.4.4)
8
9 Revision Changes Path
10 1.37 app-dicts/kasumi/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-dicts/kasumi/ChangeLog?rev=1.37&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-dicts/kasumi/ChangeLog?rev=1.37&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-dicts/kasumi/ChangeLog?r1=1.36&r2=1.37
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-dicts/kasumi/ChangeLog,v
19 retrieving revision 1.36
20 retrieving revision 1.37
21 diff -u -r1.36 -r1.37
22 --- ChangeLog 2 Nov 2007 16:08:37 -0000 1.36
23 +++ ChangeLog 22 Apr 2008 16:54:28 -0000 1.37
24 @@ -1,6 +1,12 @@
25 # ChangeLog for app-dicts/kasumi
26 -# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-dicts/kasumi/ChangeLog,v 1.36 2007/11/02 16:08:37 matsuu Exp $
28 +# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/app-dicts/kasumi/ChangeLog,v 1.37 2008/04/22 16:54:28 matsuu Exp $
30 +
31 +*kasumi-2.3-r1 (22 Apr 2008)
32 +
33 + 22 Apr 2008; MATSUU Takuto <matsuu@g.o>
34 + +files/kasumi-2.3-gcc43.patch, +kasumi-2.3-r1.ebuild:
35 + Fixed to compile with gcc-4.3, bug #218107.
36
37 *kasumi-2.3 (02 Nov 2007)
38
39
40
41
42 1.1 app-dicts/kasumi/kasumi-2.3-r1.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-dicts/kasumi/kasumi-2.3-r1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-dicts/kasumi/kasumi-2.3-r1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: kasumi-2.3-r1.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-dicts/kasumi/kasumi-2.3-r1.ebuild,v 1.1 2008/04/22 16:54:28 matsuu Exp $
52
53 inherit eutils
54
55 DESCRIPTION="Anthy dictionary maintenance tool"
56 HOMEPAGE="http://kasumi.sourceforge.jp/"
57 SRC_URI="mirror://sourceforge.jp/${PN}/27825/${P}.tar.gz"
58
59 LICENSE="GPL-2"
60 SLOT="0"
61 KEYWORDS="~amd64 ~ppc ~x86 ~x86-fbsd"
62 IUSE="nls"
63
64 RDEPEND=">=x11-libs/gtk+-2.4
65 nls? ( virtual/libintl )
66 virtual/libiconv
67 >=app-i18n/anthy-6131"
68
69 DEPEND="${RDEPEND}
70 dev-util/pkgconfig
71 nls? ( sys-devel/gettext )"
72
73 src_unpack() {
74 unpack ${A}
75 cd "${S}"
76 epatch "${FILESDIR}"/${P}-gcc43.patch
77 }
78
79 src_compile() {
80 econf $(use_enable nls) || die "econf failed"
81 emake || die "emake failed"
82 }
83
84 src_install() {
85 emake DESTDIR="${D}" install || die "emake install failed"
86
87 dodoc README ChangeLog AUTHORS
88 }
89
90
91
92 --
93 gentoo-commits@l.g.o mailing list