blob: 8d4bfd6a4e75cd38c2283c0a90d3cd7445a4aace (
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
|
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit bash-completion-r1 toolchain-funcs
DESCRIPTION="unix-like reverse engineering framework and commandline tools"
HOMEPAGE="https://www.radare.org"
ARM64_COMMIT=9ab2b0bedde459dc86e079718333de4a63bbbacb
ARMV7_COMMIT=dde39f69ffea19fc37e681874b12cb4707bc4f30
BINS_COMMIT=602471f72caa60d6ece43c3fa483c43decf7052c
if [[ ${PV} == *9999 ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/radareorg/radare2"
else
SRC_URI="mirror+https://github.com/radareorg/radare2/archive/${PV}.tar.gz -> ${P}.tar.gz
mirror+https://github.com/radareorg/vector35-arch-arm64/archive/${ARM64_COMMIT}.tar.gz -> ${P}-vector35-arm64.tar.gz
mirror+https://github.com/radareorg/vector35-arch-armv7/archive/${ARMV7_COMMIT}.tar.gz -> ${P}-vector35-armv7.tar.gz
test? ( https://github.com/radareorg/radare2-testbins/archive/${BINS_COMMIT}.tar.gz -> radare2-testbins-${BINS_COMMIT}.tar.gz )
"
KEYWORDS="~amd64 ~arm ~arm64 ~x86"
fi
LICENSE="GPL-2"
SLOT="0"
IUSE="ssl test"
# Need to audit licenses of the binaries used for testing
RESTRICT="fetch !test? ( test )"
RDEPEND="
dev-libs/libzip:=
dev-libs/xxhash
sys-apps/file
sys-libs/zlib
dev-libs/capstone:0=
ssl? ( dev-libs/openssl:0= )
"
DEPEND="
${RDEPEND}
dev-util/gperf
"
BDEPEND="virtual/pkgconfig"
PATCHES=( "${FILESDIR}/${PN}-5.7.0-vector35.patch" )
src_prepare() {
default
# Hack for vector35 arm plugins
mv "${WORKDIR}/vector35-arch-arm64-${ARM64_COMMIT}" libr/asm/arch/arm/v35arm64/arch-arm64 || die
mv "${WORKDIR}/vector35-arch-armv7-${ARMV7_COMMIT}" libr/asm/arch/arm/v35arm64/arch-armv7 || die
if use test; then
cp -r "${WORKDIR}/radare2-testbins-${BINS_COMMIT}" "${S}/test/bins" || die
cp -r "${WORKDIR}/radare2-testbins-${BINS_COMMIT}" "${S}" || die
fi
# Fix hardcoded docdir for fortunes
sed -i -e "/^#define R2_FORTUNES/s/radare2/$PF/" \
libr/include/r_userconf.h.acr
}
src_configure() {
# Ideally these should be set by ./configure
tc-export CC AR LD OBJCOPY RANLIB
export HOST_CC=${CC}
econf \
--without-libuv \
--with-syscapstone \
--with-sysmagic \
--with-sysxxhash \
--with-syszip \
$(use_with ssl openssl)
}
src_test() {
ln -fs "${S}/binr/radare2/radare2" "${S}/binr/radare2/r2" || die
LDFLAGS=""
for i in "${S}"/libr/*; do
if [[ -d ${i} ]]; then
LDFLAGS+="-R${i} -L${i} "
LD_LIBRARY_PATH+=":${i}"
fi
done
export LDFLAGS LD_LIBRARY_PATH
export PKG_CONFIG_PATH="${S}/pkgcfg"
PATH="${S}/binr/radare2:${PATH}" emake -C test -k unit_tests || die
}
src_install() {
default
insinto /usr/share/zsh/site-functions
doins doc/zsh/_*
newbashcomp doc/bash_autocompletion.sh "${PN}"
bashcomp_alias "${PN}" rafind2 r2 rabin2 rasm2 radiff2
# a workaround for unstable $(INSTALL) call, bug #574866
local d
for d in doc/*; do
if [[ -d ${d} ]]; then
rm -rfv "${d}" || die "failed to delete '${d}'"
fi
done
# These are not really docs. radare assumes
# uncompressed files: bug #761250
docompress -x /usr/share/doc/${PF}/fortunes.{creepy,fun,nsfw,tips}
# Create plugins directory although it's currently unsupported by radare2
keepdir "/usr/$(get_libdir)/radare2/${PV}" || die
}
|