mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-11 00:07:51 +03:00
Closes: https://bugs.gentoo.org/925583 Part-of: https://github.com/gentoo/gentoo/pull/44197 Closes: https://github.com/gentoo/gentoo/pull/44197 Signed-off-by: Alexander Puck Neuwirth <apn-pucky@gentoo.org>
45 lines
1.0 KiB
Bash
45 lines
1.0 KiB
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit autotools
|
|
|
|
DESCRIPTION="File comparision, ignoring small numeric differences and formats"
|
|
HOMEPAGE="https://www.nongnu.org/numdiff/"
|
|
SRC_URI="https://savannah.nongnu.org/download/numdiff/${P}.tar.gz"
|
|
|
|
LICENSE="GPL-3+"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
IUSE="+nls +gmp"
|
|
|
|
RDEPEND="
|
|
gmp? ( dev-libs/gmp:0= )
|
|
nls? ( sys-devel/gettext )"
|
|
DEPEND="${RDEPEND}"
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}"/${PN}-5.9.0-fix-build-system.patch
|
|
"${FILESDIR}"/${PN}-5.9.0-fix-autoconf-2.71.patch
|
|
)
|
|
|
|
src_prepare() {
|
|
default
|
|
# yes, it really only needs eautoconf, due to the
|
|
# config.h being hand-written, which would be bulldozered
|
|
# when running eautoreconf (due to it invoking autoheader)
|
|
eautoconf
|
|
}
|
|
|
|
src_configure() {
|
|
local -x CONFIG_SHELL="${BROOT}/bin/bash"
|
|
econf \
|
|
--enable-optimization \
|
|
$(use_enable gmp) \
|
|
$(use_enable nls)
|
|
|
|
# make install also needs to use bash
|
|
sed -i "s#SHELL=/bin/sh#SHELL=${BROOT}/bin/bash#g" Makefile || die
|
|
}
|