blob: d0f38b1d2dc6d153fb4285ce19e4b52307a27818 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/programming-ruby/programming-ruby-0.4.ebuild,v 1.12 2005/10/03 13:06:15 agriffis Exp $
MY_P=ProgrammingRuby-${PV}
DESCRIPTION="Programming Ruby: The Pragmatic Programmers' Guide by Dave Thomas and Andrew Hunt"
HOMEPAGE="http://www.rubycentral.com/"
SRC_URI="http://dev.rubycentral.com/downloads/files/${MY_P}.tgz"
LICENSE="OPL"
SLOT="0"
KEYWORDS="alpha amd64 hppa ~ia64 mips ~ppc ~ppc-macos ppc64 sparc x86"
IUSE=""
DEPEND=""
S=${WORKDIR}/${MY_P}
src_install() {
dodoc README
dohtml -r .
}
|