blob: ef7b77d2288508815b50d5b5b011cebfc5480cf7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/ri/ri-1.8b.ebuild,v 1.10 2004/10/20 16:12:05 agriffis Exp $
DESCRIPTION="Ruby Interactive reference"
HOMEPAGE="http://www.pragmaticprogrammer.com/ruby/downloads/ri.html"
SRC_URI="mirror://sourceforge/rdoc/${P}.tgz"
SLOT="0"
LICENSE="Ruby"
KEYWORDS="alpha hppa mips sparc x86 ~ppc amd64"
IUSE=""
DEPEND="=dev-lang/ruby-1.6*"
S=${WORKDIR}/${PN}
src_install () {
DESTDIR=${D} ruby16 install.rb || die "install.rb failed"
dodoc COPYING ChangeLog README
}
|