60 lines
1.5 KiB
Bash
60 lines
1.5 KiB
Bash
# Copyright 1999-2013 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/ruby-gettext/ruby-gettext-2.2.1.ebuild,v 1.10 2013/01/15 06:14:02 zerochaos Exp $
|
|
|
|
EAPI=4
|
|
|
|
USE_RUBY="ruby18 ruby19 jruby ree18"
|
|
|
|
RUBY_FAKEGEM_NAME="${PN/ruby-/}"
|
|
RUBY_FAKEGEM_VERSION="${PV%_*}"
|
|
|
|
RUBY_FAKEGEM_TASK_DOC="yard"
|
|
RUBY_FAKEGEM_DOCDIR="doc"
|
|
RUBY_FAKEGEM_EXTRADOC="README.rdoc"
|
|
|
|
RUBY_FAKEGEM_TASK_TEST="test"
|
|
|
|
RUBY_FAKEGEM_EXTRAINSTALL="data po"
|
|
|
|
inherit ruby-fakegem
|
|
|
|
DESCRIPTION="Ruby GetText Package is Native Language Support Library and Tools modeled after GNU gettext package"
|
|
HOMEPAGE="http://www.yotabanana.com/hiki/ruby-gettext.html"
|
|
|
|
KEYWORDS="alpha ~amd64 ~arm hppa ia64 ~ppc ~ppc64 sparc ~x86 ~x86-fbsd ~x86-macos"
|
|
IUSE="doc test"
|
|
SLOT="0"
|
|
LICENSE="Ruby"
|
|
|
|
ruby_add_rdepend ">=dev-ruby/locale-2.0.5"
|
|
|
|
ruby_add_bdepend "doc? ( dev-ruby/yard )
|
|
dev-ruby/racc"
|
|
|
|
RDEPEND+=" sys-devel/gettext"
|
|
DEPEND+=" sys-devel/gettext"
|
|
|
|
all_ruby_prepare() {
|
|
# Add missing require on yard.
|
|
sed -i -e '19i require "yard"' Rakefile || die
|
|
|
|
# Fix broken racc invocation
|
|
sed -i -e '/command_line/ s/#{racc}/-S racc/' Rakefile || die
|
|
|
|
# Avoid bundler dependency
|
|
sed -i -e '/bundler/,/install_tasks/ s:^:#:' Rakefile || die
|
|
}
|
|
|
|
each_ruby_test() {
|
|
# Upstream tries to daisy-chain rake calls but they fail badly
|
|
# with our setup, so run it manually.
|
|
${RUBY} -C test -S rake test || die "tests failed"
|
|
}
|
|
|
|
all_ruby_install() {
|
|
all_fakegem_install
|
|
|
|
insinto /usr/share/doc/${PF}
|
|
doins -r samples
|
|
}
|