dev-util/dwdiff: EAPI 6 bump.
authorPatrice Clement <monsieurp@gentoo.org>
Mon, 21 Mar 2016 14:16:20 +0000 (14:16 +0000)
committerPatrice Clement <monsieurp@gentoo.org>
Mon, 21 Mar 2016 15:10:27 +0000 (15:10 +0000)
Package-Manager: portage-2.2.26

dev-util/dwdiff/dwdiff-2.1.0-r1.ebuild [new file with mode: 0644]

diff --git a/dev-util/dwdiff/dwdiff-2.1.0-r1.ebuild b/dev-util/dwdiff/dwdiff-2.1.0-r1.ebuild
new file mode 100644 (file)
index 0000000..ddaef12
--- /dev/null
@@ -0,0 +1,48 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit eutils toolchain-funcs
+
+DESCRIPTION="diff-like program that operates at the word level instead of the line level"
+HOMEPAGE="http://os.ghalkes.nl/dwdiff.html"
+SRC_URI="http://os.ghalkes.nl/dist/${P}.tar.bz2"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+IUSE="nls"
+
+CDEPEND="dev-libs/icu:="
+
+RDEPEND="
+       ${CDEPEND}
+       sys-apps/diffutils"
+
+DEPEND="
+       ${CDEPEND}
+       nls? ( sys-devel/gettext )"
+
+src_prepare() {
+       default
+
+       sed -i \
+               -e '/INSTALL/s:COPYING::' \
+               Makefile.in || die
+}
+
+src_configure() {
+       ./configure \
+               --prefix=/usr \
+               $(use_with nls gettext)
+}
+
+src_compile() {
+       emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}"
+}
+
+src_install() {
+       emake prefix="${D}/usr" docdir="${D}/usr/share/doc/${PF}" install
+}