blob: 82166ee82d99cce64cf95690346be01738eccf60 (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/amazon-ec2/amazon-ec2-0.9.15.ebuild,v 1.2 2010/08/15 19:14:35 flameeyes Exp $
EAPI=2
USE_RUBY="ruby18 ruby19 jruby"
RUBY_FAKEGEM_TASK_DOC="yard"
RUBY_FAKEGEM_DOCDIR="doc"
RUBY_FAKEGEM_EXTRADOC="README.rdoc README_dev.rdoc ChangeLog"
RUBY_FAKEGEM_BINWRAP="ec2sh"
inherit ruby-fakegem
DESCRIPTION="Library for accessing the Amazon Web Services EC2 and related"
HOMEPAGE="http://github.com/grempe/amazon-ec2"
LICENSE="Ruby"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
# We only need yard for Ruby 1.8, as we use it for documentation
# generation.
USE_RUBY=ruby18 \
ruby_add_bdepend "doc? ( dev-ruby/yard )"
ruby_add_bdepend "
test? (
virtual/ruby-test-unit
>=dev-ruby/test-spec-0.10.0
>=dev-ruby/mocha-0.9.8
!dev-ruby/test-unit:2
)"
ruby_add_rdepend '>=dev-ruby/xml-simple-1.0.12'
each_ruby_prepare() {
case ${RUBY} in
*ruby19)
;;
*)
# Remove the reference to test-unit gem, since it's only
# available on Ruby 1.9.
sed -i -e '/^gem/s:^:#:' test/test_helper.rb || die
;;
esac
}
|