blob: 630142db5ecb21ddab0cee6c07bad6277430706f (
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
|
# Copyright 1999-2000 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author Jerry Alexandratos <jerry@gentoo.org>
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/optparse/optparse-0.7.5.ebuild,v 1.2 2001/11/10 12:17:54 hallski Exp $
S=${WORKDIR}/${P}
DESCRIPTION="Yet another option parser for Ruby"
SRC_URI=" http://member.nifty.ne.jp/nokada/archive/${P}.tar.gz"
HOMEPAGE=" http://member.nifty.ne.jp/nokada/ruby.html"
DEPEND=">=dev-lang/ruby-1.6.1"
#src_compile() {
# ruby setup.rb config --without=amstd || die
# ruby setup.rb setup || die
#}
src_install () {
insinto /usr/lib/ruby/site_ruby/1.6
doins optparse.rb
insinto /usr/lib/ruby/site_ruby/1.6/optparse
doins optparse/*
}
|