diff options
author | 2006-10-08 01:11:23 +0000 | |
---|---|---|
committer | 2006-10-08 01:11:23 +0000 | |
commit | eb5c73011af1544f21e9f2c68dfb1b5413f9c6a7 (patch) | |
tree | 0a9be25b946bad8a5b07b3b82352f138fa141377 /dev-ruby/rand/rand-0.9.0.ebuild | |
parent | version bump (diff) | |
download | historical-eb5c73011af1544f21e9f2c68dfb1b5413f9c6a7.tar.gz historical-eb5c73011af1544f21e9f2c68dfb1b5413f9c6a7.tar.bz2 historical-eb5c73011af1544f21e9f2c68dfb1b5413f9c6a7.zip |
Initial ebuild by Aggelos Orfanakos <agorf@void.gr>, #145815
Package-Manager: portage-2.1.1
Diffstat (limited to 'dev-ruby/rand/rand-0.9.0.ebuild')
-rw-r--r-- | dev-ruby/rand/rand-0.9.0.ebuild | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/dev-ruby/rand/rand-0.9.0.ebuild b/dev-ruby/rand/rand-0.9.0.ebuild new file mode 100644 index 000000000000..e6934356cae2 --- /dev/null +++ b/dev-ruby/rand/rand-0.9.0.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rand/rand-0.9.0.ebuild,v 1.1 2006/10/08 01:11:23 pclouds Exp $ + +inherit ruby + +USE_RUBY="ruby18" + +DESCRIPTION="A Ruby library for picking random elements and shuffling." +HOMEPAGE="http://chneukirchen.org/blog/static/projects/rand.html" +SRC_URI="http://chneukirchen.org/releases/${P}.tar.gz" + +LICENSE="Ruby" +SLOT="0" +KEYWORDS="~x86" +IUSE="" + +DEPEND=">=dev-lang/ruby-1.8.4" + +src_unpack() { + unpack ${A} + cd ${P} + [ -f install.rb ] && mv install.rb install.rb.bak +} |