blob: d1bb9090e7cc9a6a804aee4a8e7cb78004184cff (
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-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/bitescript/bitescript-0.0.6.ebuild,v 1.1 2010/06/13 06:18:09 graaff Exp $
EAPI=2
USE_RUBY="jruby"
RUBY_FAKGEM_TASK_DOC="docs"
RUBY_FAKEGEM_DOC_DIR="doc"
RUBY_FAKEGEM_EXTRADOC="README.txt History.txt"
inherit ruby-fakegem eutils
DESCRIPTION="BiteScript is a Ruby DSL for generating Java bytecode and classes."
HOMEPAGE="http://kenai.com/projects/bitescript"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
IUSE=""
all_ruby_install() {
all_fakegem_install
docinto examples
dodoc examples/* || die
}
|