blob: 12292a2ea8603ce549ab8148d3964d3db33b4d11 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/ruby-debug/ruby-debug-0.10.3-r1.ebuild,v 1.1 2009/12/28 08:07:20 graaff Exp $
EAPI="2"
USE_RUBY="ruby18"
# The Rakefile has targets that are part of ruby-debug-base, so avoid
# hitting it for now.
RUBY_FAKEGEM_TASK_DOC=""
RUBY_FAKEGEM_TASK_TEST=""
RUBY_FAKEGEM_EXTRADOC="AUTHORS ChangeLog CHANGES README"
RUBY_FAKEGEM_EXTRAINSTALL="cli"
inherit ruby-fakegem
DESCRIPTION="CLI interface to ruby-debug"
HOMEPAGE="http://rubyforge.org/projects/ruby-debug/"
LICENSE="ruby-debug"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE=""
SLOT="0"
ruby_add_rdepend "~dev-ruby/ruby-debug-base-0.10.3 >=dev-ruby/columnize-0.1"
each_ruby_compile() {
# No compilation needed but Rakefile has targets anyway.
local noop=true;
}
all_ruby_compile() {
# No compilation needed but Rakefile has targets anyway.
local noop=true;
}
|