diff options
author | Marcin Juszkiewicz <hrw@koansoftware.com> | 2009-03-26 11:10:03 +0100 |
---|---|---|
committer | Marcin Juszkiewicz <hrw@koansoftware.com> | 2009-03-26 11:10:03 +0100 |
commit | a7be854977d7ad7c8460fee76739db8154e83049 (patch) | |
tree | 3696192bc8abcae8ce4e0121df2dd4e5246541df /recipes/zope/zope-3.3.1.inc | |
parent | e2718269c5f56774705478545316a879f0be82c4 (diff) | |
parent | 1b045e71ce7c3b7ed6c68ae1d60e974edbe38efc (diff) |
Merge branch 'org.openembedded.dev' of git@git.openembedded.net:openembedded into org.openembedded.dev
Diffstat (limited to 'recipes/zope/zope-3.3.1.inc')
-rw-r--r-- | recipes/zope/zope-3.3.1.inc | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/recipes/zope/zope-3.3.1.inc b/recipes/zope/zope-3.3.1.inc new file mode 100644 index 0000000000..b06174c24c --- /dev/null +++ b/recipes/zope/zope-3.3.1.inc @@ -0,0 +1,45 @@ +DESCRIPTION = "A full fledged pluggable content management system with integrated web server and much more." +SECTION = "console/network" +PRIORITY = "optional" +LICENSE = "ZPL" +PR = "r9" + +SRC_URI = "http://www.zope.org/Products/Zope3/${PV}/Zope-${PV}.tgz" +S = "${WORKDIR}/Zope-${PV}" + +do_configure() { + ./configure --with-python=${STAGING_BINDIR_NATIVE}/python --prefix=${prefix} --force +} + +do_compile() { + oe_runmake HOST_SYS=${HOST_SYS} BUILD_SYS=${BUILD_SYS} STAGING_INCDIR=${STAGING_INCDIR} +} + +do_install() { + install -d ${D}${libdir}/${PYTHON_DIR} + oe_runmake install prefix=${D}${prefix} HOST_SYS=${HOST_SYS} BUILD_SYS=${BUILD_SYS} + mv ${D}${libdir}/python/* ${D}${libdir}/${PYTHON_DIR} + rm -rf ${D}${libdir}/${PYTHON_DIR}/twisted + rm -rf ${D}${libdir}/${PYTHON_DIR}/zope/app/twisted +} + +PACKAGES =+ "python-zopeinterface python-zopeinterface-dbg" + +FILES_${PN} = "${prefix}" +FILES_${PN}_doc = "${prefix}/doc" +FILES_${PN}-dbg += "\ +${libdir}/${PYTHON_DIR}/BTrees/.debug \ +${libdir}/${PYTHON_DIR}/persistent/.debug \ +${libdir}/${PYTHON_DIR}/zope/proxy/.debug \ +${libdir}/${PYTHON_DIR}/zope/thread/.debug \ +${libdir}/${PYTHON_DIR}/zope/security/.debug \ +${libdir}/${PYTHON_DIR}/zope/hookable/.debug \ +${libdir}/${PYTHON_DIR}/zope/app/container/.debug \ +${libdir}/${PYTHON_DIR}/zope/i18nmessageid/.debug \ +${libdir}/${PYTHON_DIR}/ZODB/.debug" +FILES_python-zopeinterface-dbg += "${libdir}/${PYTHON_DIR}/zope/interface/.debug " + +FILES_python-zopeinterface = " ${libdir}/${PYTHON_DIR}/zope/__init__.py* \ + ${libdir}/${PYTHON_DIR}/zope/interface/*.* \ + ${libdir}/${PYTHON_DIR}/zope/interface/common" + |