diff options
author | Michael Lauer <mickey@vanille-media.de> | 2006-10-15 22:38:04 +0000 |
---|---|---|
committer | Michael Lauer <mickey@vanille-media.de> | 2006-10-15 22:38:04 +0000 |
commit | 12144a87891f5d08b84aebab20d5e97815403914 (patch) | |
tree | fe09e65c29b11e97520b8687a55181f42284d8b5 /packages/python | |
parent | dd6bd168b3777d0c76c8159deb3c58b9771af327 (diff) |
add pygtk 2.10.0 (for usage with gtk+ 2.10.x)
Diffstat (limited to 'packages/python')
-rw-r--r-- | packages/python/python-pygtk2_2.10.0.bb | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/packages/python/python-pygtk2_2.10.0.bb b/packages/python/python-pygtk2_2.10.0.bb new file mode 100644 index 0000000000..3f52051c17 --- /dev/null +++ b/packages/python/python-pygtk2_2.10.0.bb @@ -0,0 +1,25 @@ +DESCRIPTION = "Python GTK+ Bindings" +SECTION = "devel/python" +# needs gtk+ 2.10.x +DEPENDS = "gtk+ libglade python-pygobject-native" +RDEPENDS = "python-shell" +SRCNAME = "pygtk" +LICENSE = "LGPL" +PR = "r0" + +SRC_URI = "ftp://ftp.gnome.org/pub/gnome/sources/pygtk/2.10/${SRCNAME}-${PV}.tar.bz2 \ + file://acinclude.m4" +S = "${WORKDIR}/${SRCNAME}-${PV}" + +EXTRA_OECONF = "--disable-docs" + +inherit autotools pkgconfig distutils-base + +do_configure_prepend() { + install -m 0644 ${WORKDIR}/acinclude.m4 ${S}/ +} + +do_stage() { + autotools_stage_includes + install -m 0755 codegen/pygtk-codegen-2.0 ${STAGING_BINDIR}/ +} |