diff options
author | Marcin Juszkiewicz <hrw@openedhand.com> | 2008-04-03 03:48:37 +0000 |
---|---|---|
committer | Marcin Juszkiewicz <hrw@openedhand.com> | 2008-04-03 03:48:37 +0000 |
commit | 6569da9da91f16411175110a69a9611d774fdc21 (patch) | |
tree | 68e8b10f0cadaa3fd95d8d12403b1b4325b98510 /meta-extras | |
parent | 5675f4056b8a59c6c984af68acd7c6de05db88be (diff) | |
download | poky-6569da9da91f16411175110a69a9611d774fdc21.tar.gz |
zope: merged fixes from OE
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@4155 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta-extras')
-rw-r--r-- | meta-extras/packages/zope/zope_3.3.1.bb | 22 |
1 files changed, 19 insertions, 3 deletions
diff --git a/meta-extras/packages/zope/zope_3.3.1.bb b/meta-extras/packages/zope/zope_3.3.1.bb index 4c4664904c..6a6e283fca 100644 --- a/meta-extras/packages/zope/zope_3.3.1.bb +++ b/meta-extras/packages/zope/zope_3.3.1.bb | |||
@@ -4,7 +4,7 @@ PRIORITY = "optional" | |||
4 | DEPENDS = "python" | 4 | DEPENDS = "python" |
5 | RDEPENDS = "python-core python-shell" | 5 | RDEPENDS = "python-core python-shell" |
6 | LICENSE = "ZPL" | 6 | LICENSE = "ZPL" |
7 | PR = "r1" | 7 | PR = "r3" |
8 | 8 | ||
9 | SRC_URI = "http://www.zope.org/Products/Zope3/${PV}/Zope-${PV}.tgz" | 9 | SRC_URI = "http://www.zope.org/Products/Zope3/${PV}/Zope-${PV}.tgz" |
10 | 10 | ||
@@ -18,12 +18,28 @@ do_compile() { | |||
18 | oe_runmake HOST_SYS=${HOST_SYS} BUILD_SYS=${BUILD_SYS} | 18 | oe_runmake HOST_SYS=${HOST_SYS} BUILD_SYS=${BUILD_SYS} |
19 | } | 19 | } |
20 | 20 | ||
21 | PYTHON_MAJMIN = "2.5" | ||
22 | |||
21 | do_install() { | 23 | do_install() { |
24 | install -d ${D}${libdir}/python${PYTHON_MAJMIN} | ||
22 | oe_runmake install prefix=${D}${prefix} HOST_SYS=${HOST_SYS} BUILD_SYS=${BUILD_SYS} | 25 | oe_runmake install prefix=${D}${prefix} HOST_SYS=${HOST_SYS} BUILD_SYS=${BUILD_SYS} |
26 | mv ${D}${libdir}/python/* ${D}${libdir}/python${PYTHON_MAJMIN} | ||
23 | } | 27 | } |
24 | 28 | ||
25 | PACKAGES =+ "python-zopeinterface" | 29 | PACKAGES =+ "python-zopeinterface python-zopeinterface-dbg" |
26 | 30 | ||
27 | FILES_${PN} = "${prefix}" | 31 | FILES_${PN} = "${prefix}" |
28 | FILES_${PN}_doc = "${prefix}/doc" | 32 | FILES_${PN}_doc = "${prefix}/doc" |
29 | FILES_python-zopeinterface = "${libdir}/python/zope/interface/*.* ${libdir}/python/zope/interface/common" | 33 | FILES_${PN}-dbg += "\ |
34 | ${libdir}/python${PYTHON_MAJMIN}/BTrees/.debug \ | ||
35 | ${libdir}/python${PYTHON_MAJMIN}/persistent/.debug \ | ||
36 | ${libdir}/python${PYTHON_MAJMIN}/zope/proxy/.debug \ | ||
37 | ${libdir}/python${PYTHON_MAJMIN}/zope/thread/.debug \ | ||
38 | ${libdir}/python${PYTHON_MAJMIN}/zope/security/.debug \ | ||
39 | ${libdir}/python${PYTHON_MAJMIN}/zope/hookable/.debug \ | ||
40 | ${libdir}/python${PYTHON_MAJMIN}/zope/app/container/.debug \ | ||
41 | ${libdir}/python${PYTHON_MAJMIN}/zope/i18nmessageid/.debug \ | ||
42 | ${libdir}/python${PYTHON_MAJMIN}/ZODB/.debug" | ||
43 | FILES_python-zopeinterface-dbg += "${libdir}/python${PYTHON_MAJMIN}/zope/interface/.debug " | ||
44 | |||
45 | FILES_python-zopeinterface = "${libdir}/python${PYTHON_MAJMIN}/zope/interface/*.* ${libdir}/python${PYTHON_MAJMIN}/zope/interface/common" | ||