diff options
author | Michael Conrad Tilstra <tadpol@gentoo.org> | 2001-06-05 16:31:49 +0000 |
---|---|---|
committer | Michael Conrad Tilstra <tadpol@gentoo.org> | 2001-06-05 16:31:49 +0000 |
commit | 73e6b3cf2bf7a8c2621ea768ef59dc6ca8063be1 (patch) | |
tree | f56e218f7f7e0b6bceb44d3c70270f2e4ef070bb | |
parent | o Uses diff3 to do a three-way directory merge (diff) | |
download | historical-73e6b3cf2bf7a8c2621ea768ef59dc6ca8063be1.tar.gz historical-73e6b3cf2bf7a8c2621ea768ef59dc6ca8063be1.tar.bz2 historical-73e6b3cf2bf7a8c2621ea768ef59dc6ca8063be1.zip |
- adding xxdiff. Nice diff gui that supports diff3.
-rw-r--r-- | dev-util/xxdiff/xxdiff-1.9.ebuild | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/dev-util/xxdiff/xxdiff-1.9.ebuild b/dev-util/xxdiff/xxdiff-1.9.ebuild new file mode 100644 index 000000000000..4a6c1cbfe95f --- /dev/null +++ b/dev-util/xxdiff/xxdiff-1.9.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2001 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Michael Conrad Tilstra <michael@gentoo.org> <tadpol@tadpol.org> +# $Header: /var/cvsroot/gentoo-x86/dev-util/xxdiff/xxdiff-1.9.ebuild,v 1.1 2001/06/05 16:31:49 michael Exp $ + +#P= +A=${P}.src.tar.gz +S=${WORKDIR}/${P} +DESCRIPTION="A graphical file comparator and merge tool simular to xdiff." +SRC_URI="http://prdownloads.sourceforge.net/xxdiff/${A}" +HOMEPAGE="http://xxdiff.sourceforge.net/" + +DEPEND="virtual/glibc + >=x11-libs/qt-x11-2.3.0 + >=sys-devel/gcc-2.95.3" + +RDEPEND="sys-apps/diffutils" + +src_compile() { + try ./configure --prefix=/usr --mandir=/usr/share/man + try make +} + +src_install () { + dobin src/xxdiff + newman src/xxdiff.man xxdiff.1 + dodoc README COPYING CHANGES ChangeLog copyright.txt doc/xxdiff-doc.sgml +} + +# vim: ai et sw=4 ts=4 |