blob: ca49a1d8ad2fa3aaad7816b47741c94902ed20c2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/dev-util/xxdiff/xxdiff-2.6.ebuild,v 1.1 2002/07/02 05:05:40 seemant Exp $
S=${WORKDIR}/${P}
DESCRIPTION="A graphical file comparator and merge tool simular to xdiff."
SRC_URI="mirror://sourceforge/xxdiff/${P}.tar.gz"
HOMEPAGE="http://xxdiff.sourceforge.net/"
DEPEND="=x11-libs/qt-3*
>=dev-util/tmake-1.8-r1"
RDEPEND="sys-apps/diffutils"
SLOT=""
LICENSE="GPL"
src_compile() {
cd src
tmake -o Makefile xxdiff.pro
emake || die
}
src_install () {
dobin src/xxdiff
doman src/xxdiff.1
dodoc README COPYING CHANGES TODO
dodoc copyright.txt
}
|