blob: 15f53be4afc4e911bc8d2db72e4eaf2a9a23a622 (
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
60
61
62
63
64
65
66
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/meld/meld-1.0.0.ebuild,v 1.8 2006/01/08 21:41:21 compnerd Exp $
inherit python gnome2 eutils
DESCRIPTION="A graphical (GNOME 2) diff and merge tool"
HOMEPAGE="http://meld.sourceforge.net/"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 ia64 ppc sparc x86"
IUSE="doc"
DEPEND=">=dev-lang/python-2.2
>=gnome-base/libglade-2
>=gnome-base/libgnome-2
>=dev-python/gnome-python-1.99.15
>=dev-python/pygtk-1.99.15
>=dev-python/pyorbit-1.99.0
dev-python/gnome-python-extras
"
#MAKEOPTS="${MAKEOPTS} -j1"
pkg_setup() {
if ! built_with_use '<dev-python/pygtk-2.8.0-r2' gnome ; then
einfo ""
einfo "Meld requires pygtk be built with the gnome use flag set."
einfo "Please re-emerge pygtk with the gnome use flag set."
einfo ""
die "You need to re-emerge pygtk with gnome use flag."
fi
}
src_unpack() {
unpack ${A}
cd ${S}
# Fix the .desktop icon name
sed -i -e "s:Icon=meld:Icon=/usr/share/pixmaps/meld.png:" ./meld.desktop.in
# error in fr.po, sent upstream
epatch ${FILESDIR}/meld-1.0.0-frpo.patch
# fix omf scrollkeeper
sed -i -e 's:-scrollkeeper-install.*::' ./help/C/GNUmakefile
# fix the prefix so its not in */local/*
sed -i -e 's:/usr/local:/usr:' INSTALL
}
src_compile() {
emake || die "make failed"
}
USE_DESTDIR="1"
DOCS="AUTHORS COPYING INSTALL README.CVS changelog help/"
pkg_postinst() {
python_mod_optimize /usr/lib/meld
}
pkg_postrm() {
python_mod_cleanup /usr/lib/meld
}
|