diff options
author | Patrice Clement <monsieurp@gentoo.org> | 2015-06-24 14:13:01 +0000 |
---|---|---|
committer | Patrice Clement <monsieurp@gentoo.org> | 2015-06-24 14:13:01 +0000 |
commit | 47d3e48dc875f9a8cf08fcc768c31c602a28e8bd (patch) | |
tree | fed60d64340cac7d84811c1e4ba6195d06acc99b /dev-util | |
parent | Version bump. (diff) | |
download | gentoo-2-47d3e48dc875f9a8cf08fcc768c31c602a28e8bd.tar.gz gentoo-2-47d3e48dc875f9a8cf08fcc768c31c602a28e8bd.tar.bz2 gentoo-2-47d3e48dc875f9a8cf08fcc768c31c602a28e8bd.zip |
Version bump.
Signed-off-by: Patrice Clement <monsieurp@gentoo.org>
(Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 93491BB8)
Diffstat (limited to 'dev-util')
-rw-r--r-- | dev-util/dwdiff/ChangeLog | 7 | ||||
-rw-r--r-- | dev-util/dwdiff/dwdiff-2.1.0.ebuild | 41 |
2 files changed, 47 insertions, 1 deletions
diff --git a/dev-util/dwdiff/ChangeLog b/dev-util/dwdiff/ChangeLog index 41104b2fba00..edeb75e95e6f 100644 --- a/dev-util/dwdiff/ChangeLog +++ b/dev-util/dwdiff/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-util/dwdiff # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/dwdiff/ChangeLog,v 1.15 2015/04/25 07:23:19 monsieurp Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/dwdiff/ChangeLog,v 1.16 2015/06/24 14:13:01 monsieurp Exp $ + +*dwdiff-2.1.0 (24 Jun 2015) + + 24 Jun 2015; Patrice Clement <monsieurp@gentoo.org> +dwdiff-2.1.0.ebuild: + Version bump. *dwdiff-2.0.10 (25 Apr 2015) diff --git a/dev-util/dwdiff/dwdiff-2.1.0.ebuild b/dev-util/dwdiff/dwdiff-2.1.0.ebuild new file mode 100644 index 000000000000..f0e45ce1d73d --- /dev/null +++ b/dev-util/dwdiff/dwdiff-2.1.0.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/dwdiff/dwdiff-2.1.0.ebuild,v 1.1 2015/06/24 14:13:01 monsieurp Exp $ + +EAPI=5 +inherit eutils toolchain-funcs + +DESCRIPTION="A front-end for the diff 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 ~x86" +IUSE="nls" + +COMMON_DEPEND="dev-libs/icu:=" +RDEPEND="${COMMON_DEPEND} + sys-apps/diffutils" +DEPEND="${COMMON_DEPEND} + nls? ( sys-devel/gettext )" + +src_prepare() { + sed -i \ + -e '/INSTALL/s:COPYING::' \ + Makefile.in || die +} + +src_configure() { + ./configure \ + --prefix=/usr \ + $(use_with nls gettext) || die +} + +src_compile() { + emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}" +} + +src_install() { + emake prefix="${D}/usr" docdir="${D}/usr/share/doc/${PF}" install +} |