blob: 19f9e5e73d6ae4d6f9863e0ddf0b7925e5618f4f (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/ruby-gdchart/ruby-gdchart-1.0.0.ebuild,v 1.3 2007/01/21 08:13:55 pclouds Exp $
RUBY_BUG_145222=yes
inherit ruby
MY_P="${P/_/-}"
DESCRIPTION="Ruby/GDChart is an extension to use Bruce Verderaime's GDCHART library (http://www.fred.net/brv/chart) from Ruby."
HOMEPAGE="http://sourceforge.jp/projects/ruby-gdchart/"
SRC_URI="http://rubyforge.org/frs/download.php/6952/${MY_P}.tar.gz"
RESTRICT="nomirror"
LICENSE="Ruby"
SLOT="0"
KEYWORDS="~x86 ~ppc ~ppc64"
IUSE="examples"
USE_RUBY="ruby18 ruby19"
DEPEND="virtual/ruby
media-libs/gd"
S=${WORKDIR}/${MY_P}
src_compile() {
cd ext
ruby extconf.rb || die
make || die
}
src_install () {
cd ext
make DESTDIR=${D} install || die
dodoc README.en ChangeLog bar_sample.rb pie_sample.rb
}
|