blob: 78603d7846f6239b5e86ecd0e65f832ff7d4c391 (
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
|
# Copyright 1999-2019 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="http://www.nongnu.org/numdiff/"
SRC_URI="http://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 )
!dev-util/ndiff"
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)
}
|