blob: 3862162b84905b5d273bd78e714bd6b05f7bb27c (
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
31
32
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/strscan/strscan-0.6.7.ebuild,v 1.6 2004/06/25 02:05:12 agriffis Exp $
inherit ruby
IUSE=""
DESCRIPTION="A library for fast scanning"
HOMEPAGE="http://i.loveruby.net/en/strscan.html"
SRC_URI="http://i.loveruby.net/archive/strscan/${P}.tar.gz"
LICENSE="LGPL-2"
SLOT="0"
KEYWORDS="alpha hppa mips ppc sparc x86"
USE_RUBY="ruby16"
DEPEND="=dev-lang/ruby-1.6*"
src_install() {
einstall || die
dodoc README*
docinto doc.en
dodoc doc.en/ChangeLog doc.en/umanual.rd
dohtml doc.en/umanual.html
docinto doc.ja
dodoc doc.ja/ChangeLog doc.ja/umanual.rd
dohtml doc.ja/umanual.html
}
|