diff options
-rw-r--r-- | app-text/wdiff/ChangeLog | 7 | ||||
-rw-r--r-- | app-text/wdiff/wdiff-1.1.0.ebuild | 24 |
2 files changed, 30 insertions, 1 deletions
diff --git a/app-text/wdiff/ChangeLog b/app-text/wdiff/ChangeLog index 6796d64d8bdf..ec7c971479db 100644 --- a/app-text/wdiff/ChangeLog +++ b/app-text/wdiff/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-text/wdiff # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/wdiff/ChangeLog,v 1.62 2011/09/19 16:33:06 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/wdiff/ChangeLog,v 1.63 2011/11/21 08:07:28 radhermit Exp $ + +*wdiff-1.1.0 (21 Nov 2011) + + 21 Nov 2011; Tim Harder <radhermit@gentoo.org> +wdiff-1.1.0.ebuild: + Version bump. *wdiff-1.0.1 (19 Sep 2011) diff --git a/app-text/wdiff/wdiff-1.1.0.ebuild b/app-text/wdiff/wdiff-1.1.0.ebuild new file mode 100644 index 000000000000..62a9163f3837 --- /dev/null +++ b/app-text/wdiff/wdiff-1.1.0.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/wdiff/wdiff-1.1.0.ebuild,v 1.1 2011/11/21 08:07:28 radhermit Exp $ + +EAPI="4" + +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 ~sparc-solaris" +IUSE="experimental test" + +RDEPEND="sys-apps/diffutils + sys-apps/less" +DEPEND="${RDEPEND} + test? ( app-misc/screen )" + +src_configure() { + econf \ + $(use_enable experimental) +} |