blob: fb056b6631cb69cc5e885e751b2d562714a716d6 (
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
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/pygoocanvas/pygoocanvas-0.14.1.ebuild,v 1.11 2012/05/04 15:12:15 patrick Exp $
EAPI="3"
GCONF_DEBUG="no"
PYTHON_DEPEND="2"
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS="3.* *-jython 2.7-pypy-*"
PYTHON_EXPORT_PHASE_FUNCTIONS="1"
inherit gnome2 python
DESCRIPTION="GooCanvas python bindings"
HOMEPAGE="http://live.gnome.org/PyGoocanvas"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc ~sparc x86"
IUSE="doc examples"
RDEPEND=">=dev-python/pygobject-2.11.3:2
>=dev-python/pygtk-2.10.4:2
>=dev-python/pycairo-1.8.4
>=x11-libs/goocanvas-0.14:0"
DEPEND="${RDEPEND}
virtual/pkgconfig
doc? (
dev-libs/libxslt
dev-util/gtk-doc )"
DOCS="AUTHORS ChangeLog NEWS"
pkg_setup() {
G2CONF="${G2CONF}
$(use_enable doc docs)"
python_pkg_setup
}
src_prepare() {
sed -e 's/^\(SUBDIRS =.*\)demo\(.*\)$/\1\2/' \
-i Makefile.am Makefile.in || die "sed 1 failed"
python_src_prepare
}
src_configure() {
python_execute_function -s gnome2_src_configure
}
src_install() {
python_execute_function -s gnome2_src_install
python_clean_installation_image
if use examples; then
rm demo/Makefile*
cp -R demo "${D}"/usr/share/doc/${PF}
fi
}
|