blob: 88d5da88915aa9cc1de7cd38382e8a5781954281 (
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
|
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit flag-o-matic
DESCRIPTION="Extensible editor for structured binary data"
HOMEPAGE="https://www.jemarch.net/poke"
SRC_URI="mirror://gnu/poke/${P}.tar.gz"
LICENSE="GPL-3+"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="pvm-profiling nls test"
RESTRICT="!test? ( test )"
# TODO: libnbd: not packaged in gentoo yet
RDEPEND="
dev-libs/boehm-gc:=
dev-libs/libatomic_ops
sys-devel/gettext
sys-libs/readline:=
"
DEPEND="${RDEPEND}
test? ( dev-util/dejagnu )"
BDEPEND="sys-devel/flex
sys-devel/bison
sys-apps/help2man
virtual/pkgconfig"
src_configure() {
# See bug 858461.
# Upstream support might happen one day. For context, only one file needs
# LTO to be disabled (since it's an autogenerated bytecode interpreter),
# others do not. The build system will handle this at some point in the
# future. Until then, just filter out LTO.
filter-lto
# NB --disable-{gui,mi}:
# These (AFAICT) have no consumers in Gentoo, and should not get any,
# preferably. They are slated for removal with Poke 3 (should happen
# towards the end of the year, possibly), so they should not be relied
# upon.
econf \
--disable-libnbd \
--enable-hserver \
--disable-gui \
--disable-mi \
$(use_enable pvm-profiling) \
$(use_enable nls)
}
src_install() {
default
find "${ED}" -name '*.la' -delete || die
}
|