diff options
author | Nitin A Kamble <nitin.a.kamble@intel.com> | 2010-07-07 03:55:53 -0700 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-07-16 16:25:16 +0100 |
commit | 97108986150563b481b04543b4c51a26f59d227c (patch) | |
tree | a29a9cfe93394f6a191af9b6acbe18377e0ff7ab /meta/packages/python/python-imaging_1.1.7.bb | |
parent | 97e7eed13a1b83e49b4c9f0128e8bc3b9db3cb35 (diff) | |
download | poky-97108986150563b481b04543b4c51a26f59d227c.tar.gz |
python-imaging: upgrade from 1.1.6 to 1.1.7
Rebased the path.patch to the newer code
Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
Diffstat (limited to 'meta/packages/python/python-imaging_1.1.7.bb')
-rw-r--r-- | meta/packages/python/python-imaging_1.1.7.bb | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/meta/packages/python/python-imaging_1.1.7.bb b/meta/packages/python/python-imaging_1.1.7.bb new file mode 100644 index 0000000000..98120432ac --- /dev/null +++ b/meta/packages/python/python-imaging_1.1.7.bb | |||
@@ -0,0 +1,30 @@ | |||
1 | DESCRIPTION = "Python Imaging Library" | ||
2 | SECTION = "devel/python" | ||
3 | PRIORITY = "optional" | ||
4 | LICENSE = "GPL" | ||
5 | DEPENDS = "freetype jpeg tiff" | ||
6 | RDEPENDS = "python-lang python-stringold" | ||
7 | SRCNAME = "Imaging" | ||
8 | PR = "ml0" | ||
9 | |||
10 | SRC_URI = "http://effbot.org/downloads/Imaging-${PV}.tar.gz \ | ||
11 | file://path.patch" | ||
12 | S = "${WORKDIR}/${SRCNAME}-${PV}" | ||
13 | |||
14 | inherit distutils | ||
15 | |||
16 | do_compile() { | ||
17 | export STAGING_LIBDIR=${STAGING_LIBDIR} | ||
18 | export STAGING_INCDIR=${STAGING_INCDIR} | ||
19 | distutils_do_compile | ||
20 | } | ||
21 | |||
22 | do_install() { | ||
23 | export STAGING_LIBDIR=${STAGING_LIBDIR} | ||
24 | export STAGING_INCDIR=${STAGING_INCDIR} | ||
25 | distutils_do_install | ||
26 | install -d ${D}${datadir}/doc/${PN}/html/ | ||
27 | install -m 0644 ${S}/README ${D}${datadir}/doc/${PN}/ | ||
28 | install -m 0644 ${S}/Docs/* ${D}${datadir}/doc/${PN}/html/ | ||
29 | |||
30 | } | ||