blob: 54fcb4fa924c9938bdce44b8b7061ce58d2ea1cf (
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
|
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
USE_RUBY="ruby26 ruby27 ruby30"
GITHUB_URI="https://github.com/Flameeyes/${PN}"
RUBY_FAKEGEM_RECIPE_TEST="none"
RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
inherit ruby-fakegem
SRC_URI="${GITHUB_URI}/archive/${PV}.tar.gz -> ${P}.tar.gz"
DESCRIPTION="Ruby library to access ELF files information"
HOMEPAGE="https://www.flameeyes.eu/projects/ruby-elf"
LICENSE="GPL-2+"
SLOT="0"
KEYWORDS="~amd64"
IUSE="test"
ruby_add_bdepend "
test? ( dev-ruby/test-unit:2 )
dev-ruby/rake"
# for the man pages
DEPEND+="
dev-libs/libxslt
app-text/docbook-xsl-ns-stylesheets"
RDEPEND+="
virtual/man"
all_ruby_compile() {
# build the man pages
rake manpages || die "rake manpages failed"
}
each_ruby_test() {
ruby-ng_testrb-2 -Ilib test/test_*.rb
}
all_ruby_install() {
all_fakegem_install
doman manpages/*.1
dodoc DONATING README.md
}
|