diff options
Diffstat (limited to 'dev-ruby/ri/ri-0.8a.ebuild')
-rw-r--r-- | dev-ruby/ri/ri-0.8a.ebuild | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/dev-ruby/ri/ri-0.8a.ebuild b/dev-ruby/ri/ri-0.8a.ebuild new file mode 100644 index 000000000000..afed31a54b12 --- /dev/null +++ b/dev-ruby/ri/ri-0.8a.ebuild @@ -0,0 +1,25 @@ +# 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.8a.ebuild,v 1.1 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} +} + +src_install () { + dodoc COPYING ChangeLog README + DESTDIR=${D} ruby install.rb +} |