mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-07-25 08:58:27 -07:00
Signed-off-by: Hans de Graaff <graaff@gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11
32 lines
688 B
Bash
32 lines
688 B
Bash
# Copyright 1999-2019 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=5
|
|
USE_RUBY="ruby23 ruby24 ruby25 ruby26"
|
|
|
|
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"
|
|
SLOT="0"
|
|
KEYWORDS="alpha amd64 ~arm ~hppa ia64 ~mips ppc ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos"
|
|
IUSE=""
|
|
|
|
DOCS="ChangeLog *.rd"
|
|
|
|
RUBY_PATCHES=( "${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}
|
|
}
|