diff options
author | Michael Lauer <mickey@vanille-media.de> | 2007-12-04 18:05:57 +0000 |
---|---|---|
committer | Michael Lauer <mickey@vanille-media.de> | 2007-12-04 18:05:57 +0000 |
commit | a36d4624c3e3fae02c9890029d8b2c16c296e4ef (patch) | |
tree | c2b4e1c06b9716fbac56b3a65e93e3fd034e5a1e /packages/python | |
parent | b573e7d721a912da9aeffe0c3f4a5eef247902a0 (diff) |
python-pygtk 2.10.4: fix dependencies and packaging. closes #2905
Diffstat (limited to 'packages/python')
-rw-r--r-- | packages/python/python-pygtk_2.10.4.bb | 20 |
1 files changed, 14 insertions, 6 deletions
diff --git a/packages/python/python-pygtk_2.10.4.bb b/packages/python/python-pygtk_2.10.4.bb index 0584d119c9..4471cf515d 100644 --- a/packages/python/python-pygtk_2.10.4.bb +++ b/packages/python/python-pygtk_2.10.4.bb @@ -1,12 +1,12 @@ DESCRIPTION = "Python GTK+ 2.10.x Bindings" SECTION = "devel/python" # needs gtk+ 2.10.x -DEPENDS = "gtk+ libglade python-pycairo python-pygobject" +DEPENDS = "gtk+ libglade" RDEPENDS = "python-shell python-pycairo python-pygobject" PROVIDES = "python-pygtk2" SRCNAME = "pygtk" LICENSE = "LGPL" -PR = "ml3" +PR = "ml4" SRC_URI = "ftp://ftp.gnome.org/pub/gnome/sources/pygtk/2.10/${SRCNAME}-${PV}.tar.bz2 \ file://fix-gtkunixprint.patch;patch=1 \ @@ -19,16 +19,24 @@ EXTRA_OECONF += "--with-python-includes=${STAGING_INCDIR}/../" inherit autotools pkgconfig distutils-base do_configure_prepend() { - install -m 0644 ${WORKDIR}/acinclude.m4 ${S}/ + install -m 0644 ${WORKDIR}/acinclude.m4 ${S}/ } -do_configure_prepend() { - install -m 0644 ${WORKDIR}/acinclude.m4 ${S}/ +# dirty fix #1: remove dependency on python-pygobject-dev +do_install_append() { + find ${D} -name "*.la"|xargs rm -f + rm -f ${D}/${bindir}/pygtk-codegen-2.0 + rm -rf ${D}/${libdir}/pkgconfig } +# dirty fix #2: fix build system paths leaking in require fix-path.inc -FILES_${PN}-dev += "${libdir}/pygtk/2.0 ${bindir}/pygtk-*" +# todo: revamp packaging, package demo seperatly +FILES_${PN}-dev += "\ + ${libdir}/pygtk/2.0 \ + ${bindir}/pygtk-* \ + ${datadir}/pygtk/2.0" do_stage() { autotools_stage_includes |