diff options
author | Marcin Juszkiewicz <hrw@openedhand.com> | 2007-03-02 13:36:04 +0000 |
---|---|---|
committer | Marcin Juszkiewicz <hrw@openedhand.com> | 2007-03-02 13:36:04 +0000 |
commit | 2d9ec4cd5ca9ee2224ef96f169e1e3e3fd1cc70e (patch) | |
tree | b8978e5bc65f50f3d57f93e5d45364316380dfcb /meta-extras/packages/python/python-pygobject_2.12.3.bb | |
parent | da16804eb0d11caf9c0b8af26951ce5dd57896f9 (diff) | |
download | poky-2d9ec4cd5ca9ee2224ef96f169e1e3e3fd1cc70e.tar.gz |
python-pygobject: added version from OE + patch to get it build on 64bit machine
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@1319 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta-extras/packages/python/python-pygobject_2.12.3.bb')
-rw-r--r-- | meta-extras/packages/python/python-pygobject_2.12.3.bb | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/meta-extras/packages/python/python-pygobject_2.12.3.bb b/meta-extras/packages/python/python-pygobject_2.12.3.bb new file mode 100644 index 0000000000..04ba363857 --- /dev/null +++ b/meta-extras/packages/python/python-pygobject_2.12.3.bb | |||
@@ -0,0 +1,22 @@ | |||
1 | DESCRIPTION = "Python GObject bindings" | ||
2 | SECTION = "devel/python" | ||
3 | LICENSE = "LGPL" | ||
4 | DEPENDS = "python-pygobject-native" | ||
5 | PR = "r1" | ||
6 | |||
7 | SRC_URI = "ftp://ftp.gnome.org/pub/GNOME/sources/pygobject/2.12/pygobject-${PV}.tar.bz2 \ | ||
8 | file://python-path.patch;patch=1" | ||
9 | |||
10 | S = "${WORKDIR}/pygobject-${PV}" | ||
11 | |||
12 | inherit autotools distutils-base pkgconfig | ||
13 | |||
14 | EXTRA_OECONF += "--with-python-includes=${STAGING_INCDIR}/../" | ||
15 | |||
16 | do_stage() { | ||
17 | autotools_stage_all | ||
18 | install -d ${STAGING_LIBDIR}/../share/pygobject/ | ||
19 | cp -dpfR docs/* ${STAGING_LIBDIR}/../share/pygobject/ | ||
20 | install -d ${STAGING_LIBDIR}/../share/gtk-doc/html/pygobject/ | ||
21 | cp docs/style.css ${STAGING_LIBDIR}/../share/gtk-doc/html/pygobject/ | ||
22 | } | ||