blob: 5b897e519dd6aa4fd3c15ca07abe3718f0e6e4c8 (
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
40
41
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/iobuffer/iobuffer-0.1.3-r1.ebuild,v 1.2 2010/12/26 14:03:25 graaff Exp $
EAPI="2"
USE_RUBY="ruby18 ree18"
RUBY_FAKEGEM_TASK_DOC=""
RUBY_FAKEGEM_EXTRADOC="CHANGES README"
RUBY_FAKEGEM_TASK_TEST="spec"
inherit ruby-fakegem
DESCRIPTION="IO::Buffer is a fast byte queue which is primarily intended for non-blocking I/O applications"
HOMEPAGE="http://mynyml.com/ruby/flexible-continuous-testing"
LICENSE="MIT"
KEYWORDS="~amd64 ~x86 ~x86-macos"
SLOT="0"
IUSE=""
each_ruby_prepare() {
sed -i "s/lib\/iobuffer/ext\/iobuffer/" spec/buffer_spec.rb || die
}
each_ruby_configure() {
${RUBY} -C ext extconf.rb || die "Failed to configure the extension."
}
each_ruby_compile() {
emake -C ext || die "Failed to compile the extension."
}
each_ruby_test() {
${RUBY} -Iext -S spec spec/buffer_spec.rb
}
each_ruby_install() {
emake -C ext install DESTDIR="${D}" || die "Failed to install the extension."
}
|