gentoo/dev-util/dwdiff/dwdiff-2.1.4.ebuild
Michał Górny f18a27ae11
dev-util/dwdiff: Stabilize 2.1.4 x86, #944632
Signed-off-by: Michał Górny <mgorny@gentoo.org>
2024-11-23 17:02:36 +01:00

37 lines
734 B
Bash

# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit toolchain-funcs
DESCRIPTION="diff-like program operating at word level instead of line level"
HOMEPAGE="https://os.ghalkes.nl/dwdiff.html"
SRC_URI="https://os.ghalkes.nl/dist/${P}.tar.bz2"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="amd64 ~arm64 ppc ~ppc64 x86"
IUSE="nls"
RDEPEND="
dev-libs/icu:=
sys-apps/diffutils"
DEPEND="${RDEPEND}"
BDEPEND="nls? ( sys-devel/gettext )"
src_prepare() {
default
sed -i -e '/INSTALL/s:COPYING::' Makefile.in || die
}
src_configure() {
./configure \
--prefix="${EPREFIX}"/usr \
$(use_with nls gettext) || die
}
src_compile() {
emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}"
}