blob: ba4621acd0a1215715b1f05a037345aef0942660 (
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
|
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
USE_RUBY="ruby20 ruby21 ruby22 ruby23"
RUBY_FAKEGEM_TASK_DOC=""
RUBY_FAKEGEM_TASK_TEST=""
RUBY_FAKEGEM_EXTRADOC="README.md"
inherit multilib ruby-fakegem
DESCRIPTION="Liquid performance extension in C"
HOMEPAGE="https://github.com/Shopify/liquid-c"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
IUSE=""
MY_PN=${PN/-/_}
ruby_add_rdepend ">=dev-ruby/liquid-3.0.0"
all_ruby_prepare() {
sed -i -e "s/-Werror//" ext/${MY_PN}/extconf.rb || die
sed -i -e "/[Bb]undler/d" Rakefile || die
}
each_ruby_configure() {
${RUBY} -Cext/${MY_PN} extconf.rb || die
}
each_ruby_compile() {
emake V=1 -Cext/${MY_PN}
cp ext/${MY_PN}/${MY_PN}$(get_modname) lib/ || die
}
|