mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-10 15:45:15 -04:00
Closes: https://bugs.gentoo.org/937362 Signed-off-by: Takuya Wakazono <pastalian46@gmail.com>
35 lines
702 B
Bash
35 lines
702 B
Bash
# Copyright 1999-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
USE_RUBY="ruby31 ruby32 ruby33"
|
|
|
|
RUBY_FAKEGEM_RECIPE_DOC="yard"
|
|
RUBY_FAKEGEM_RECIPE_TEST="rspec3"
|
|
|
|
inherit ruby-fakegem
|
|
|
|
DESCRIPTION="Provides support for SVG in Prawn"
|
|
HOMEPAGE="https://github.com/mogest/prawn-svg"
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~ppc ~x86"
|
|
|
|
ruby_add_rdepend "
|
|
>=dev-ruby/css_parser-1.6.0
|
|
>=dev-ruby/matrix-0.4.2
|
|
>=dev-ruby/prawn-0.11.1
|
|
>=dev-ruby/rexml-3.2.0
|
|
"
|
|
|
|
PATCHES=(
|
|
# adapt to >=dev-ruby/rexml-3.3.3
|
|
"${FILESDIR}/${P}-rexml.patch"
|
|
)
|
|
|
|
all_ruby_prepare() {
|
|
# avoid useless dependencies
|
|
sed -i '/rubocop/d' Gemfile || die
|
|
rm -f Gemfile.lock || die
|
|
}
|