From da58d1b98bec46b7aafdff0836aedb7ceb32929d Mon Sep 17 00:00:00 2001 From: Akinori Hattori Date: Tue, 31 Jul 2018 20:59:52 +0900 Subject: app-text/mecab: fix libdir Closes: https://bugs.gentoo.org/662212 Package-Manager: Portage-2.3.40, Repoman-2.3.9 --- app-text/mecab/mecab-0.996-r1.ebuild | 50 ++++++++++++++++++++++++++++++++++++ app-text/mecab/mecab-0.996.ebuild | 49 ----------------------------------- 2 files changed, 50 insertions(+), 49 deletions(-) create mode 100644 app-text/mecab/mecab-0.996-r1.ebuild delete mode 100644 app-text/mecab/mecab-0.996.ebuild (limited to 'app-text/mecab') diff --git a/app-text/mecab/mecab-0.996-r1.ebuild b/app-text/mecab/mecab-0.996-r1.ebuild new file mode 100644 index 000000000000..0204e718b097 --- /dev/null +++ b/app-text/mecab/mecab-0.996-r1.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI="6" + +inherit autotools eutils + +DESCRIPTION="Yet Another Part-of-Speech and Morphological Analyzer" +HOMEPAGE="https://taku910.github.io/mecab/" +SRC_URI="https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/${PN}/${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[unicode=] + app-dicts/mecab-naist-jdic[unicode=] + )" + +PATCHES=( "${FILESDIR}"/${PN}-0.98-iconv.patch ) +HTML_DOCS=( doc/. ) + +src_prepare() { + default + sed -i \ + -e "/CFLAGS/s/-O3/${CFLAGS}/" \ + -e "/CXXFLAGS/s/-O3/${CXXFLAGS}/" \ + configure.in || die + sed -i "s:/lib:/$(get_libdir):" ${PN}rc.in + + mv configure.{in,ac} + eautoreconf +} + +src_configure() { + econf \ + $(use_enable static-libs static) \ + $(use_with unicode charset UTF-8) +} + +src_install() { + default + find "${ED}" -name 'Makefile*' -delete || die + use static-libs || find "${ED}" -name '*.la' -delete || die +} diff --git a/app-text/mecab/mecab-0.996.ebuild b/app-text/mecab/mecab-0.996.ebuild deleted file mode 100644 index bbe997169300..000000000000 --- a/app-text/mecab/mecab-0.996.ebuild +++ /dev/null @@ -1,49 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="6" - -inherit autotools eutils - -DESCRIPTION="Yet Another Part-of-Speech and Morphological Analyzer" -HOMEPAGE="https://taku910.github.io/mecab/" -SRC_URI="https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/${PN}/${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[unicode=] - app-dicts/mecab-naist-jdic[unicode=] - )" - -PATCHES=( "${FILESDIR}"/${PN}-0.98-iconv.patch ) -HTML_DOCS=( doc/. ) - -src_prepare() { - default - sed -i \ - -e "/CFLAGS/s/-O3/${CFLAGS}/" \ - -e "/CXXFLAGS/s/-O3/${CXXFLAGS}/" \ - configure.in || die - - mv configure.{in,ac} - eautoreconf -} - -src_configure() { - econf \ - $(use_enable static-libs static) \ - $(use_with unicode charset UTF-8) -} - -src_install() { - default - find "${ED}" -name 'Makefile*' -delete || die - use static-libs || find "${ED}" -name '*.la' -delete || die -} -- cgit v1.2.3-65-gdbad