mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-21 21:17:37 -08:00
Bug: https://bugs.gentoo.org/473598 Bug: https://bugs.gentoo.org/720224 Signed-off-by: Fabian Groffen <grobian@gentoo.org>
34 lines
664 B
Bash
34 lines
664 B
Bash
# Copyright 1999-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
USE_RUBY="ruby31 ruby32 ruby33 ruby34"
|
|
|
|
inherit ruby-ng
|
|
|
|
DESCRIPTION="A Romaji <-> Kana conversion library for Ruby"
|
|
HOMEPAGE="http://0xcc.net/ruby-romkan/"
|
|
SRC_URI="http://0xcc.net/ruby-romkan/${P}.tar.gz"
|
|
|
|
LICENSE="Ruby-BSD"
|
|
SLOT="0"
|
|
KEYWORDS="~alpha amd64 ~arm ~hppa ~mips ppc ppc64 ~sparc x86"
|
|
|
|
DOCS="ChangeLog *.rd"
|
|
|
|
all_ruby_prepare() {
|
|
eapply -p0 "${FILESDIR}/${PN}-ruby19.patch"
|
|
}
|
|
|
|
each_ruby_test() {
|
|
${RUBY} -I. -Ke test.rb < /dev/null || die "test failed"
|
|
}
|
|
|
|
each_ruby_install() {
|
|
doruby romkan.rb
|
|
}
|
|
|
|
all_ruby_install() {
|
|
dodoc ${DOCS}
|
|
}
|