blob: fc4cacc755a3c42511c62344823232b46d48816c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/ri/ri-0.8a.ebuild,v 1.4 2002/10/04 05:28:48 vapier Exp $
S="${WORKDIR}/ri"
DESCRIPTION="Ruby Interactive reference"
SRC_URI="http://www.pragmaticprogrammer.com/ruby/downloads/files/${P}.tgz"
HOMEPAGE="http://www.pragmaticprogrammer.com/ruby/downloads/ri.html"
LICENSE="Ruby"
KEYWORDS="x86"
SLOT="0"
DEPEND=">=dev-lang/ruby-1.6.2" # Specified in ${HOMEPAGE}
src_unpack () {
unpack ${A}
cd ${S}
}
src_install () {
dodoc COPYING ChangeLog README
DESTDIR=${D} ruby install.rb
}
|