summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManuel Rüger <mrueg@gentoo.org>2015-07-23 12:55:30 +0000
committerManuel Rüger <mrueg@gentoo.org>2015-07-23 12:55:30 +0000
commitab671e2ef54c221ce89b1b0c8e2accb77c703315 (patch)
treee790578177069347bf023f8274f1dc4a85c35141 /app-text/mecab
parentRemove old. (diff)
downloadgentoo-2-ab671e2ef54c221ce89b1b0c8e2accb77c703315.tar.gz
gentoo-2-ab671e2ef54c221ce89b1b0c8e2accb77c703315.tar.bz2
gentoo-2-ab671e2ef54c221ce89b1b0c8e2accb77c703315.zip
Remove old.
(Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key )
Diffstat (limited to 'app-text/mecab')
-rw-r--r--app-text/mecab/ChangeLog7
-rw-r--r--app-text/mecab/mecab-0.98.ebuild41
2 files changed, 5 insertions, 43 deletions
diff --git a/app-text/mecab/ChangeLog b/app-text/mecab/ChangeLog
index 839aafd0ec50..0fcad8f4cd93 100644
--- a/app-text/mecab/ChangeLog
+++ b/app-text/mecab/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for app-text/mecab
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/mecab/ChangeLog,v 1.83 2013/08/03 12:41:27 hattya Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-text/mecab/ChangeLog,v 1.84 2015/07/23 12:55:30 mrueg Exp $
+
+ 23 Jul 2015; Manuel Rüger <mrueg@gentoo.org> -mecab-0.98.ebuild:
+ Remove old.
03 Aug 2013; Akinori Hattori <hattya@gentoo.org> mecab-0.98.ebuild,
mecab-0.996.ebuild:
diff --git a/app-text/mecab/mecab-0.98.ebuild b/app-text/mecab/mecab-0.98.ebuild
deleted file mode 100644
index 1dc9ce322ef7..000000000000
--- a/app-text/mecab/mecab-0.98.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/mecab/mecab-0.98.ebuild,v 1.9 2013/08/03 12:41:27 hattya Exp $
-
-EAPI="2"
-
-inherit autotools eutils
-
-DESCRIPTION="Yet Another Part-of-Speech and Morphological Analyzer"
-HOMEPAGE="http://mecab.sourceforge.net/"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
-
-LICENSE="|| ( BSD LGPL-2.1 GPL-2 )"
-KEYWORDS="amd64 ~arm hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd"
-SLOT="0"
-IUSE="unicode"
-RESTRICT="test"
-
-DEPEND="dev-lang/perl
- virtual/libiconv"
-RDEPEND=""
-PDEPEND="app-dicts/mecab-ipadic"
-
-src_prepare() {
- sed -i \
- -e "/CFLAGS/s/-O3/${CFLAGS}/" \
- -e "/CXXFLAGS/s/-O3/${CXXFLAGS}/" \
- configure.in || die
- epatch "${FILESDIR}/${P}-iconv.patch"
- eautoreconf
-}
-
-src_configure() {
- econf $(use_with unicode charset UTF-8) || die
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die
- dodoc AUTHORS README || die
- dohtml -r doc || die
-}