blob: 8d13d4a22fac7891dd821d69d240b61154f6494c (
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
|
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit flag-o-matic toolchain-funcs
MY_COMMIT="58584bb3e5276586e1cb246641525f72843ebc08"
DESCRIPTION="Libraries/utilities to handle ELF objects (BSD drop in replacement for libelf)"
HOMEPAGE="https://wiki.freebsd.org/LibElf"
SRC_URI="https://github.com/elftoolchain/elftoolchain/archive/${MY_COMMIT}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}"/${PN}-${MY_COMMIT}
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86"
RDEPEND="
app-arch/libarchive:=
dev-libs/uthash
!dev-libs/elfutils
!dev-libs/libelf"
DEPEND="${RDEPEND}"
BDEPEND="
dev-vcs/subversion
sys-apps/lsb-release
>=sys-devel/bmake-20210314-r1
app-alternatives/yacc"
src_prepare() {
default
sed -e 's/-Werror//' -i libelf/os.Linux.mk || die
# use system uthash
rm common/{utarray,uthash}.h || die
# needs unpackaged TET tools
rm -r test || die
}
src_configure() {
# -pg is used and the two are incompatible
filter-flags -fomit-frame-pointer
tc-export AR CC LD RANLIB
export MAKESYSPATH="${BROOT}"/usr/share/mk/bmake
}
src_compile() {
bmake || die
}
src_install() {
bmake \
DESTDIR="${D}" \
BINDIR="${EPREFIX}"/usr/bin/${CHOST}-elftoolchain \
LIBDIR="${EPREFIX}"/usr/$(get_libdir) \
DOCDIR="${EPREFIX}"/usr/share/doc/${PF} \
install || die
# remove static libraries
find "${ED}" -name '*.a' -delete || die
}
|