blob: 98666d3fc15b802011481d9db4f9075d25fea760 (
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/flexmock/flexmock-0.8.6.ebuild,v 1.3 2009/12/27 19:20:28 graaff Exp $
inherit ruby
DESCRIPTION="Simple mock object library for Ruby unit testing"
HOMEPAGE="http://${PN}.rubyforge.org/"
SRC_URI="mirror://rubyforge/${PN}/${P}.tgz"
LICENSE="as-is"
SLOT="0"
KEYWORDS="~amd64 ~x86-fbsd"
IUSE="doc test"
RDEPEND=""
DEPEND="doc? ( dev-ruby/rake )
test? ( dev-ruby/rake )"
USE_RUBY="ruby18 ruby19"
PATCHES=( "${FILESDIR}/${P}-rdoc-template.patch" )
dofakegemspec() {
cat - > "${T}"/${P}.gemspec <<EOF
Gem::Specification.new do |s|
s.name = "${PN}"
s.version = "${PV}"
s.summary = "${DESCRIPTION}"
s.homepage = "${HOMEPAGE}"
end
EOF
insinto $(${RUBY} -r rbconfig -e 'print Config::CONFIG["vendorlibdir"]' | sed -e 's:vendor_ruby:gems:')/specifications
doins "${T}"/${P}.gemspec || die "Unable to install fake gemspec"
}
src_compile() {
if use doc; then
rake rerdoc || die "rake rerdoc failed"
fi
}
src_test() {
for ruby in $USE_RUBY; do
[[ -n `type -p $ruby` ]] || continue
$ruby $(type -p rake) test || die "testsuite failed"
done
}
src_install() {
pushd lib
doruby -r * || die "doruby failed"
popd
if use doc; then
dohtml -r html || die "dohtml failed"
fi
dodoc CHANGES README || die "dodoc failed"
dofakegemspec
}
|