commit: be71dee9b1b5f8fdb1b2ec8229e525d20449cbf7 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org> AuthorDate: Sun May 1 08:01:33 2022 +0000 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org> CommitDate: Sun May 1 08:01:33 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=be71dee9
dev-ruby/mecab-ruby: update EAPI 6 -> 8 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org> dev-ruby/mecab-ruby/mecab-ruby-0.996-r2.ebuild | 39 ++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) diff --git a/dev-ruby/mecab-ruby/mecab-ruby-0.996-r2.ebuild b/dev-ruby/mecab-ruby/mecab-ruby-0.996-r2.ebuild new file mode 100644 index 000000000000..706c47049361 --- /dev/null +++ b/dev-ruby/mecab-ruby/mecab-ruby-0.996-r2.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +USE_RUBY="ruby26 ruby27 ruby30 ruby31" + +inherit ruby-ng + +DESCRIPTION="Ruby binding for MeCab" +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 )" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" +IUSE="" + +DEPEND="~app-text/mecab-${PV}" +RDEPEND="${DEPEND}" + +DOCS=( AUTHORS README test.rb ) +HTML_DOCS=( bindings.html ) + +each_ruby_configure() { + ${RUBY} extconf.rb || die +} + +each_ruby_compile() { + emake V=1 +} + +each_ruby_install() { + emake DESTDIR="${D}" install +} + +all_ruby_install() { + einstalldocs +}
