diff options
Diffstat (limited to 'dev-util/numdiff/numdiff-5.9.0.ebuild')
| -rw-r--r-- | dev-util/numdiff/numdiff-5.9.0.ebuild | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/dev-util/numdiff/numdiff-5.9.0.ebuild b/dev-util/numdiff/numdiff-5.9.0.ebuild new file mode 100644 index 000000000000..ed9dec004b3d --- /dev/null +++ b/dev-util/numdiff/numdiff-5.9.0.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +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 +) + +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() { + econf \ + --enable-optimization \ + $(use_enable gmp) \ + $(use_enable nls) +} |
