summaryrefslogtreecommitdiff
blob: 79115a3478d02218f6c8c7fc2f14b89d78f839db (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
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/testunit/testunit-0.1.4.ebuild,v 1.1 2002/08/20 02:07:07 george Exp $

DESCRIPTION="Test::Unit is a unit testing framework for the Ruby language"
HOMEPAGE="http://testunit.talbott.ws/"
SRC_URI="http://testunit.talbott.ws/packages/${P}.tar.gz"

LICENSE="Ruby"
SLOT="0"
KEYWORDS="x86"

DEPEND=">=dev-lang/ruby-1.6.7"
RDEPEND="${DEPEND}"

S=${WORKDIR}/${P}

src_install () {
	ruby setup.rb config --prefix=${D}/usr || die
	ruby setup.rb setup || die
	ruby setup.rb install || die
	dodoc ChangeLog README TODO

	dohtml -r doc/ 
	dohtml -r examples
	#cp -R doc ${D}usr/share/doc/${PF}/${DOCDESTTREE}/
	#cp -R examples ${D}usr/share/doc/${PF}/${DOCDESTTREE}/
}