blob: 35541b8f18b69e236221a3e96ee77b4e1327144c (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/sparklines/sparklines-0.5.2-r1.ebuild,v 1.1 2009/06/21 19:59:35 graaff Exp $
inherit ruby
DESCRIPTION="Create sparklines, small graphs to be used inline in texts."
HOMEPAGE="http://sparklines.rubyforge.org/"
SRC_URI="mirror://rubyforge/${PN}/${P}.tgz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc test"
RDEPEND="dev-ruby/rmagick"
DEPEND="doc? ( dev-ruby/rake
dev-ruby/hoe )
test? ( dev-ruby/rake
dev-ruby/hoe
dev-ruby/tidy_table
dev-ruby/dust )"
USE_RUBY="ruby18"
src_compile() {
if use doc; then
rake rerocs || 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 doc/* || die "dohtml failed"
fi
dodoc History.txt README.txt || die "dodoc failed"
# Note: this only works with 1.8 so if you need to make it work
# with 1.9 you better wait for ruby-fakegem.eclass.
insinto $(${RUBY} -r rbconfig -e 'print Config::CONFIG["sitedir"]')/../gems/1.8/specifications
sed -e "s:@VERSION@:${PV}:" "${FILESDIR}"/${PN}.gemspec > "${T}"/${P}.gemspec
doins "${T}"/${P}.gemspec || die "Unable to install fake gemspec"
}
|