diff options
author | Arsen Arsenović <arsen@aarsen.me> | 2022-09-17 01:49:56 +0200 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-09-17 15:34:20 +0100 |
commit | bab5e39c2174714d10809d057984d75f1e25e78f (patch) | |
tree | 317f4028c21b7662e772590de37d6e4fa0943f9c /dev-util/poke/poke-2.4.ebuild | |
parent | dev-util/poke: adopt (diff) | |
download | gentoo-bab5e39c2174714d10809d057984d75f1e25e78f.tar.gz gentoo-bab5e39c2174714d10809d057984d75f1e25e78f.tar.bz2 gentoo-bab5e39c2174714d10809d057984d75f1e25e78f.zip |
dev-util/poke: add 2.4
Signed-off-by: Arsen Arsenović <arsen@aarsen.me>
Closes: https://github.com/gentoo/gentoo/pull/27285
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'dev-util/poke/poke-2.4.ebuild')
-rw-r--r-- | dev-util/poke/poke-2.4.ebuild | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/dev-util/poke/poke-2.4.ebuild b/dev-util/poke/poke-2.4.ebuild new file mode 100644 index 000000000000..683291c3f9ba --- /dev/null +++ b/dev-util/poke/poke-2.4.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +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() { + # 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 +} |