blob: 1a6fc8ca2b4efa0c14ed7f3981da1a17f809837c (
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
37
38
39
40
41
42
43
44
45
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/ruby-debug-base/ruby-debug-base-0.10.3-r2.ebuild,v 1.5 2012/05/01 18:24:03 armin76 Exp $
EAPI="2"
USE_RUBY="ruby18 ree18"
RUBY_FAKEGEM_EXTRADOC="AUTHORS CHANGES README"
inherit ruby-fakegem
DESCRIPTION="Fast Ruby debugger"
HOMEPAGE="http://rubyforge.org/projects/ruby-debug/"
LICENSE="BSD-2"
KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
IUSE=""
SLOT="0"
ruby_add_rdepend ">=dev-ruby/linecache-0.3"
each_ruby_configure() {
pushd ext
${RUBY} extconf.rb || die "extconf.rb failed"
popd
}
each_ruby_compile() {
pushd ext
emake || die "emake failed"
popd
}
each_ruby_install() {
each_fakegem_install
ruby_fakegem_newins ext/ruby_debug.so lib/ruby_debug.so
}
all_ruby_install() {
all_fakegem_install
if use doc; then
dohtml doc -r || die
fi
}
|