blob: 3e13c4933df4d101cdacc9a6745ff120248f7cd9 (
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/xxdiff/xxdiff-3.2.ebuild,v 1.7 2007/04/21 19:09:26 armin76 Exp $
inherit distutils eutils kde-functions
DESCRIPTION="A graphical file and directories comparator and merge tool."
HOMEPAGE="http://xxdiff.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha amd64 ia64 ppc sparc x86"
IUSE="kde python"
DEPEND="=x11-libs/qt-3*
kde? ( >=kde-base/kdelibs-3.1 )
sys-devel/flex
|| ( sys-devel/bison dev-util/yacc )"
RDEPEND="${DEPEND}
sys-apps/diffutils"
set-kdedir 3
src_unpack() {
unpack ${A}
if use kde; then
cd "${S}/src"
epatch "${FILESDIR}/${P}-kdesupport.patch"
sed -i "s:/usr/include/kde:${KDEDIR}/include:g" xxdiff.pro
sed -i "s:QMAKE_LIBS +=:QMAKE_LIBS+= -L${KDEDIR}/lib:g" xxdiff.pro
fi
}
src_compile() {
if use python; then
distutils_src_compile
fi
cd src
make -f Makefile.bootstrap makefile || die "Makefile creation failed"
emake || die
cd ../doc
emake || die "Doc failed"
}
src_install () {
if use python; then
distutils_src_install
fi
dobin bin/xxdiff bin/xx-cvs-diff bin/xx-encrypted bin/xx-find-grep-sed bin/xx-match
doman src/xxdiff.1
dodoc README CHANGES TODO
cd doc
dodoc xxdiff-doc.html
}
|