forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Package-Manager: Portage-2.3.84, Repoman-2.3.20 Signed-off-by: Hans de Graaff <[email protected]>
- Loading branch information
Showing
2 changed files
with
82 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
DIST cairo-1.16.2.gem 100352 BLAKE2B b8b02e949b33c60ebe05852efd1cd775a79dab5ab6837f973ecf1b2c1af653a7c09221892b92210b9e5a0d615732116a91e5e1e9f93229f98987c18b36514dcc SHA512 b711399ddd7afa958e3faee87b2a768f55af9ec0cef486d9edcf082a0c7a5ec90610d9a52784d55608a70befe4571e4cb1abc401a8a5b5357fa0bfff9159d239 | ||
DIST cairo-1.16.4.gem 196608 BLAKE2B f7cc8d9e2dc5e3f6dc5a6e259f5594bd7a6cfb13c3577a870949696c25c5139b69d6809cceda664ccf7b7278536b2d551bbd42e4471154a302eb1710324c2792 SHA512 5af8536cd374255386fdc84b265deebb7ed21ef270538f0c2d6a5cdf3dcf1c913633f1ca813f197460968b20b6e592f24334b872cf822584d4de28c589160da8 | ||
DIST cairo-1.16.5.gem 196608 BLAKE2B df84e6b0b4419471cdaacb7eaecf23b9257b8e0933dba0e3058afefc288cbb2f14acb38d4f5302f095ed37c46469eae61d934c8da2d0b1ef1cc48f06e794179f SHA512 98c10e16a3a2d964dd9b5fd450118068042e721f9655758ca567ed45f418ce1c2b9fe8cfa991a94778eb17d69fef65008d2c21244592f4f1819104bdeb76bdcc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
# 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_NAME="cairo" | ||
|
||
RUBY_FAKEGEM_RECIPE_DOC="rdoc" | ||
|
||
RUBY_FAKEGEM_TASK_TEST="" | ||
|
||
RUBY_FAKEGEM_DOCDIR="doc" | ||
|
||
RUBY_FAKEGEM_EXTRADOC="AUTHORS NEWS" | ||
|
||
inherit multilib ruby-fakegem | ||
|
||
DESCRIPTION="Ruby bindings for cairo" | ||
HOMEPAGE="https://cairographics.org/rcairo/" | ||
|
||
IUSE="" | ||
|
||
SLOT="0" | ||
LICENSE="|| ( Ruby GPL-2 )" | ||
KEYWORDS="~amd64 ~ppc ~x86" | ||
|
||
RDEPEND="${RDEPEND} | ||
>=x11-libs/cairo-1.2.0[svg]" | ||
DEPEND="${DEPEND} | ||
>=x11-libs/cairo-1.2.0[svg]" | ||
|
||
ruby_add_bdepend " | ||
>=dev-ruby/pkg-config-1.2.2 | ||
dev-ruby/ruby-glib2 | ||
test? ( >=dev-ruby/test-unit-2.1.0-r1:2 dev-ruby/ruby-poppler )" | ||
|
||
all_ruby_prepare() { | ||
# Avoid unneeded dependency | ||
sed -e '/native-package-installer/ s:^:#:' \ | ||
-e '/def required_pkg_config_package/areturn true' \ | ||
-e '/checking_for/,/^end/ s:^:#:' \ | ||
-i ext/cairo/extconf.rb || die | ||
sed -i -e '/native-package-installer/,/Gem::Dependency/ d' ../metadata || die | ||
|
||
# Avoid test that requires unpackaged fixture | ||
sed -i -e '/sub_test_case..FreeTypeFontFace/,/^ end/ s:^:#:' test/test_font_face.rb || die | ||
} | ||
|
||
each_ruby_configure() { | ||
${RUBY} -Cext/cairo extconf.rb || die "extconf failed" | ||
} | ||
|
||
each_ruby_compile() { | ||
emake V=1 -Cext/cairo | ||
|
||
# again, try to make it more standard, to install it more easily. | ||
cp ext/cairo/cairo$(get_modname) lib/ || die | ||
} | ||
|
||
each_ruby_test() { | ||
# don't rely on the Rakefile because it's a mess to load with | ||
# their hierarchy, do it manually. | ||
${RUBY} -Ilib -r ./test/helper \ | ||
-e 'gem "test-unit"; require "test/unit"; Dir.glob("test/**/test_*.rb") {|f| load f}' || die "tests failed" | ||
} | ||
|
||
each_ruby_install() { | ||
each_fakegem_install | ||
|
||
insinto $(ruby_get_hdrdir) | ||
doins ext/cairo/rb_cairo.h | ||
} | ||
|
||
all_ruby_install() { | ||
all_fakegem_install | ||
|
||
insinto /usr/share/doc/${PF}/samples | ||
doins -r samples/* | ||
} |