blob: dc1146f983e9b736750f5f42c4ee5c4bc5451ec9 (
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/gnome-python-extras/gnome-python-extras-2.12.0.ebuild,v 1.1 2005/09/21 21:42:50 dang Exp $
inherit eutils gnome2 python
DESCRIPTION="GNOME 2 Bindings for Python"
HOMEPAGE="http://www.pygtk.org"
LICENSE="LGPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~sparc ~x86"
IUSE="doc firefox mozilla"
RDEPEND=">=dev-lang/python-2.3
>=x11-libs/gtk+-2.4
>=dev-libs/glib-2.6
>=dev-python/gnome-python-2.10
>=dev-python/pygtk-2.4
=gnome-extra/libgtkhtml-2.6*
>=gnome-base/libgnomeprint-2.2
>=gnome-base/libgnomeprintui-2.2
>=x11-libs/gtksourceview-1.1.90
>=gnome-base/gnome-panel-2.10
>=x11-libs/libwnck-2.9.92
firefox? ( >=www-client/mozilla-firefox-1.0 )
!firefox? ( mozilla? ( >=www-client/mozilla-1.2 ) )
>=gnome-base/libgtop-2.9.5
>=gnome-extra/nautilus-cd-burner-2.11.1
>=app-text/gtkspell-2
>=gnome-base/gconf-2.10
media-video/totem
"
DEPEND="${RDEPEND}
dev-util/pkgconfig
app-text/scrollkeeper
"
G2CONF=""
USE_DESTDIR="1"
DOCS="AUTHORS COPYING* ChangeLog INSTALL NEWS README"
src_unpack() {
unpack ${A}
cd ${S}
# necessary to disable gda module because they are using
# functions only available in python 2.4. when 2.4 goes
# stable, this can be removed.
epatch ${FILESDIR}/${PN}-nogda.patch
automake
libtoolize --copy --force
autoconf
}
src_compile() {
# only controls linking, can't disable w/o a patch :)
use firefox && G2CONF="${G2CONF} --with-gtkmozembed=firefox"
if ! use firefox; then
use mozilla && G2CONF="${G2CONF} --with-gtkmozembed=mozilla"
fi
if ! use firefox && ! use mozilla; then
G2CONF="${G2CONF} --without-gtkmozembed"
fi
gnome2_src_configure ${G2CONF}
emake || die "make failed!"
}
src_install() {
gnome2_src_install
if use doc; then
insinto /usr/share/doc/${PF}
doins -r examples
fi
}
pkg_postinst() {
python_version
python_mod_optimize ${ROOT}/usr/$(get_libdir)/python${PYVER}/site-packages/gtk-2.0
}
pkg_postrm() {
python_version
python_mod_cleanup
}
|