blob: d1ac8cc7ab34d9258418eb7b4dac707185ce2832 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
DESCRIPTION = "GNOME Python miscellaneous bindings"
LICENSE = "LGPL"
DEPENDS = "libgnomeui pyorbit python-pygtk"
RDEPENDS = "pyorbit"
PR = "r2"
inherit gnome distutils-base pkgconfig
FILES_${PN}-dbg += "${libdir}/gnome-vfs-2.0/modules/.debug"
do_configure() {
sed -i -e s:'`$PKG_CONFIG --variable=defsdir pygtk-2.0`':\"${STAGING_DATADIR}/pygtk/2.0/defs\":g ${S}/configure.ac
export HOST_SYS=${HOST_SYS}
export BUILD_SYS=${BUILD_SYS}
autotools_do_configure
}
do_stage() {
autotools_stage_all
}
|