blob: 3571a3172cfb84783959727dc8178a076e19b61b (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/narray/narray-0.5.7_p2.ebuild,v 1.12 2006/10/20 11:24:26 flameeyes Exp $
inherit ruby
MY_P=${P/_/}
DESCRIPTION="Numerical N-dimensional Array class"
HOMEPAGE="http://www.ir.isas.ac.jp/~masa/ruby/index-e.html"
SRC_URI="http://www.ir.isas.ac.jp/~masa/ruby/dist/${MY_P}.tar.gz"
LICENSE="Ruby"
SLOT="0"
KEYWORDS="alpha hppa ia64 mips ppc sparc x86"
IUSE=""
USE_RUBY="ruby16 ruby18 ruby19"
DEPEND="virtual/ruby"
S="${WORKDIR}/${MY_P}"
src_compile() {
ruby extconf.rb || die
emake || die
}
src_install() {
local ARCHDIR=`ruby -r rbconfig -e 'print Config::CONFIG["archdir"]'`
make DESTDIR="${D}" hdrdir=${ARCHDIR} install || die
dodoc ChangeLog README.* SPEC.*
}
|