blob: 08116b85eb7556494c399040e67c0834b7ca2d78 (
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
29
30
31
32
33
34
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/ruby-inifile/ruby-inifile-2.0.0-r1.ebuild,v 1.2 2012/09/16 08:26:13 graaff Exp $
EAPI=4
USE_RUBY="ruby18 ruby19 ree18 jruby"
inherit ruby-ng
DESCRIPTION="Small library to parse INI-files in Ruby"
HOMEPAGE="http://raa.ruby-lang.org/project/ruby-inifile/"
SRC_URI="http://gregoire.lejeune.free.fr/${PN}_${PV}.tar.gz"
SLOT="0"
IUSE=""
LICENSE="Ruby"
KEYWORDS="~x86 ~amd64"
RUBY_S=${PN}
each_ruby_test() {
cd tests
for test in *.rb ; do
${RUBY} -I../lib $test || die
done
}
each_ruby_install() {
${RUBY} setup.rb config --prefix="${D}"/usr || die
${RUBY} setup.rb install || die
}
all_ruby_install() {
dodoc AUTHORS README || die
}
|