blob: f75301ae4a6c1da1712e0ad53290ea8a48a3c202 (
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-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/ruby-svg/ruby-svg-1.0.3-r2.ebuild,v 1.1 2010/07/11 08:58:19 graaff Exp $
EAPI=2
USE_RUBY="ruby18"
inherit ruby-ng
DESCRIPTION="Ruby SVG Generator"
HOMEPAGE="http://ruby-svg.sourceforge.jp/"
SRC_URI="http://downloads.sourceforge.jp/ruby-svg/2288/${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~ia64 ~ppc ~x86"
IUSE="doc examples"
ruby_add_bdepend "doc? ( dev-ruby/rdtool )"
each_ruby_configure() {
${RUBY} install.rb config --prefix=/usr || die
}
each_ruby_compile() {
${RUBY} install.rb setup || die
}
each_ruby_install() {
${RUBY} install.rb config --prefix="${D}"/usr || die
${RUBY} install.rb install || die
}
all_ruby_install() {
if use doc ; then
rd2 README.en.rd > README.en.html
rd2 README.ja.rd > README.ja.html
dohtml *.html || die
fi
if use examples ; then
insinto /usr/share/doc/${PF}/examples
doins sample/*
fi
}
|