mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-06 00:48:18 -07:00
Package-Manager: Portage-2.3.99, Repoman-2.3.22 RepoMan-Options: --include-arches="x86" Signed-off-by: Agostino Sarubbo <ago@gentoo.org>
65 lines
1.5 KiB
Bash
65 lines
1.5 KiB
Bash
# Copyright 1999-2020 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=6
|
|
USE_RUBY="ruby24 ruby25 ruby26"
|
|
|
|
RUBY_FAKEGEM_TASK_DOC=""
|
|
|
|
RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.textile"
|
|
|
|
inherit multilib ruby-fakegem
|
|
|
|
DESCRIPTION="An interface between Ruby and the ImageMagick(TM) image processing library"
|
|
HOMEPAGE="https://github.com/gemhome/rmagick"
|
|
|
|
LICENSE="Artistic"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 ~hppa ppc ppc64 x86 ~x86-macos"
|
|
IUSE="doc"
|
|
|
|
RDEPEND+=" >=media-gfx/imagemagick-6.9.0:= =media-gfx/imagemagick-6*"
|
|
DEPEND+=" test? ( >=media-gfx/imagemagick-6.9.0:=[jpeg,webp] =media-gfx/imagemagick-6* )"
|
|
|
|
ruby_add_bdepend "test? ( dev-ruby/rspec:3 )"
|
|
|
|
all_ruby_prepare() {
|
|
# Avoid unused dependency on rake-compiler. This also avoids an
|
|
# extra compile during tests.
|
|
sed -i -e '/extensiontask/ s:^:#:' \
|
|
-e '/ExtensionTask/,/end/ s:^:#:' \
|
|
-e '/compile/ s:^:#:' Rakefile || die
|
|
|
|
# Avoid simplecov dependency
|
|
sed -i -e '/simplecov/ s:^:#:' Rakefile test/test_all_basic.rb || die
|
|
|
|
# Squelch harmless warning about imagemagick installation.
|
|
sed -i -e '/prefix/ s:ImageMagick:ImageMagick-6:' ext/RMagick/extconf.rb || die
|
|
}
|
|
|
|
each_ruby_configure() {
|
|
${RUBY} -Cext/RMagick extconf.rb || die "extconf.rb failed"
|
|
}
|
|
|
|
each_ruby_compile() {
|
|
emake -Cext/RMagick V=1
|
|
cp ext/RMagick/RMagick2$(get_modname) lib/ || die
|
|
}
|
|
|
|
each_ruby_test() {
|
|
${RUBY} -S rake test || die
|
|
RSPEC_VERSION=3 ruby-ng_rspec spec || die
|
|
}
|
|
|
|
all_ruby_install() {
|
|
all_fakegem_install
|
|
|
|
docinto examples
|
|
dodoc examples/*
|
|
|
|
if use doc ; then
|
|
docinto .
|
|
dodoc -r doc
|
|
fi
|
|
}
|