blob: e0c386dcab1a67d61c5bbdd994315164d1582eff (
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rcairo/rcairo-1.8.1-r1.ebuild,v 1.1 2010/07/30 17:44:32 flameeyes Exp $
EAPI=2
# ruby19 → fails, and even crashes Ruby
# jruby → cannot work, it's a compiled extension
USE_RUBY="ruby18"
# Documentation depends on files that are not distributed.
RUBY_FAKEGEM_TASK_DOC=""
# Depends on test-unit-2 which is currently masked.
RUBY_FAKEGEM_TASK_TEST=""
RUBY_FAKEGEM_DOCDIR="doc"
RUBY_FAKEGEM_EXTRADOC="AUTHORS ChangeLog NEWS README"
inherit ruby-fakegem
IUSE="svg"
DESCRIPTION="Ruby bindings for cairo"
HOMEPAGE="http://cairographics.org/rcairo/"
SRC_URI="mirror://rubygems/cairo-${PV}.gem"
SLOT="0"
LICENSE="|| ( Ruby GPL-2 )"
KEYWORDS="~amd64 ~ia64 ~sparc ~x86"
# force identical svg dependency between the two so that you're forced
# to rebuild this when changing it on cairo, this is because we cannot
# enable/disable svg, but it'll follow what the original cairo
# supports.
RDEPEND="${RDEPEND}
>=x11-libs/cairo-1.2.0[svg=]"
DEPEND="${DEPEND}
>=x11-libs/cairo-1.2.0[svg=]
dev-util/pkgconfig"
ruby_add_bdepend "test? ( >=dev-ruby/test-unit-2.1.0-r1:2 )"
all_ruby_prepare() {
# it doesn't follow the usual gem tree hierarchy
ln -s src/lib lib || die
# it fails, badly, as it expects the .pc to be frozen in time,
# which it isn't...
rm test/test_pkg_config.rb || die
# fix two strange assert calls
sed -i \
-e 's:assert_true(:assert(:' \
-e 's:assert_false(:assert(!:' \
test/test_exception.rb \
test/test_constants.rb || die
}
each_ruby_configure() {
${RUBY} extconf.rb || die "extconf failed"
}
each_ruby_compile() {
emake || die "make failed"
# again, try to make it more standard, to install it more easily.
cp src/cairo.so 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/cairo-test-utils.rb -S \
testrb-2 ./test/test_*.rb \
|| die "tests failed"
}
all_ruby_install() {
all_fakegem_install
insinto /usr/share/doc/${PF}/samples
doins -r samples/* || die "Cannot install sample files."
}
|