diff options
author | Akinori Hattori <hattya@gentoo.org> | 2013-08-03 12:20:57 +0000 |
---|---|---|
committer | Akinori Hattori <hattya@gentoo.org> | 2013-08-03 12:20:57 +0000 |
commit | fee2353ed879fa164b3dce899d1c45839823d8f6 (patch) | |
tree | 36d81ecce09203235e3bb55cf769fe4563e9f839 /app-text/mecab | |
parent | update to EAPI 5 (diff) | |
download | gentoo-2-fee2353ed879fa164b3dce899d1c45839823d8f6.tar.gz gentoo-2-fee2353ed879fa164b3dce899d1c45839823d8f6.tar.bz2 gentoo-2-fee2353ed879fa164b3dce899d1c45839823d8f6.zip |
remove old ebuilds
(Portage version: 2.1.12.2/cvs/Linux x86_64, signed Manifest commit with key EC917A6D)
Diffstat (limited to 'app-text/mecab')
-rw-r--r-- | app-text/mecab/ChangeLog | 7 | ||||
-rw-r--r-- | app-text/mecab/mecab-0.97-r1.ebuild | 51 | ||||
-rw-r--r-- | app-text/mecab/mecab-0.991.ebuild | 53 | ||||
-rw-r--r-- | app-text/mecab/mecab-0.993.ebuild | 53 | ||||
-rw-r--r-- | app-text/mecab/mecab-0.994.ebuild | 53 | ||||
-rw-r--r-- | app-text/mecab/mecab-0.995.ebuild | 53 |
6 files changed, 6 insertions, 264 deletions
diff --git a/app-text/mecab/ChangeLog b/app-text/mecab/ChangeLog index a09adda0bffb..b8b2f9b25b91 100644 --- a/app-text/mecab/ChangeLog +++ b/app-text/mecab/ChangeLog @@ -1,6 +1,11 @@ # 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.81 2013/08/03 07:49:57 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/mecab/ChangeLog,v 1.82 2013/08/03 12:20:57 hattya Exp $ + + 03 Aug 2013; Akinori Hattori <hattya@gentoo.org> -mecab-0.97-r1.ebuild, + -mecab-0.991.ebuild, -mecab-0.993.ebuild, -mecab-0.994.ebuild, + -mecab-0.995.ebuild: + remove old ebuilds 03 Aug 2013; Agostino Sarubbo <ago@gentoo.org> mecab-0.996.ebuild: Stable for sparc, wrt bug #476154 diff --git a/app-text/mecab/mecab-0.97-r1.ebuild b/app-text/mecab/mecab-0.97-r1.ebuild deleted file mode 100644 index 94372a2c357c..000000000000 --- a/app-text/mecab/mecab-0.97-r1.ebuild +++ /dev/null @@ -1,51 +0,0 @@ -# Copyright 1999-2010 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/mecab/mecab-0.97-r1.ebuild,v 1.8 2010/01/14 00:18:06 jer Exp $ - -IUSE="unicode" - -WANT_AUTOCONF="latest" -WANT_AUTOMAKE="latest" - -inherit autotools - -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" -SLOT="0" -RESTRICT="test" - -DEPEND="dev-lang/perl" -PDEPEND=">=app-dicts/mecab-ipadic-2.7.0.20070610" - -src_unpack() { - unpack ${A} - cd "${S}" - sed -i \ - -e "/CFLAGS/s/-O3/${CFLAGS}/" \ - -e "/CXXFLAGS/s/-O3/${CXXFLAGS}/" \ - configure.in || die - eautoreconf -} - -src_compile() { - - local myconf - - use unicode && myconf="${myconf} --with-charset=utf8" - - econf ${myconf} || die - emake || die - -} - -src_install() { - - emake DESTDIR="${D}" install || die - dodoc AUTHORS README || die - dohtml -r doc || die - -} diff --git a/app-text/mecab/mecab-0.991.ebuild b/app-text/mecab/mecab-0.991.ebuild deleted file mode 100644 index b4507104dfe4..000000000000 --- a/app-text/mecab/mecab-0.991.ebuild +++ /dev/null @@ -1,53 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/mecab/mecab-0.991.ebuild,v 1.2 2012/05/17 16:37:28 aballier Exp $ - -EAPI="4" -inherit autotools eutils - -DESCRIPTION="Yet Another Part-of-Speech and Morphological Analyzer" -HOMEPAGE="http://mecab.sourceforge.net/" -SRC_URI="http://mecab.googlecode.com/files/${P}.tar.gz" - -LICENSE="|| ( BSD LGPL-2.1 GPL-2 )" -KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd" -SLOT="0" -IUSE="static-libs unicode" - -DEPEND="dev-lang/perl - virtual/libiconv" -RDEPEND="" -PDEPEND="|| ( - >=app-dicts/mecab-ipadic-2.7.0.20070610[unicode=] - app-dicts/mecab-naist-jdic[unicode=] - )" - -src_prepare() { - sed -i \ - -e "/CFLAGS/s/-O3/${CFLAGS}/" \ - -e "/CXXFLAGS/s/-O3/${CXXFLAGS}/" \ - configure.in || die - epatch "${FILESDIR}/${PN}-0.98-iconv.patch" - eautoreconf -} - -src_configure() { - local myconf - - use unicode && myconf="${myconf} --with-charset=utf8" - - econf \ - $(use_enable static-libs static) \ - ${myconf} -} - -src_install() { - default - - if ! use static-libs ; then - find "${ED}" -name '*.la' -delete - fi - - dodoc AUTHORS README - dohtml -r doc/* -} diff --git a/app-text/mecab/mecab-0.993.ebuild b/app-text/mecab/mecab-0.993.ebuild deleted file mode 100644 index 9a6bbf998468..000000000000 --- a/app-text/mecab/mecab-0.993.ebuild +++ /dev/null @@ -1,53 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/mecab/mecab-0.993.ebuild,v 1.1 2012/05/31 12:01:24 naota Exp $ - -EAPI="4" -inherit autotools eutils - -DESCRIPTION="Yet Another Part-of-Speech and Morphological Analyzer" -HOMEPAGE="http://mecab.sourceforge.net/" -SRC_URI="http://mecab.googlecode.com/files/${P}.tar.gz" - -LICENSE="|| ( BSD LGPL-2.1 GPL-2 )" -KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" -SLOT="0" -IUSE="static-libs unicode" - -DEPEND="dev-lang/perl - virtual/libiconv" -RDEPEND="" -PDEPEND="|| ( - >=app-dicts/mecab-ipadic-2.7.0.20070610[unicode=] - app-dicts/mecab-naist-jdic[unicode=] - )" - -src_prepare() { - sed -i \ - -e "/CFLAGS/s/-O3/${CFLAGS}/" \ - -e "/CXXFLAGS/s/-O3/${CXXFLAGS}/" \ - configure.in || die - epatch "${FILESDIR}/${PN}-0.98-iconv.patch" - eautoreconf -} - -src_configure() { - local myconf - - use unicode && myconf="${myconf} --with-charset=utf8" - - econf \ - $(use_enable static-libs static) \ - ${myconf} -} - -src_install() { - default - - if ! use static-libs ; then - find "${ED}" -name '*.la' -delete - fi - - dodoc AUTHORS README - dohtml -r doc/* -} diff --git a/app-text/mecab/mecab-0.994.ebuild b/app-text/mecab/mecab-0.994.ebuild deleted file mode 100644 index d88a5ff6b22c..000000000000 --- a/app-text/mecab/mecab-0.994.ebuild +++ /dev/null @@ -1,53 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/mecab/mecab-0.994.ebuild,v 1.1 2012/11/16 07:31:03 patrick Exp $ - -EAPI="4" -inherit autotools eutils - -DESCRIPTION="Yet Another Part-of-Speech and Morphological Analyzer" -HOMEPAGE="http://mecab.sourceforge.net/" -SRC_URI="http://mecab.googlecode.com/files/${P}.tar.gz" - -LICENSE="|| ( BSD LGPL-2.1 GPL-2 )" -KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" -SLOT="0" -IUSE="static-libs unicode" - -DEPEND="dev-lang/perl - virtual/libiconv" -RDEPEND="" -PDEPEND="|| ( - >=app-dicts/mecab-ipadic-2.7.0.20070610[unicode=] - app-dicts/mecab-naist-jdic[unicode=] - )" - -src_prepare() { - sed -i \ - -e "/CFLAGS/s/-O3/${CFLAGS}/" \ - -e "/CXXFLAGS/s/-O3/${CXXFLAGS}/" \ - configure.in || die - epatch "${FILESDIR}/${PN}-0.98-iconv.patch" - eautoreconf -} - -src_configure() { - local myconf - - use unicode && myconf="${myconf} --with-charset=utf8" - - econf \ - $(use_enable static-libs static) \ - ${myconf} -} - -src_install() { - default - - if ! use static-libs ; then - find "${ED}" -name '*.la' -delete - fi - - dodoc AUTHORS README - dohtml -r doc/* -} diff --git a/app-text/mecab/mecab-0.995.ebuild b/app-text/mecab/mecab-0.995.ebuild deleted file mode 100644 index b256721a35e5..000000000000 --- a/app-text/mecab/mecab-0.995.ebuild +++ /dev/null @@ -1,53 +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.995.ebuild,v 1.1 2013/01/29 08:05:49 patrick Exp $ - -EAPI="4" -inherit autotools eutils - -DESCRIPTION="Yet Another Part-of-Speech and Morphological Analyzer" -HOMEPAGE="http://mecab.sourceforge.net/" -SRC_URI="http://mecab.googlecode.com/files/${P}.tar.gz" - -LICENSE="|| ( BSD LGPL-2.1 GPL-2 )" -KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" -SLOT="0" -IUSE="static-libs unicode" - -DEPEND="dev-lang/perl - virtual/libiconv" -RDEPEND="" -PDEPEND="|| ( - >=app-dicts/mecab-ipadic-2.7.0.20070610[unicode=] - app-dicts/mecab-naist-jdic[unicode=] - )" - -src_prepare() { - sed -i \ - -e "/CFLAGS/s/-O3/${CFLAGS}/" \ - -e "/CXXFLAGS/s/-O3/${CXXFLAGS}/" \ - configure.in || die - epatch "${FILESDIR}/${PN}-0.98-iconv.patch" - eautoreconf -} - -src_configure() { - local myconf - - use unicode && myconf="${myconf} --with-charset=utf8" - - econf \ - $(use_enable static-libs static) \ - ${myconf} -} - -src_install() { - default - - if ! use static-libs ; then - find "${ED}" -name '*.la' -delete - fi - - dodoc AUTHORS README - dohtml -r doc/* -} |