You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
872 B
39 lines
872 B
# Copyright 1999-2015 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/liquid-c/liquid-c-3.0.0.ebuild,v 1.1 2015/04/20 17:26:53 mrueg Exp $
|
|
|
|
EAPI=5
|
|
USE_RUBY="ruby20 ruby21"
|
|
|
|
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
|
|
}
|