45 lines
1.3 KiB
Bash
45 lines
1.3 KiB
Bash
# Copyright 1999-2016 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Id$
|
|
|
|
EAPI=5
|
|
|
|
USE_RUBY="ruby20 ruby21 ruby22"
|
|
|
|
RUBY_FAKEGEM_RECIPE_TEST="rspec3"
|
|
RUBY_FAKEGEM_RECIPE_DOC="rdoc"
|
|
RUBY_FAKEGEM_EXTRADOC="README.md"
|
|
|
|
RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
|
|
|
|
RUBY_FAKEGEM_BINWRAP=""
|
|
|
|
inherit ruby-fakegem eutils
|
|
|
|
DESCRIPTION="Manipulate images with minimal use of memory"
|
|
HOMEPAGE="https://github.com/minimagick/minimagick"
|
|
SRC_URI="https://github.com/minimagick/minimagick/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
|
RUBY_S="minimagick-${PV}"
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
IUSE=""
|
|
|
|
# It's only used at runtime in this case because this extension only
|
|
# _calls_ the commands. But when we run tests we're going to need tiff
|
|
# and jpeg support at a minimum.
|
|
RDEPEND+=" media-gfx/imagemagick"
|
|
DEPEND+=" test? ( media-gfx/imagemagick[tiff,jpeg,png] >=media-gfx/graphicsmagick-1.3.20[tiff,jpeg,png] )"
|
|
|
|
ruby_add_bdepend "test? ( dev-ruby/mocha dev-ruby/posix-spawn )"
|
|
|
|
all_ruby_prepare() {
|
|
# remove executable bit from all files
|
|
find "${S}" -type f -exec chmod -x {} +
|
|
|
|
sed -i -e '/\([Bb]undler\|pry\)/ s:^:#:' spec/spec_helper.rb || die
|
|
|
|
# Don't force a specific formatter but use overall Gentoo defaults.
|
|
sed -i -e '/config.formatter/d' spec/spec_helper.rb || die
|
|
}
|