blob: ee0e75a76e625a1451ed2f88936e8853d39db004 (
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
|
# Copyright 1999-2001 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author: Richard Lowe <richlowe@richlowe.net>
# Maintainer: Tools Team <tools@gentoo.org>
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/ri/ri-0.7a.ebuild,v 1.2 2002/07/08 01:57:47 agriffis 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}
patch < ${FILESDIR}/${P}-gentoo.patch || die
}
src_install () {
dodoc COPYING ChangeLog README
ruby install.rb
}
|