blob: 289f0aae738302740aea3ee49429a023a4767414 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/nimage/nimage-0.5.9.ebuild,v 1.2 2006/09/02 22:39:39 weeve Exp $
DESCRIPTION="simple Ruby class for displaying 2-D Data as images on X11 display"
HOMEPAGE="http://www.ir.isas.ac.jp/~masa/ruby/index-e.html"
SRC_URI="http://rubyforge.org/frs/download.php/12235/narray-${PV}.tar.gz"
LICENSE="Ruby"
SLOT="0"
KEYWORDS="~sparc ~x86"
IUSE=""
DEPEND="virtual/ruby
>=dev-ruby/narray-0.3.1
x11-libs/libX11"
S="${WORKDIR}/narray-${PV}/${PN}"
src_compile() {
ruby extconf.rb || die
emake || die
}
src_install() {
make exec_prefix=/usr DESTDIR=${D} install || die
dodoc ../ChangeLog README.*
}
|