| 1 |
# Copyright 1999-2012 Gentoo Foundation
|
| 2 |
# Distributed under the terms of the GNU General Public License v2
|
| 3 |
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/treetop/treetop-1.4.10.ebuild,v 1.5 2011/12/31 14:25:34 graaff Exp $
|
| 4 |
|
| 5 |
EAPI=4
|
| 6 |
USE_RUBY="ruby18 ree18"
|
| 7 |
# jruby fails tests, not investigated yet.
|
| 8 |
|
| 9 |
RUBY_FAKEGEM_TASK_DOC=""
|
| 10 |
RUBY_FAKEGEM_TASK_TEST="none"
|
| 11 |
|
| 12 |
RUBY_FAKEGEM_DOCDIR="doc"
|
| 13 |
RUBY_FAKEGEM_EXTRADOC="README.md"
|
| 14 |
|
| 15 |
inherit ruby-fakegem
|
| 16 |
|
| 17 |
DESCRIPTION="Treetop is a language for describing languages."
|
| 18 |
HOMEPAGE="http://treetop.rubyforge.org/"
|
| 19 |
LICENSE="Ruby"
|
| 20 |
|
| 21 |
KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~x86 ~sparc-solaris ~x86-solaris"
|
| 22 |
SLOT="0"
|
| 23 |
IUSE=""
|
| 24 |
|
| 25 |
ruby_add_bdepend "test? ( >=dev-ruby/rr-0.10.2 dev-ruby/rspec:2 dev-ruby/activesupport )"
|
| 26 |
ruby_add_rdepend ">=dev-ruby/polyglot-0.3.1"
|
| 27 |
|
| 28 |
each_ruby_test() {
|
| 29 |
${RUBY} -S rspec spec || die
|
| 30 |
}
|
| 31 |
|
| 32 |
all_ruby_install() {
|
| 33 |
all_fakegem_install
|
| 34 |
|
| 35 |
insinto /usr/share/doc/${PF}/examples
|
| 36 |
doins -r examples/*
|
| 37 |
}
|