| 1 |
# Copyright 1999-2012 Gentoo Foundation
|
| 2 |
# Distributed under the terms of the GNU General Public License v2
|
| 3 |
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/xml-simple/xml-simple-1.1.1.ebuild,v 1.2 2012/05/01 18:24:09 armin76 Exp $
|
| 4 |
|
| 5 |
EAPI=4
|
| 6 |
USE_RUBY="ruby18 ruby19 ree18 jruby"
|
| 7 |
|
| 8 |
RUBY_FAKEGEM_RECIPE_TEST="rspec"
|
| 9 |
RUBY_FAKEGEM_RECIPE_DOC="rdoc"
|
| 10 |
|
| 11 |
RUBY_FAKEGEM_EXTRADOC="CHANGELOG.textile README.textile FEATURES.txt"
|
| 12 |
|
| 13 |
inherit ruby-fakegem
|
| 14 |
|
| 15 |
DESCRIPTION="Settings manager for Ruby scripts"
|
| 16 |
HOMEPAGE="https://github.com/infochimps-labs/configliere"
|
| 17 |
|
| 18 |
LICENSE="Apache-2.0"
|
| 19 |
SLOT="0"
|
| 20 |
KEYWORDS="~amd64"
|
| 21 |
IUSE=""
|
| 22 |
|
| 23 |
ruby_add_rdepend "
|
| 24 |
>=dev-ruby/highline-1.5.2
|
| 25 |
>=dev-ruby/multi_json-1.1"
|
| 26 |
|
| 27 |
RUBY_PATCHES=( ${P}-nobundler.patch )
|
| 28 |
|
| 29 |
all_ruby_prepare() {
|
| 30 |
rm Gemfile* || die
|
| 31 |
}
|
| 32 |
|
| 33 |
all_ruby_install() {
|
| 34 |
all_fakegem_install
|
| 35 |
|
| 36 |
insinto /usr/share/doc/${PF}
|
| 37 |
doins -r examples
|
| 38 |
}
|