blob: d20691b8d498199d29ddbaea703594f75bf21fc1 (
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
27
28
29
30
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rdtool/rdtool-0.6.11.ebuild,v 1.2 2002/10/04 05:28:24 vapier Exp $
S=${WORKDIR}/${P}
DESCRIPTION="Fast string scanning library for Ruby"
SRC_URI="http://www2.pos.to/~tosh/ruby/rdtool/archive/${P}.tar.gz"
HOMEPAGE="http://www2.pos.to/~tosh/ruby/rdtool/en/index.html"
LICENSE="Ruby"
KEYWORDS="x86"
SLOT="0"
DEPEND=">=dev-lang/ruby-1.6.1
>=dev-ruby/racc-1.3
>=dev-ruby/strscan-0.5.8
>=dev-ruby/optparse-0.7.5"
src_compile() {
ruby rdtoolconf.rb || die
make || die
}
src_install () {
chmod 755 rd2
dobin rd2
cd ${S}/rd
insinto /usr/lib/ruby/site_ruby/1.6/rd
doins dot.rd2rc *.rb
}
|