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-text/mecab: mecab-0.98.ebuild ChangeLog
Date: Wed, 30 Sep 2009 14:41:19
Message-Id: E1Mt0Mn-0003Qy-GM@stork.gentoo.org
1 matsuu 09/09/30 14:41:17
2
3 Modified: ChangeLog
4 Added: mecab-0.98.ebuild
5 Log:
6 Version bumped.
7 (Portage version: 2.1.6.13/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.59 app-text/mecab/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/mecab/ChangeLog?rev=1.59&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/mecab/ChangeLog?rev=1.59&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/mecab/ChangeLog?r1=1.58&r2=1.59
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-text/mecab/ChangeLog,v
19 retrieving revision 1.58
20 retrieving revision 1.59
21 diff -u -r1.58 -r1.59
22 --- ChangeLog 16 Aug 2009 08:36:11 -0000 1.58
23 +++ ChangeLog 30 Sep 2009 14:41:17 -0000 1.59
24 @@ -1,6 +1,11 @@
25 # ChangeLog for app-text/mecab
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-text/mecab/ChangeLog,v 1.58 2009/08/16 08:36:11 hattya Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/app-text/mecab/ChangeLog,v 1.59 2009/09/30 14:41:17 matsuu Exp $
29 +
30 +*mecab-0.98 (30 Sep 2009)
31 +
32 + 30 Sep 2009; MATSUU Takuto <matsuu@g.o> +mecab-0.98.ebuild:
33 + Version bumped.
34
35 16 Aug 2009; Akinori Hattori <hattya@g.o> -mecab-0.96.ebuild,
36 -mecab-0.97.ebuild:
37
38
39
40 1.1 app-text/mecab/mecab-0.98.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/mecab/mecab-0.98.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/mecab/mecab-0.98.ebuild?rev=1.1&content-type=text/plain
44
45 Index: mecab-0.98.ebuild
46 ===================================================================
47 # Copyright 1999-2009 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/app-text/mecab/mecab-0.98.ebuild,v 1.1 2009/09/30 14:41:17 matsuu Exp $
50
51 EAPI="2"
52 inherit autotools
53
54 DESCRIPTION="Yet Another Part-of-Speech and Morphological Analyzer"
55 HOMEPAGE="http://mecab.sourceforge.net/"
56 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
57
58 LICENSE="|| ( BSD LGPL-2.1 GPL-2 )"
59 KEYWORDS="~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
60 SLOT="0"
61 IUSE="unicode"
62
63 RESTRICT="test"
64
65 DEPEND="dev-lang/perl"
66 PDEPEND=">=app-dicts/mecab-ipadic-2.7.0.20070610"
67
68 src_prepare() {
69 sed -i \
70 -e "/CFLAGS/s/-O3/${CFLAGS}/" \
71 -e "/CXXFLAGS/s/-O3/${CXXFLAGS}/" \
72 configure.in || die
73 eautoreconf
74 }
75
76 src_configure() {
77
78 local myconf
79
80 use unicode && myconf="${myconf} --with-charset=utf8"
81
82 econf ${myconf} || die
83
84 }
85
86 src_install() {
87
88 emake DESTDIR="${D}" install || die
89 dodoc AUTHORS README || die
90 dohtml -r doc || die
91
92 }