summaryrefslogtreecommitdiffstats
path: root/meta-extras
diff options
context:
space:
mode:
authorMarcin Juszkiewicz <hrw@openedhand.com>2008-04-03 03:48:37 +0000
committerMarcin Juszkiewicz <hrw@openedhand.com>2008-04-03 03:48:37 +0000
commit6569da9da91f16411175110a69a9611d774fdc21 (patch)
tree68e8b10f0cadaa3fd95d8d12403b1b4325b98510 /meta-extras
parent5675f4056b8a59c6c984af68acd7c6de05db88be (diff)
downloadpoky-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.bb22
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"
4DEPENDS = "python" 4DEPENDS = "python"
5RDEPENDS = "python-core python-shell" 5RDEPENDS = "python-core python-shell"
6LICENSE = "ZPL" 6LICENSE = "ZPL"
7PR = "r1" 7PR = "r3"
8 8
9SRC_URI = "http://www.zope.org/Products/Zope3/${PV}/Zope-${PV}.tgz" 9SRC_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
21PYTHON_MAJMIN = "2.5"
22
21do_install() { 23do_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
25PACKAGES =+ "python-zopeinterface" 29PACKAGES =+ "python-zopeinterface python-zopeinterface-dbg"
26 30
27FILES_${PN} = "${prefix}" 31FILES_${PN} = "${prefix}"
28FILES_${PN}_doc = "${prefix}/doc" 32FILES_${PN}_doc = "${prefix}/doc"
29FILES_python-zopeinterface = "${libdir}/python/zope/interface/*.* ${libdir}/python/zope/interface/common" 33FILES_${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"
43FILES_python-zopeinterface-dbg += "${libdir}/python${PYTHON_MAJMIN}/zope/interface/.debug "
44
45FILES_python-zopeinterface = "${libdir}/python${PYTHON_MAJMIN}/zope/interface/*.* ${libdir}/python${PYTHON_MAJMIN}/zope/interface/common"