blob: 6c3aedce493d14b82e7c79eac6ae657ac00b3df5 (
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
|
# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
USE_RUBY="ruby32 ruby33 ruby34 ruby40"
RUBY_FAKEGEM_RECIPE_DOC="none"
RUBY_FAKEGEM_EXTRADOC="BUGS README TODO"
RUBY_FAKEGEM_EXTRAINSTALL="metasm metasm.rb misc samples"
inherit ruby-fakegem
DESCRIPTION="Cross-architecture assembler, disassembler, linker, and debugger"
HOMEPAGE="https://metasm.cr0.org/"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~arm ~x86"
# hackily created
QA_PREBUILT="usr/lib*/ruby/gems/*/gems/${P}/${PN}/dynldr-*.so"
PATCHES=( "${FILESDIR}/${P}-ruby33.patch" )
all_ruby_prepare() {
mkdir bin || die
ln -s ../samples/disassemble.rb ./bin/disassemble || die
}
each_ruby_test() {
${RUBY} -Ilib:. -e "Dir['tests/*.rb'].each{|f| require f}" || die
}
all_ruby_install() {
all_fakegem_install
ruby_fakegem_binwrapper disassemble
# The library isn't created normally. Upstream creates it by hand. As such debugedit can fail to handle it.
dostrip -x $(find "${ED}" -name "dynldr-*.so" -printf '%P\n')
}
|