diff options
author | Saul Wold <sgw@linux.intel.com> | 2011-12-19 08:39:29 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-12-22 13:13:42 +0000 |
commit | 99e14dc6aa5c1160a1be020122b0765d74b1b28c (patch) | |
tree | 3dce1b76581b88e7c7d23c7a61518b465e32ba22 /meta/recipes-devtools/python/python-pycairo_1.10.0.bb | |
parent | 1ca8bb24ea0618b1351aaa70c69e2eedbaa74d1f (diff) | |
download | poky-99e14dc6aa5c1160a1be020122b0765d74b1b28c.tar.gz |
python-pycairo: Upgrade to 1.10.0
tweak the pycairo.pc correctly.
(From OE-Core rev: 7197efde264bee4d8deb37b9fd08cc9cc83d1ac4)
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/python/python-pycairo_1.10.0.bb')
-rw-r--r-- | meta/recipes-devtools/python/python-pycairo_1.10.0.bb | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/meta/recipes-devtools/python/python-pycairo_1.10.0.bb b/meta/recipes-devtools/python/python-pycairo_1.10.0.bb new file mode 100644 index 0000000000..812acfb3fd --- /dev/null +++ b/meta/recipes-devtools/python/python-pycairo_1.10.0.bb | |||
@@ -0,0 +1,39 @@ | |||
1 | DESCRIPTION = "Python Bindings for the Cairo canvas library" | ||
2 | HOMEPAGE = "http://cairographics.org/pycairo" | ||
3 | BUGTRACKER = "http://bugs.freedesktop.org" | ||
4 | SECTION = "python-devel" | ||
5 | LICENSE = "LGPLv1.1 & MPL-1" | ||
6 | LIC_FILES_CHKSUM = "file://COPYING;md5=f2e071ab72978431b294a0d696327421 \ | ||
7 | file://COPYING-LGPL-2.1;md5=fad9b3332be894bab9bc501572864b29 \ | ||
8 | file://COPYING-MPL-1.1;md5=bfe1f75d606912a4111c90743d6c7325" | ||
9 | |||
10 | # cairo >= 1.8.8 | ||
11 | DEPENDS = "cairo" | ||
12 | PR = "r0" | ||
13 | |||
14 | SRC_URI = "http://cairographics.org/releases/py2cairo-${PV}.tar.bz2" | ||
15 | |||
16 | SRC_URI[md5sum] = "20337132c4ab06c1146ad384d55372c5" | ||
17 | SRC_URI[sha256sum] = "d30439f06c2ec1a39e27464c6c828b6eface3b22ee17b2de05dc409e429a7431" | ||
18 | |||
19 | S = "${WORKDIR}/py2cairo-${PV}" | ||
20 | |||
21 | inherit distutils pkgconfig | ||
22 | |||
23 | do_configure() { | ||
24 | BUILD_SYS=${BUILD_SYS} HOST_SYS=${HOST_SYS} ./waf configure --prefix=${D}${prefix} | ||
25 | } | ||
26 | |||
27 | do_compile() { | ||
28 | ./waf build | ||
29 | } | ||
30 | |||
31 | do_install() { | ||
32 | ./waf install | ||
33 | sed \ | ||
34 | -e 's:@prefix@:${prefix}:' \ | ||
35 | -e 's:@VERSION@:${PV}:' \ | ||
36 | -e 's:@includedir@:${includedir}:' \ | ||
37 | pycairo.pc.in > pycairo.pc | ||
38 | install -m 0644 pycairo.pc ${D}${libdir}/pkgconfig/ | ||
39 | } | ||