blob: 8ba656bf850ac197bd693202c7e5b342998e8122 (
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
35
36
37
38
39
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/coolio/coolio-1.1.0-r2.ebuild,v 1.1 2012/04/17 15:47:11 matsuu Exp $
EAPI="4"
# iobuffer: -jruby -rbx
USE_RUBY="ruby18 ruby19 ree18"
RUBY_FAKEGEM_TASK_TEST="spec"
RUBY_FAKEGEM_EXTRADOC="CHANGES.md README.md"
RUBY_FAKEGEM_NAME="cool.io"
inherit ruby-fakegem
MY_P="${RUBY_FAKEGEM_NAME}-${PV}"
DESCRIPTION="A high performance event framework for Ruby which uses the libev C library"
HOMEPAGE="http://coolio.github.com/"
SRC_URI="http://rubygems.org/downloads/${MY_P}.gem"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="dev-libs/libev"
RDEPEND="${DEPEND}"
RESTRICT="test" # need network
RUBY_PATCHES=( "${P}-libev.patch" "${P}-rubyio.patch" )
ruby_add_rdepend ">=dev-ruby/iobuffer-1"
all_ruby_prepare() {
rm -r Gemfile* ext/libev ext/cool.io/libev.c lib/.gitignore || die
}
each_ruby_compile() {
${RUBY} -S rake compile || die
}
|