blob: f244f12c6561b595082881dd82ea6f62138ac24b (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rexml/rexml-3.0.2.ebuild,v 1.5 2004/07/14 21:59:34 agriffis Exp $
inherit ruby
MY_P="${P/-/_}"
DESCRIPTION="An XML parser for Ruby, in Ruby"
HOMEPAGE="http://www.germane-software.com/software/rexml"
SRC_URI="http://www.germane-software.com/archives/${MY_P}.tgz"
LICENSE="Ruby"
SLOT="0"
KEYWORDS="alpha ~hppa ~mips ~sparc x86 ~ppc"
IUSE=""
USE_RUBY="any"
DEPEND="virtual/ruby"
S=${WORKDIR}/${MY_P}
src_install() {
ruby bin/install.rb --destdir=${D} || die
dodoc README
# Use insinto/doins to avoid compressing html files
insinto /usr/share/doc/${P}
doins *.html
dohtml -r doc/*
}
|