blob: 2d57aa9d45ad8f3aea05a9dea6c793e99b909094 (
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
|
# Copyright 1999-2009 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.3 2009/05/13 08:21:49 ssuominen Exp $
GCONF_DEBUG="no"
inherit gnome2 python
DESCRIPTION="GooCanvas python bindings"
HOMEPAGE="http://live.gnome.org/PyGoocanvas"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="doc examples"
RDEPEND=">=dev-python/pygobject-2.11.3
>=dev-python/pygtk-2.10.4
>=dev-python/pycairo-1.8.4
>=x11-libs/goocanvas-0.14"
DEPEND="${RDEPEND}
dev-util/pkgconfig
doc? (
dev-libs/libxslt
dev-util/gtk-doc )"
DOCS="AUTHORS ChangeLog NEWS"
pkg_setup() {
G2CONF="${G2CONF}
$(use_enable doc docs)"
}
src_prepare() {
sed -e 's/^\(SUBDIRS =.*\)demo\(.*\)$/\1\2/' \
-i Makefile.am Makefile.in || die "sed 1 failed"
}
src_install() {
gnome2_src_install
if use examples; then
rm demo/Makefile*
cp -R demo "${D}"/usr/share/doc/${PF}
fi
}
pkg_postinst() {
python_need_rebuild
}
|