diff options
author | Jeroen Roovers <jer@gentoo.org> | 2014-10-25 18:29:33 +0000 |
---|---|---|
committer | Jeroen Roovers <jer@gentoo.org> | 2014-10-25 18:29:33 +0000 |
commit | aba406689f199721caa122e8d4ef1b8108635dff (patch) | |
tree | b3f2dc8b872a00aa52bc2beeb09134edce9b5e6f /app-text/wdiff | |
parent | Revision bump: fix bundled version numbers, add 5.20.0 to oldversion list (diff) | |
download | gentoo-2-aba406689f199721caa122e8d4ef1b8108635dff.tar.gz gentoo-2-aba406689f199721caa122e8d4ef1b8108635dff.tar.bz2 gentoo-2-aba406689f199721caa122e8d4ef1b8108635dff.zip |
Version bump.
(Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key A792A613)
Diffstat (limited to 'app-text/wdiff')
-rw-r--r-- | app-text/wdiff/ChangeLog | 7 | ||||
-rw-r--r-- | app-text/wdiff/wdiff-1.2.2.ebuild | 34 |
2 files changed, 40 insertions, 1 deletions
diff --git a/app-text/wdiff/ChangeLog b/app-text/wdiff/ChangeLog index 11aee68fca06..efe0ab660a62 100644 --- a/app-text/wdiff/ChangeLog +++ b/app-text/wdiff/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-text/wdiff # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/wdiff/ChangeLog,v 1.95 2014/03/13 20:16:46 ottxor Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/wdiff/ChangeLog,v 1.96 2014/10/25 18:29:33 jer Exp $ + +*wdiff-1.2.2 (25 Oct 2014) + + 25 Oct 2014; Jeroen Roovers <jer@gentoo.org> +wdiff-1.2.2.ebuild: + Version bump. 13 Mar 2014; Christoph Junghans <ottxor@gentoo.org> wdiff-1.2.1.ebuild: added ~x64-macos (tested by me) diff --git a/app-text/wdiff/wdiff-1.2.2.ebuild b/app-text/wdiff/wdiff-1.2.2.ebuild new file mode 100644 index 000000000000..6150cd7066d8 --- /dev/null +++ b/app-text/wdiff/wdiff-1.2.2.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/wdiff/wdiff-1.2.2.ebuild,v 1.1 2014/10/25 18:29:33 jer Exp $ + +EAPI=5 + +DESCRIPTION="Create a diff disregarding formatting" +HOMEPAGE="http://www.gnu.org/software/wdiff/" +SRC_URI="mirror://gnu/${PN}/${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris" +IUSE="experimental test" + +RDEPEND=" + sys-apps/diffutils + sys-apps/less + sys-libs/ncurses" +DEPEND="${RDEPEND} + test? ( app-misc/screen )" + +src_configure() { + econf \ + $(use_enable experimental) +} + +src_test() { + # The test suite hangs in the '3: use pager' test + # when an incompatible screenrc is found + touch tests/screenrc || die + export SYSSCREENRC=tests/screenrc SCREENRC=tests/screenrc + default +} |