mirror of
https://git.yoctoproject.org/poky
synced 2026-02-10 18:53:13 +01:00
python-pygtk: Upgrade to 2.24
This is needed for the build appliance and Hob also (From OE-Core rev: a0abfd60e8cb78b40278eec85a8d0c722f8ef1e4) Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
b5013e9e9e
commit
b32c50e016
54
meta/recipes-devtools/python/python-pygtk_2.24.0.bb
Normal file
54
meta/recipes-devtools/python/python-pygtk_2.24.0.bb
Normal file
@@ -0,0 +1,54 @@
|
||||
DESCRIPTION = "Python GTK+ 2.17.x Bindings"
|
||||
SECTION = "devel/python"
|
||||
# needs gtk+ 2.17.x
|
||||
DEPENDS = "gtk+ libglade python-pycairo python-pygobject"
|
||||
RDEPENDS_${PN} = "python-shell python-pycairo python-pygobject"
|
||||
PROVIDES = "python-pygtk2"
|
||||
SRCNAME = "pygtk"
|
||||
LICENSE = "LGPLv2.1"
|
||||
LIC_FILES_CHKSUM = "file://COPYING;md5=a916467b91076e631dd8edb7424769c7"
|
||||
|
||||
SRC_URI = "ftp://ftp.gnome.org/pub/gnome/sources/pygtk/2.24/${SRCNAME}-${PV}.tar.bz2 \
|
||||
file://fix-gtkunixprint.patch \
|
||||
file://prevent_to_get_display_during_import.patch \
|
||||
file://nodocs.patch \
|
||||
file://acinclude.m4"
|
||||
|
||||
SRC_URI[md5sum] = "a1051d5794fd7696d3c1af6422d17a49"
|
||||
SRC_URI[sha256sum] = "cd1c1ea265bd63ff669e92a2d3c2a88eb26bcd9e5363e0f82c896e649f206912"
|
||||
|
||||
S = "${WORKDIR}/${SRCNAME}-${PV}"
|
||||
|
||||
EXTRA_OECONF = "--disable-docs --with-python-includes=${STAGING_INCDIR}/../"
|
||||
|
||||
inherit autotools pkgconfig distutils-base
|
||||
|
||||
do_configure_prepend() {
|
||||
install -m 0644 ${WORKDIR}/acinclude.m4 ${S}/
|
||||
sed -i \
|
||||
-e s:'`$PKG_CONFIG --variable defsdir pygobject-2.0`':\"${STAGING_DATADIR}/pygobject/2.0/defs\":g \
|
||||
-e s:'`$PKG_CONFIG --variable=pygtkincludedir pygobject-2.0`':\"${STAGING_INCDIR}/pygtk-2.0\":g \
|
||||
-e s:'`$PKG_CONFIG --variable=datadir pygobject-2.0`':\"${STAGING_DATADIR}\":g \
|
||||
-e s:'`$PKG_CONFIG --variable codegendir pygobject-2.0`':\"${STAGING_DATADIR}/pygobject/2.0/codegen\":g \
|
||||
-e s:'`$PKG_CONFIG --variable=fixxref pygobject-2.0`':\"${STAGING_DATADIR}/pygobject/xsl/fixxref.py\":g \
|
||||
${S}/configure.ac
|
||||
sed -i 's:tests docs:tests:' Makefile.am
|
||||
}
|
||||
|
||||
# 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
|
||||
|
||||
PACKAGES =+ "${PN}-demo"
|
||||
FILES_${PN}-demo = " ${bindir}/pygtk-demo ${libdir}/pygtk "
|
||||
RDEPENDS_${PN}-demo = "python-pygtk python-stringold python-lang"
|
||||
|
||||
# todo: revamp packaging, package demo seperatly
|
||||
FILES_${PN}-dev += " ${libdir}/pygtk/2.0 ${bindir}/pygtk-* ${datadir}/pygtk/2.0"
|
||||
|
||||
Reference in New Issue
Block a user