| 1 |
# Copyright 1999-2011 Gentoo Foundation
|
| 2 |
# Distributed under the terms of the GNU General Public License v2
|
| 3 |
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/kirbybase/kirbybase-2.6-r1.ebuild,v 1.2 2011/07/23 11:25:00 maekke Exp $
|
| 4 |
|
| 5 |
EAPI=2
|
| 6 |
USE_RUBY="ruby18"
|
| 7 |
|
| 8 |
RUBY_FAKEGEM_NAME="KirbyBase"
|
| 9 |
|
| 10 |
RUBY_FAKEGEM_TASK_DOC=""
|
| 11 |
RUBY_FAKEGEM_EXTRADOC="changes.txt kirbybaserubymanual.html README"
|
| 12 |
|
| 13 |
inherit ruby-fakegem
|
| 14 |
|
| 15 |
DESCRIPTION="A simple Ruby DBMS that stores data in plaintext files."
|
| 16 |
HOMEPAGE="http://www.netpromi.com/kirbybase_ruby.html"
|
| 17 |
|
| 18 |
LICENSE="Ruby"
|
| 19 |
SLOT="0"
|
| 20 |
KEYWORDS="~amd64 ~ppc64 x86"
|
| 21 |
IUSE=""
|
| 22 |
|
| 23 |
each_ruby_test() {
|
| 24 |
${RUBY} -Ctest tc_local_db.rb || die
|
| 25 |
${RUBY} -Ctest tc_local_table.rb || die
|
| 26 |
${RUBY} -Ctest ts_local.rb || die
|
| 27 |
}
|
| 28 |
|
| 29 |
all_ruby_install() {
|
| 30 |
all_fakegem_install
|
| 31 |
|
| 32 |
insinto /usr/share/doc/${PF}
|
| 33 |
doins -r examples images || die
|
| 34 |
}
|