blob: dd06a18a6a770c3a6804df83c8b094ee3ed981ea (
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
42
43
44
45
46
47
48
49
50
51
52
53
|
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
USE_RUBY="ruby26 ruby27"
RUBY_FAKEGEM_RECIPE_DOC="none"
RUBY_FAKEGEM_DOCDIR="doc"
RUBY_FAKEGEM_EXTRADOC="README.md"
inherit ruby-fakegem
DESCRIPTION="Use libsass with Ruby"
HOMEPAGE="https://github.com/sass/sassc-ruby"
LICENSE="MIT"
KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~x86"
SLOT="2"
IUSE=""
RDEPEND+=">=dev-libs/libsass-3.6.1"
ruby_add_rdepend "
>=dev-ruby/ffi-1.9.6
"
ruby_add_bdepend "test? (
dev-ruby/test_construct
dev-ruby/minitest-around
)"
all_ruby_prepare() {
# Use unbundled libsass
rm -rf ext || die
sed -i -e '/ffi_lib/ s:__dir__:"'${ESYSROOT}'/usr/'$(get_libdir)'":' \
lib/sassc/native.rb || die
# Avoid version-specific test so newer libsass versions can be used.
sed -i -e '/test_it_reports_the_libsass_version/,/end/ s:^:#:' test/native_test.rb || die
sed -i -e '/pry/ s:^:#:' test/test_helper.rb || die
}
each_ruby_test() {
${RUBY} -Ilib:.:test -e 'Dir["test/**/*_test.rb"].each{|f| require f}' || die
}
each_ruby_install() {
each_fakegem_install
ruby_fakegem_extensions_installed
}
|